How to keep the appointment creation dialog box open when validating the entries. So if I leave the subject (or start, end time) blank, I will like to show a message box and KEEP THE APPOINTMENT DIALOG OPEN.
All the events I have created on radschedulerview, fire after the appointment dialog closes.
Events like
radScheduler1_AppointmentCreating
radScheduler1_AppointmentSaving
'radScheduler1_AppointmentCreated',
all fire AFTER the dialog closes. I need to not close the appointment dialog when the subject etc are left blank.
Thanks
Help!
Robin
Hi - I'm looking for the source code/project for 'ChartView Live Data' - see attached pic. I can run the code in the 'UI for WPF' tool but I cannot find the same example in the xaml-sdk. It is available in the Windows version but not the WPF version.
The UI for WPF shows the code files but when trying to create a project I'm getting many errors because of the 'QuickStart' code... Does anyone have the VS project code for this or know where I can download it? ty much

At the moment, validation only appears when you hover over the cell that didn't pass validation. Is there a way to show the validation without the mouse hovering?
http://i.imgur.com/zvWqKn6.png

Hi,
I have some problems in building a radGridView with radiobutton inside in XAML. You can see the attached image to have an idea of what I'm doing.
I have a grid that contains a list of "container" (they could be one, 2 or more). So every row has a plate(with an id) and 2 radio button (ground - Upper). I retrieve the value of these radiobutton from the DB. Radio button Ground is selected when the variable IsUtiInDoubleStakerHold == 0. If IsUtiInDoubleStakerHold == 1radiobutton Upper has to be selected; if radiobutton Ground is selected, radiobutton Upper cannot be selected and vice versa. For every row I need to select a radio button, and then I have to save the value eventually modified. How can I do this? Actually with this code if I do a choice of a value in the first row, then when I make a selection on the second row, I lost the value of the radiobutton selected in the first row (I can't see anymore the selection done before).
How can i solve this problem?
After that, how can I maintain the value changed in every row? (I hope to save everything in the object public ObservableCollection<ItuForYard> ItusSameGroupList)
The xaml RadGridView is defined in this way:
01.<StackPanel Grid.Row="3" >02.<telerik:RadGridView03. SelectedItem="{Binding SelectedItu, Mode=TwoWay}"04. ShowColumnSortIndexes="False"05. ItemsSource="{Binding ItusSameGroupList, Mode=TwoWay}" 06. Visibility="{Binding GridItusSameGroupVisibility}"07. Margin="0,10,0,10" >08. <telerik:RadGridView.Columns>09. <telerik:GridViewDataColumn t:I18N.Translate="ITU Id"DataMemberBinding="{Binding UtiId}" Width="0" IsVisible="False" />10. <telerik:GridViewDataColumn t:I18N.Translate="ITU Plate"DataMemberBinding="{Binding UtiPlate}" Width="4*" />11. <telerik:GridViewDataColumn t:I18N.Translate="Ground" Width="3*">12. <telerik:GridViewDataColumn.CellTemplate>13. <DataTemplate>14. <RadioButton GroupName="GroundUpper" Content="{Binding RadioButtonGround}" HorizontalAlignment="Center"IsChecked="{Binding RadioButtonGroundIsChecked, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" IsEnabled="{Binding IsGroundUpperRadioButtonEnabled}" />18. </DataTemplate>19. </telerik:GridViewDataColumn.CellTemplate>20. </telerik:GridViewDataColumn>21. <telerik:GridViewDataColumn t:I18N.Translate="Upper"DataMemberBinding="{Binding IsUtiInDoubleStakerHold}" Width="3*">22. <telerik:GridViewDataColumn.CellTemplate>23. <DataTemplate>24. <RadioButton GroupName="GroundUpper" Content="{Binding RadioButtonUpper}"25. HorizontalAlignment="Center"26. IsChecked="{Binding RadioButtonUpperIsChecked, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"27. IsEnabled="{Binding IsGroundUpperRadioButtonEnabled}" />28. </DataTemplate>29. </telerik:GridViewDataColumn.CellTemplate>30. </telerik:GridViewDataColumn>31. </telerik:RadGridView.Columns>32.</telerik:RadGridView>33.</StackPanel>
In the cs file:
public bool IsGroundUpperRadioButtonEnabled => SelectedItu != null &&
SelectedItu.IsUtiInDoubleStakerHold != 2;
public Visibility GridItusSameGroupVisibility => SelectedItu != null ? Visibility.Visible : Visibility.Collapsed;
public bool RadioButtonGroundIsChecked => SelectedItu != null && SelectedItu.IsUtiInDoubleStakerHold == 0;
public bool RadioButtonUpperIsChecked => SelectedItu != null && SelectedItu.IsUtiInDoubleStakerHold == 1;
public ObservableCollection<ItuForYard> ItusSameGroupList { get; set; } = new ObservableCollection<ItuForYard>();
Then I populate the list of container with the result from the DB
ItusSameGroupList = new ObservableCollection<ItuForYard>(ituResponse.Result);

RadRibbonView how can I merge it with the Windows top bar like Excel?
See images below for example
How does on transform the yaxis?
I need to center the y axis on a certain x value?
You can email directly at stevensrf@mail.com if you have answers , or better yet link me to source that does this.

I have a view that contains a RadMaskedNumericInput that has Value property with binding to my model inside my viewmodel.
<telerik:RadMaskedNumericInput Value="{Binding CurrentItem.NumeroMatricole,Mode=TwoWay}" Grid.Row="6" Grid.Column="1" Style="{StaticResource FieldMax3IntegerRadMaskedInputNumericStyle}" />
private byte numeroMatricole;public byte NumeroMatricole{ get { return numeroMatricole; } set { numeroMatricole = value; NotifyPropertyChanged("NumeroMatricole"); }}
Now, when I try to update other properties of CurrentItem, it works all.
When I change value in this control (that is unique with MaskerNumeriInput and it is unique that point to NumeroMatricole property that is a byte), NotifyPropertyChanged not fire.
Is it possibile that RadMaskerNumeriInput doesn't support byte type?
Hello Telerik team!
When the row validation is failed row background is red and this is ok. But when I select this row it's background is still red. I'm trying to change this behaviour using trigger. But this trigger has no effect. What am I doing wrong. Could you help me, please.
<Style.Triggers> <MultiTrigger> <MultiTrigger.Conditions> <Condition Property="IsValid" Value="false"/> <Condition Property="IsSelected" Value="true"/> </MultiTrigger.Conditions> <MultiTrigger.Setters> <Setter Property="Background" Value="Blue"/> </MultiTrigger.Setters> </MultiTrigger> </Style.Triggers>