Hello!
I am having some problems with the GridViewComboBoxColumn .
GridViewComboBoxColumn supports selectionevent? Cannot seek change event.
I am necessary, change event.
There is what kind of method?
| <telerik:RadNumericUpDown Grid.Column="1" |
| x:Name="inpPMax" Style="{StaticResource InputNumbers}" |
| ValueFormat="Numeric" NumberFormatInfo="{Binding Path=DisplayFormat}" |
| IsEnabled="{Binding Path=UserEntered}" |
| Minimum="{Binding Path=Minimum}" Maximum="{Binding Path=Maximum}" |
| SmallChange=".1" LargeChange="1" GotFocus="inpPMax_GotFocus" ValueChanged="inpPMax_ValueChanged"> |
| <telerik:RadNumericUpDown.Value> |
| <Binding Path="DisplayValue" UpdateSourceTrigger="PropertyChanged" ValidatesOnDataErrors="True"/> |
| </telerik:RadNumericUpDown.Value> |
| </telerik:RadNumericUpDown> |
| <Style x:Key="InputNumbers" TargetType="{x:Type telerik:RadNumericUpDown}"> |
| <Setter Property="Height" Value="25"/> |
| <Setter Property="FontSize" Value="12"/> |
| <Setter Property="Margin" Value="2"/> |
| <Setter Property="HorizontalContentAlignment" Value="Right"/> |
| <Style.Triggers> |
| <Trigger Property="Validation.HasError" Value="true"> |
| <Setter Property="ToolTip" |
| Value="{Binding RelativeSource={RelativeSource Self}, |
| Path=(Validation.Errors)[0].ErrorContent}"/> |
| </Trigger> |
| <Trigger Property="Validation.HasError" Value="false"> |
| <Setter Property="ToolTip" Value=""/> |
| </Trigger> |
| </Style.Triggers> |
| </Style> |
| public NumberFormatInfo DisplayFormat |
| { |
| get |
| { |
| var ret = (NumberFormatInfo)CultureInfo.CurrentCulture.NumberFormat.Clone(); |
| ret.NumberDecimalDigits = DecimalPlaces; |
| return ret; |
| } |
| } |
| protected virtual int DecimalPlaces { get { return 0; } } |

I am trying to use the RadCalendar (for WPF) to display multiple months and shade (color background) school and public holidays. Some questions:
1. Using custom IValueConverters or creating a StyleSelector seems to let me affect the CalendarButtonContent Properties or Style (respectively), but only Font Size/Weight and not Background/Border. Is this because these are CalendarButton properties? What is the simplest way to set the background of all the holiday dates?
2. In the IValueConverter or StyleSelector I have to manually 'range check' each Date. Is there a way to DataBind to this control (a collection of DateTime)? When people use the 'selection' ability to add a new holiday date/range, I want to just update the underlying collection and have that selection now 'background colored'.
3. I have set the following properties (expecting the calendar to show the entire "year" of 2008 from January to December)... but it always starts with August (the current month) in the top-left rather than January.
SelectableDateStart="2008-01-01"Tia...
SelectableDateEnd="2008-12-31"
DisplayDateStart="2008-01-01"
DisplayDateEnd="2008-12-31"
SelectedDate="2008-01-01"
Rows="4"
Columns="3"
