
Hi there,
FYI: In the latest WPF Release There seems to b a couple undefined resources in the Windows 8 Touch Theme.
DragDrop_VisualCueBackground and DragDrop_VisualCueBorder
I am not using these so I defined these via another theme just to avoid the warnings.
ExportFormat.Xlsx and ExportFormat.Pdf are now obsolete?
I was using these formats.
Is there a work-around to continue using?
Weren't these formats just introduced last year?
Hello,
I’ve had issue with RadMap Provider cache in my application. My RadMap is connected to a local WMS (Geoserver). I've changed the map on the Geoserver to hide airport locations but it's not displayed in my RadMap (see attachments).
I have set
the attribute "IsTileCachingEnabled
= true" to enable tile caching
(under %APPDATA%/Local/TelerikMapCache).
Then I added a function to clear the MapProvider when requested by the user :
if (_mapProviderWrapper.MapProvider is WmsCustomProvider)
{
var wmsCustomProvider = (WmsCustomProvider)_mapProviderWrapper.MapProvider;
var cacheStorage =
wmsCustomProvider.CacheStorage as FileSystemCache;
if (cacheStorage != null)
{
string cachePath =
cacheStorage.CachePath;
Directory.Delete(cachePath, true);
Directory.CreateDirectory(cachePath);
}
}
But even
when the folder is empty and that I restart the application, RadMap still display
airports which may means that tiles are cached somewhere else.
Is there a
way to force a refresh of a MapProvider after the cache has been cleared?
Thanks!
Etienne

hi my friends
I wanna to change RadBusyIndicator busy content from database record by using foreach loop like this
foreach(rs in records){
RadBusyIndicator .busycontent=rs.SchoolName;
}
but I get last record in RadBusyIndicator busy content note;
because it not waiting
with my thanks
Why would a PreviewMouseDown event prevent the ComboBox from opening?
In using the snippet below and using that event (whether there is any code in the handler or not), the ComboBox will not open. Once the event reference is removed from XAML it works as expected.
What am I missing here?
<telerik:RadComboBox Height="23" Margin="12,20,12,0" VerticalAlignment="Top" DisplayMemberPath="LIST_NAME" IsEditable="True" IsFilteringEnabled="True" IsReadOnly="True" IsTabStop="True" IsTextSearchEnabled="True" ItemsSource="{Binding Path=ElementTypes}" OpenDropDownOnFocus="False" PreviewMouseDown="rcb_PreviewMouseDown" StaysOpenOnEdit="True" TextSearchMode="Contains" /><telerik:RadAutoCompleteBox Margin="6 0" x:Name="AttendeeAutoCompleteBox" Grid.Column="1" ItemsSource="{Binding Path=AdditionalData.Atts, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" SelectedItems="{Binding Occurrence.Appointment.SelectedAttendees, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" DisplayMemberPath="DisplayName" TextSearchPath="Search" Style="{StaticResource MultiAutoBox}" WatermarkContent="Search ..." MinHeight="55" VerticalContentAlignment="Top" Padding="5"> <telerik:RadAutoCompleteBox.DropDownItemTemplate> <DataTemplate> <Grid Background="#F7F7F7" Margin="0"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition/> <ColumnDefinition/> <ColumnDefinition/> </Grid.ColumnDefinitions> <TextBlock Text="{Binding PersonName}" FontWeight="Bold" FontSize="14"/> <TextBlock Text="{Binding SubName}" FontWeight="Bold" FontSize="14" Grid.Column="2"/> <TextBlock Text="{Binding RType}" Grid.Column="1"/> <TextBlock Text="{Binding SubType}" Grid.Column="3" Grid.Row="0"/> </Grid> </DataTemplate> </telerik:RadAutoCompleteBox.DropDownItemTemplate></telerik:RadAutoCompleteBox>
public ObservableCollection<AttendeeSearchDTO> SelectedAttendees
{
get
{
return this.Storage<CustomAppointment>().selectedAttendees;
}
set
{
CustomAppointment storage = this.Storage<CustomAppointment>();
if (storage.selectedAttendees != value)
{
storage.selectedAttendees = value;
this.OnPropertyChanged(() => this.SelectedAttendees);
}
}
}
Hello,
I'm using a RadRibbonDropDownButton. Inside, I'm using a RadRibbonDropDownButton.DropDownContent. Inside it, I had put some differents controls.
You can see the begining of my code in '1' attached file.
For example, when I had clicked in a comboBox item, the DropDownContent is closing. But if I click on a radioButton, DropDownContent stays here (is that I want).
Do you know if there is a property who can avoid to close the DropDownContent ?
Thanks you.
Valentin.