or
I am using the RadColorPicker in an asp.net repeater control.
Everything works well except that the browser (any browser) is consuming approximately 500MB of memory
with only 13 items loaded into the repeater.
If I comment out the radcolorpicker, memory consumption drops to around 60-70MB... which is a little
more appropriate.
Memory usage is the same regardless of whether or not I handle the OnClientColorChange event, so I'm
pretty sure that whatever is going in is happening as a part the control's default behavior.
I am using the latest available controls.
Are there any known issues with this control and memory leaks/consumption?
Thanks...<MasterTableView GridLines="None" Width="100%" GroupLoadMode="Client" DataKeyNames="Title" AllowMultiColumnSorting="True" HierarchyLoadMode="Client" HierarchyDefaultExpanded="true" ExpandCollapseColumn-ButtonType="ImageButton" ExpandCollapseColumn-CollapseImageUrl="/_layouts/images/minus.gif" ExpandCollapseColumn-ExpandImageUrl="/_layouts/images/plus.gif">public GridDateTimeColumn AddGridDateTimeColumn(string columnHeader,string columnDataField,string uniqueName,string formatString,double percentWidth,bool readOnly,bool visible) { GridDateTimeColumn dateTimeColumn = new GridDateTimeColumn { HeaderText = columnHeader, DataField = columnDataField, UniqueName = uniqueName, ReadOnly = readOnly, Visible = visible, DataFormatString = formatString, PickerType = GridDateTimeColumnPickerType.DatePicker, DataType = typeof(DateTime) }; dateTimeColumn.ItemStyle.Width = Unit.Percentage(percentWidth); TelerikGrid.MasterTableView.Columns.Add(dateTimeColumn); return dateTimeColumn; }
GridEditableItem editedItem = e.Item as GridEditableItem; GridEditManager editMan = editedItem.EditManager;if (!(e.Item is GridEditFormInsertItem)){GridDateTimeColumnEditor dateTimeEditor = editMan.GetColumnEditor("StatementEndDateUniqueName") as GridDateTimeColumnEditor;} The GetColumnEditor method throws error Uncaught Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Editor cannot be initialized for column: StatementEndDateUniqueName The StatementEndDateUniqueName is valid. I am able to view the data , but while in Edit Mode, I get the error. Can someone help me with this? Thanks, Sunil Dixit