Мне нужен простой способ показать простой жестко заданный раскрывающийся список (понедельник, вторник, среда, четверг, пятница, суббота, воскресенье), который проверяет ввод, когда пользователь редактирует ячейку RadGridView
private void dg_DeliverySched_beginEdit(object sender, Telerik.WinControls.UI.GridViewCellCancelEventArgs e)
{
if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sun")
{ //need weekdays drop down for each of these columns
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;
}
}