Two questions:
1.
Can someone point me to an example of an unbound multicolumncombobox, e.g. adding items manually? I found an example
https://docs.telerik.com/devtools/winforms/controls/multicolumncombobox/populating-with-data/unbound-mode
but this refers to properties which do not seem to exist (e.g. MultiColumnComboBoxElement and EditorControl).
2. In a databound multicolumncomboBox, when the user uses the drop-down, the drop-down appears with a transparent background, so you can see the elements rendered under it as part of the text... this makes it almost impossible to read. Is there a way to remove this transparency? I do not see a property. Is there a reason why this control is designed this way as opposed to being like a standard drop-down combo box?

Hello,
I have accessed the start date time picker from the advanced form of my scheduler and have implemented custom time values as below.
Dim startPicker As RadTimePicker = TryCast(e.Container.FindControl("StartTime"), RadTimePicker)
startPicker.TimeView.CustomTimeValues = New TimeSpan() {New TimeSpan(8, 30, 0), New TimeSpan(12, 30, 0)}
However, when I run the program, the custom values are in place but the labels remain the same? (see attached)
Is there any way to access and change the labels, so only labels for my custom time values are shown?
Thanks in advance,
Kieran
Hi,
I am fairly new to Telerik controls and was experimenting with radtooltip and radtooltipmanager.
I created a tooltipmanager and a radtooltip from code behind with ID = "Test", rendermode = lightweight, title = "properties" and text = "CheckText". And this worked.
But when I went to add a radlabel I created as a control to it, saying
RTP.Controls.Add(radlabel1)
it wouldn't display it.
Can someone help me figure how to add controls to radtooltip or radtooltipmanager?
(Eventually, I want to add more controls like a table in the tooltip)
Thanks in advanced,
Swanand Nalawade

I am having an issue trying the get a radcontextmenu appear above a radmenu.
Following the instruction about positioning controls from https://docs.telerik.com/devtools/aspnet-ajax/controls/controlling-absolute-positioning-with-z-index
The appearance is correct on IE 11 and Edge, but appears as attached when viewed in Chrome.
The deckaration for RadContextMenu:
<telerik:RadContextMenu ID="RadContextMenu1" runat="server" Skin="Black1" EnableEmbeddedSkins="false" RenderMode="Lightweight" style="z-index:483647" >
<Items>
<telerik:RadMenuItem>
</telerik:RadMenuItem>
</Items>
</telerik:RadContextMenu>
The declaration for The Radmenu:
<telerik:RadMenu ID="RadMenu1" runat="server" Skin="Default" RenderMode="Lightweight" style="z-index: 12345" OnItemClick="RadMenu1_ItemClick">
</telerik:RadMenu>
I don't think I am missing any thing.
Spell Check handler server error: 500<br><br><title>...The length of the string exceeds the value set on the maxJsonLength property.</title><br>...<system.web.extensions><br> <scripting><br> <webServices> <br> <jsonSerialization maxJsonLength="2147483644"></jsonSerialization><br> </webServices><br> </scripting><br> </system.web.extensions>
There is no server event that gets triggered when a user uses the clear function. The logical event would be to trigger the SelectedIndexChanged since it is essentially going from a value to nothing, therefore changing the selected index. I'm sure that since the world is slowly trying to forget about server programming and concentrating on Java that there is some java solution that won't do me a hill of bean worth of good.
My point, would it be so bad to have the clear function trigger something?

function BlurComboBox(comboBox) { if (comboBox.get_dropDownVisible() && comboBox.get_closeDropDownOnBlur()) comboBox.hideDropDown(); comboBox.get_tableElement().className = ""; comboBox._selectItemOnBlur(); comboBox.get_inputDomElement().blur(); comboBox._raiseClientBlur(window.event); comboBox._focused = false;}
Hi,
I am trying to implement a Batch Edit mode in a RadGrid from a DataTable say Documents. RadGrid is being generated from the code behind.
Documents datatable has 2 different columns say DocumentType as string and Publish Status as int which I want to be displayed as GridDropDownColumns.
I am also creating 2 other datatables for reference values of these columns.
Document type refers value and text to one column (TEXTValue) in it's reference datatable.
Publish Status refers value to one column (PublishID) and text to another column (TEXTValue) in it's reference table.
For Cell value changed of the radgrid, I am running a javascript function which I got from telerik forms to save changes.
Problem:
The Document type column which refers both value and text to same column works fine but the Publish Status column which refers to 2 different columns for value and text field gets stuck in an infinite loop running the javascript function without making any saves to the database.
Can someone help me with figuring this problem out?
Thanks in advance,
Swanand Nalawade

Recently I submitted a support ticket to find out how I could change the color of the text of a RadCheckBox. I'm not as fluent in css as I should be so I thought I would share my findings for others like me with limited css skills.
To change the color of the text of all checkboxes on the page create the following css rule
<style>
.rbText {
color: red !important;
}
</style>
If you need to change the color of only some checkboxes (in my case I have a couple that are required and I wanted to make the red leaving all others black) you can create a rule that looks like this
<style>
.required .rbText {
color: red !important;
}
</style>
and then assign the required css class to the checkbox like this
<telerik:RadCheckBox ID="blnCorrectiveAction" runat="server" Text="Corrective Action Necessary" CssClass="required"></telerik:RadCheckBox>
I'm sure the css pros think this is silly simple thing so say but for those of us that struggle I hope this helps