Hello!
How do I hide the ribbon bar to keep the window title? Can't understand.
Or I hide the entire ribbon with the RibbonBar command.Visible = false
If I try to hide the TabStrip element, I have an empty bar from the window title to the next component.
Hi!
I've been able to change the size of the checkbox but the checkmark's size is not following the dimension that I've put...
See in the attach file.
Thank you!
Once I change the checkbox column state, in which event I’ll be able to get the changed state in ?
Note: We tried to check it in the cell click event but we are unable to get the changed state.
Hello,
I have noticed that the font of the selected item in the breadcrumb has a different font. (see attached image)
I am using the material themes (Material, Teal, Pink and BlueGray)
Now I am trying to change the font of this selected item in the dropdownlist of the breadcrumb in the Visual Style Builder.
I have already found that the "RadMenu - Dropdown"-control is used for the dropdown list in the breadcrumb but I cannot find how to change the font for the selected item.
Could someone give me a hint how to change the font?
Regards
Patrick Vossen
hi,
Can I change focus cell of a GanttViewTextViewElement?
Hi,
GanttView has 2 columns
I change value on the screen TEXT1
I want change TEXT2 value without raising ganttView_ItemChanged event
GanttViewElement.Columns.Add(new GanttViewTextViewColumn("A", "TEXT1");
GanttViewElement.Columns.Add(new GanttViewTextViewColumn("B", "TEXT2");
ganttView_ItemChanged(object sender, GnattViewItemChangedEventArge e)
{
if(e.PropertyName.Equals("TEXT1"))
{
var view = e.Item.DataBoundItem as DataRowView;
view["TEXT2"] = "Test";
// this code is call ganttView_ItemChanged
}