hi, i trying to make a custom theme for RadTimePicker.
I have already altered the Calendar.xaml for RadDatePicker, i just don't have any Styles for RadTimePicker to alter.
Can you kindly provide me a sample project to customize the theme for RadTimePicker.
Thank you.
Gillian
Hello,
I am using telerik:RadGridView, my Items is set to a DataTable.
the source Data tableis set to a SQL Query output, data is in a specific dateformat.
In case we setAutoGemerateColumns="true"; the data is displayed only in a modify format (thedata is date and time and the display automatic adds slashes, removes secondsand millisecond)
In the other case(AutoGemerateColumns="false") I have three columns specify and binded to each column;
the results are only visible by row count, the columns data is empty.
appreciate your advise,
Thank you
SaritHarel, IAI
private void button2_Click(object sender, RoutedEventArgs e) |
{ |
List<DataRow> itemsToRemove = new List<DataRow>(); |
foreach (DataRow item in this.radGridView1.SelectedItems) |
{ |
itemsToRemove.Add(item); |
} |
foreach (DataRow item in itemsToRemove) |
{ |
((DataTable)this.radGridView1.ItemsSource).Rows.Remove(item); |
((DataTable)this.radGridView1.ItemsSource).AcceptChanges(); |
} |
DataTable emptyTable = new DataTable(); // this is for refreshing grid view |
radGridView1.ItemsSource = emptyTable; // this is for refreshing grid view |
radGridView1.ItemsSource = myDataTable; |
} |
When using the VistaTheme, a RadDatePicker does not render in a RadRibbonGroup.