Greetings,
Is it possible to edit UI elements of of controls programmatically ?
For instance, I want to change header font of a Radgroupbox.
I normally should open its smartTag and change the font within root elements. But how to do it programmatically ?
Greetings,
Is it possible to disable System, Web or Professional tab in colorbox dialog ?
Hello everyone,
I have a problem, please help me solve it.
How to realize the function of GridView, item (8, a) in GridView with RadGridView control.
Can anyone help me identify which color setting needs to be changed if I want to change the (background?) color of the items in a CheckedDropDownList? The default is an orange color that I'm not a big fan of.
Hi,
I need to disable the right click Context Menu for RadSpinEditor. I tried a lot but could not able to disable it.. Can someone anyone help for this?
Hi
Using a RadBrowseEditor, how can I change at runtime (using code) the ForeColor of the text when control is disabled?
Hi ,
I am using the relational gridview. when i click the button , i want the node will be expanded by condition . Follow the link : https://docs.telerik.com/devtools/winforms/controls/gridview/hierarchical-grid/how-to/expanding-all-rows . is it the best way to do it ? because i see it is really slow when expanding.
void ExpandAllRows(GridViewTemplate template, bool expanded) {
foreach(GridViewRowInfo row in template.Rows) {
if(row.Tag == conditionID){
row.IsExpanded = expanded;
}
}
if (template.Templates.Count > 0) {
foreach(GridViewTemplate childTemplate in template.Templates) {
ExpandAllRows(childTemplate, true);
}
}
}