Hi All,
We encounter one issue when we use RadGrid, after setting up Master\Child data, we set item background\font color accord to the item value. it works fine when loaded first time(just as scenario 1 of attached files). but when we click 'Expand\Collapse', all parent\child's color dispeared. we use below code to set color
private void HandleColorAppearance(GridItemEventArgs e)
{
if (bgColor != null)
{
e.Item.BackColor = System.Drawing.Color.FromName(bgColor);
}
if (fontColor != null)
{
e.Item.ForeColor = System.Drawing.Color.FromName(fontColor);
}
}
I make some investigation, seem that the ViewState of RadGrid doesn't store the color information, so when we click expand\collapse, those color missed.
I try to make the ViewState property to false. it works fine, but I think it's not the good solution, could you please give another way to solve this issue?
I have recently want to integrated my current project by integrating a list of data using RadDataPager in RadListView. I had notice that when i wan to change the List Page Size by using following template in RadDataPage :-->
I ran the upgrade wizard and it reported an error in updating the toolbar.
Here is the message: Upgrade Item: Upgrade Toolbox: Assembly has to be uninstalled before it can be installed Details: Toolbox upgrade failed Result: Error
I am testing the editor for a project we have, and I need to be able to write a paragraph in RTL, and then another in LTR etc...
When I create an editor, I can either create it as RTL or LTR, but I could not figure out how can I change it per paragraph (just like in a word processor).
I have a user control that is loaded dynamically from another page using a placeholder. I want to show a modal RadDock (defined in the .ascx page) when the user clicks a button that is contained in the user control. I have tried with the modal extender and the RadDock is showed, but all the page and the user control gets disabled including the RadDock itself (this not happens if I show a modal RadDock from a single .aspx page without user controls).
Is it possible to use modal RadDock from a user control, without the RadDock getting disabled after showing?
On the web form I have 5 radio button controls (note: not a radio list), 1 checkbox control, 1 label control, and 1 RadAjax Manager.
On clicking any of the radiobuttons or checkboxes, the label is supposed to display a message. I have set RadAjax manger to register the triggers of these controls and to update the label. Unfortunately, it seems that the radiobuttons do not trigger an event but only the checkbox does. An advice appreciated please.
Thanks
R
I have managed to get the popup Radwindows to overlap the radmenu on the master page in IE8, using the fix from your help site. but, IE7 I cannot get the radwindow to overlap the menu. The only part of the master page that overlaps any popup radwindow is the menu, so there is
something wrong with the CSS, or there is a workaround for IE7. I have to get it work for IE7. Is there a fix for this?