Hi,
I am using RadScheduler to create an new appointment(i am using latest version of Telerik.Web.UI.dll version 2012.1.501.40).
When i bind the ResourceType from C# code behind
i am getting 1 extra option "-" in my comboBox
Like
"-"
"Development"
"Testing"
I do not want that Extra "-" in my combobox. So How to i remove that one and how do i select default option in combobox?
I am using RadScheduler to create an new appointment(i am using latest version of Telerik.Web.UI.dll version 2012.1.501.40).
When i bind the ResourceType from C# code behind
ResourceType rt = new ResourceType("UserCalender");
rt.ForeignKeyField = "UserTypeId";
rt.KeyField = "UserTypeId";
rt.TextField = "UserTypeName";
rt.DataSource = GetUserTypes();
RadScheduler1.ResourceTypes.Add(rt);
i am getting 1 extra option "-" in my comboBox
Like
"-"
"Development"
"Testing"
I do not want that Extra "-" in my combobox. So How to i remove that one and how do i select default option in combobox?