or
Hi Telerik,
I am using “RadDateTimePicker” with InputMode="DatePicker". I want to open a calendar with future dates when user click on calendar icon. By default, current months are opening with respective dates, but I want to set future date in order that calendar popup will open as per the future date/month.
Thanks,
Dinesh
<Style TargetType="{x:Type Controles:GridViewColumnTextBox}"> <Setter Property="CellEditTemplate"> <Setter.Value> <DataTemplate> <TextBox Text="BINDING?"/> </DataTemplate> </Setter.Value> </Setter> </Style>
<telerik:GridViewDataColumn DataMemberBinding="{Binding UnweightedCount, Mode=OneWay}"> <telerik:GridViewColumn.Header> <DataTemplate> <ComboBox > <ComboBoxItem Name="cbi1">Item1</ComboBoxItem> <ComboBoxItem Name="cbi2">Item2</ComboBoxItem> <ComboBoxItem Name="cbi3">Item3</ComboBoxItem> </ComboBox> </DataTemplate> </telerik:GridViewColumn.Header> </telerik:GridViewDataColumn> 
foreach
(MyItem item in MyView.ItemsSource)
{
foreach (MyItem child in item.Children)
{
source.Remove(MyView.SelectedItem);
}
}