Hello
How can I trigger RadGrid_CellClick event from code?
Example:
private void button1_Click(object sender, EventArgs e)
{
RadGrid1_CellClick(new object, new GridViewCellEventArgs());
}

I need to achieve a function that when mouse hover over a RadTextBox, it changes its background color. Like what is shown in the demo, text box changed color from gray to white when mouse cursor moves inside the text box.
I tried to use Mouse-Enter event to change the backcolor. However, this event only triggers when the mouse cursor touches exactly at the border of the text box, as soon as it leaves the border, although the mouse cursor stays inside the text box, this event is no longer valid. I also tried Mouse-hover event, which did not give me a good result either.
It seems to me that what I need to achieve is a common issue and must have a relatively easy solution. I am wondering if I missed anything.
Thank you!


Hello all
How to fill the multicolumncombobox in radgridview with the data
i have follow the example and it's work now. if i made by my self it's can't work.
i change this code
Dim col As GridViewMultiComboBoxColumn = New GridViewMultiComboBoxColumn()
col.DisplayMember = "KodeBarang"
col.ValueMember = "NamaBarang"
col.FieldName = "Kode"
col.HeaderText = "Kode"
col.DataSource = (ds.Tables("MstBarang"))
AddHandler RadGridView1.CellBeginEdit, AddressOf radGridView1_CellBeginEdit
or how to set datasource of gridviewmulticolumncombobox ????
Thanks before ..

Hello,
Is it possible to change the height of my CheckedDropDownList and then wrap the items inside? I'd like to have multiple rows of checked items.
Thank you!
Hi,
On click on Gridview cell , rad scroll able panel scrolls to left .
Controls tree
(Parent) Rad scrollable panel --> panel --> rad page view --> rad grid view (child )
Please find attached image.
Thanks.

I have some RadToggleButtonElements in a RadRibbonBar, and I'm trying to apply a theme to them. I already have a theme manager assigned to the ribbon bar, and it appears to be working correctly for the other control types on the ribbon bar. The RadToggleButton theme is loaded into the theme manager but it isn't being applied to the toggle buttons. I've checked the IsThemeApplied property on the buttons at runtime just to be sure, and it's always false. I found a previous post (http://www.telerik.com/forums/toggle-button-style) about how to add a RadStylesheetRelation to the RadToggleButton theme's xml file, and I tried that, but it's still not working. Is there something else I'm missing?
Note: This same RadToggleButton theme is used on another form as well, and it's working there, so I don't believe there's anything wrong with the theme itself. The only difference that I can see is that the toggle buttons on the other form are not being used in a ribbon bar.
Thank you!

Hi,
I am having trouble sorting a ListView with Custom Items and Custom Groups.
I have Created a SortDescriptor and Enabled Sorting. I have also got a ListViewCustomComparer.
My ListViewCustomComparer is being called and it does appear to be comparing items fine but the ListView never appears sorted.
I did find this article http://www.telerik.com/forums/sorting-items which seems to describe my issue perfectly and it was deemed a problem in the ListView.
I am using version 2016.1.216.40 and was wondering if this was ever fixed and if so what might I still be doing wrong?
Thanks
