I am using the telerik version 2011.1.413.40 .Iam trying to set the text of radcombobox through c# function.But this code is not supported on this version.On low version
My code is
if (control is RadNumericTextBox)
((RadInputControl)control).set_Text(string.Empty);
what is the keyword to set and get text of radcombobox in this version of telerik.also what is the keyword for .set_SelectedDate for raddatepicker
Version=2009.3.1208.35
it is working.My code is
if (control is RadNumericTextBox)
((RadInputControl)control).set_Text(string.Empty);
what is the keyword to set and get text of radcombobox in this version of telerik.also what is the keyword for .set_SelectedDate for raddatepicker