I am experiencing very tuff problem with the applicaions designed using Win forms telerik suit as the application is loading very very slow. We thought it was because of the data it is being loaded but not, even the empty win form designed using Telerik suit is loading very slow. I am getting regrets from my clients. Is there any way that we can minimize this loading time. Please suggest us as soon as possible.
I'm trying to add a background color to a RadGridView cell. I often did it before and it always works perfectly, just in this case it's not working properly. Here you can see my code:
if (e.Column.Name == "BM")
{
foreach (string rs in BmList)
{
if (rs == e.Row.Cells["RS"].Value.ToString())
{
e.CellElement.DrawFill = true;
e.CellElement.BackColor = Color.FromArgb(238, 127, 0);
e.CellElement.NumberOfColors = 1;
}
This code is just coloring 1 cell, even if there are more in the list. The debugger says, in my list called "BmList" are 18 items. But it colors just one. So I'm wondering why its not coloring every cell. When I remove the foreach loop, it works fine. And when I use this code instead of "e.CellElement" it works as well:
1. When using the Office2013Light theme, the styles that are applied to PageView tabs do not match
the styles of child hierarchy template tabs. Please see attached. Is there a workaround to get the child
template tabs to match the PageView tabs (as occurs when using other themes)?
2. When more than one child hierarchy template is added, all rows are
expanded by default, whereas when a single child template is added, the rows are
collapsed. How do I ensure that the rows remain collapsed when adding more
than one child template in a hierarchy?
I have one of my gridview columns set to wrap text. What I would like to see happen is that when the text wraps in a row, the row resizes itself to show all the text. However, it isn't doing that, so my text in the column that wrapped is all scrunched up. Is there a way to tell the grid to either resize the rows where the text in a column has wrapped, or at least, set each row to be 2 rows high?
Can I build append a new series to any chart in anew panel. (check the attachments please).
Or can i Sync the zoom and scroll between two different charts.
I am using rad gridview in one of my ongoing application. I have 4 radgrids in my form. I have one primary grid which will be filled in my forms OnLoad event. On my forms load event, columns and data will be loaded dynamically for the Primary gridView. Based on key field value my application will fetch records for the remaining three grids.This will happen on Primary radgridview's cell click event.
In the primary gridview i have a column for which i want to keep fore color based on certain condition. This column shows the status of a particular items expiry date. if the item has already expired then this column text value is "expired" and the forecolor should be red. if item is getting expired within 30 then the fore color should be orange and if item expiry date is more than 30 days then fore color is green.
I am Formatting the cell in CellFormatting event. In this event i am checking whether the CellElement is GridViewDataColumn , if yes then will check the value of the cellelement ie text property. Conditionally i will assign the forecolor. Formatting for the status column is absolutely fine but at the same time it also changes the fore color for other columns data. whenever i move the mouse over these columns or scroll the gridview to see other rows the forecolor keeps changing randomly e.g initial it will be red then on mouse hove or on radgridview row scrolling top - bottom and vice -versa fore color is some times red,orange,green,black for these columns.
Please help in avoiding the other columns getting forecolor. Other columns except status column should have normal black forecolor.