I am using Telerik RadControls for WinForms Q3 2010 and having an issue with grid control.
scenario: I have a grid control in my main form grid control have 20+ columns (Hidden+ Visible) and i am performing Cell Formatting according to my business logic i am facing a strange behavior which is that at certain time i lost cell formatting (see attached image) randomly also when this happened grid becomes un-responsive and application crashed by clicking grid control.my grid refreshes randomly whenever a new record insert
Hello,
I want to display two differrent chart has same width and interval width
How can i do?
Thank you for your help.
Hi there,
I would like to have more than 1 group of radiobuttons in a statusbar. Yet I have no grouping component I can add to the status strip.
What should I do?
kind regards.
my radpivotfieldlist datasource is bindingsource derived from sql
how to add a custom column which will show the precentage diffeence based on COLA and COLB
I have a column in a databound grid view that contains strings with leading and traiing blanks
in the exemple liste below I have replaced spaces by underscores:
__1_
__2_
_10_
__1a
__3_
I would like the sorting to take the blanks into account and, the sorted would look like:
__1_
__1a
__2_
__3_
_10_
but the spaces are ignored
any Idea ?
thanks in advance
Hi ,
I have Hierarchical Gridview. When loading i loop all of the rows:
foreach(var row in datagridview1.Rows)
{
if(row.Type == "Childrend")
{
var parentRow = row.Parent as GridViewRowInfo; <----- it returns Null
}
}
How can i get parent Row of child Row when loading ? Now at the childRow, i can get the parent Id and i have to loop all of the gridview again to find the parent row by ParentId .