I'm new to Telerik and still working on the 30 day trial so please bear with me, and pardon the ignorance if this is mind numbingly simple,
I need a simple way to show a simple hardcoded dropdown (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday) which validates input when a user edits the cell of a RadGridView
private void dg_DeliverySched_beginEdit(object sender, Telerik.WinControls.UI.GridViewCellCancelEventArgs e)
{
//I have these columns that need day of week validation comboboxes on edit click
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sun")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Mon")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Tue")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Wed")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Thu")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Fri")
{
e.Cancel = true;
}
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sat")
{
e.Cancel = true;
}
}