We are using a wrapper to set certain default behavior for the RadGridView.
While debugging a feature we disabled that was not working it appears that the grid.MasterTemplate.EndInit() method is resetting some properties back to their default.
We have also overriden the MasterGridViewTemplate per this article: (http://www.telerik.com/forums/question-about-mastergridviewtemplate-and-mastertemplate).
Current Issue and solution we have implemented:
Some properties (namely EnableHotTracking) that we set in the MasterTemplateGridViewElement override, or the GridView wrapper are getting reset to their defaults. (Even some properties that are set from the designer are getting reset back to their defaults)
Our work around now is to override the EndInit() method and inside, after base.EndInit(), we re-set the properties there were not holding their value.
Is there a different way to do this? Are we missing something?
Hi,
does the ChartView support huge amounts of data? I found using ~220k datapoints as a source for various barseries' takes a really long time. In essence the chart uses a linear vertical axis and a datetimecategorial axis to sort the data and all datapoints are visualized by barseries' which may be stacked. Is there a way to optimize performance and setup time of charts? Please note I am using RadChartElements, so I cannot access the full functionality of RadChartViews.
BR
This issue can be seen in the Telerik Demo Application - UI for WinForms. In the list at the left, select "DropDown & List". From the DropDownList group of demos, select "Auto complete" (the one with the list of countries and their flags). When the list is first displayed the dropdown list is opened and focus is in the keyin field. Key in the letter 'C'. You will see the list of countries that begin with 'C' over the original list of all countries. See the attached image.
Is this a defect? Is there a way to work around the issue?
hi
how can change color or animate or enable chnage when user mouse over tiles?
in regular nothing happened when user mouse over tiles. is there any solution?
Hi,
if datasource contains date/time field, it is expanded into Year, Quater, Month, etc. Is it possible to add custom aggregate e.g. Quater of hour (15 mins interval)?
Thanks
Alex
Hi!
I have problem with one of option from default ColumnHeaderContextMenu - after choose option Select Visible Columns (RadGridStringId.ColumnChooserMenuItem) we can see window that is always top. I focused my browser and this small window is still on top. How can I fix it?
While exporting the content of gridview to excel i am getting the below error but if i set the view defination as tableview it works fine.
Error :System.ArgumentOutOfRangeException was unhandled
Message="Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"
Getting the above error for:
exporter.RunExport(fileName.ToString()) where exporter is object of ExportToExcelML
Columns of gridview are:
columnGroupsView = New ColumnGroupsViewDefinition()
columnGroupsView.ColumnGroups.Add(
New GridViewColumnGroup("City"))
columnGroupsView.ColumnGroups.Add(
New GridViewColumnGroup("Details"))
columnGroupsView.ColumnGroups(0).Rows.Add(New GridViewColumnGroupRow())
columnGroupsView.ColumnGroups(0).Rows(0).Columns.Add(gridViewStaus.Columns(
"LOCATION"))
columnGroupsView.ColumnGroups(0).Rows(0).Columns.Add(gridViewStaus.Columns(
"ID"))
columnGroupsView.ColumnGroups(1).Groups.Add(New GridViewColumnGroup("Fault"))...
Please help!
need programing created structure table and see for winForm.
user need insert any info and saving
Problem for one column have any typeof.
need used control or what ?
--------------------------------------------------------------
DataTable myDataTable = DataSet_PersonData.Tables.Add("PersonalData");
myDataTable.Columns.Add("id", typeof(string));
myDataTable.Columns.Add("row", typeof(string));
myDataTable.Rows.Add(new object[] { "Name" });
myDataTable.Rows.Add(new object[] { "Surname" });
myDataTable.Rows.Add(new object[] { "tel" });
myDataTable.Rows.Add(new object[] { "date" });
radGridView2PersonData.DataSource = DataSet_PersonData.Tables["PersonalData"];
------------------------------------------------------------------------and exit this:
-------------------------------
column1 | column2 |
-------------------------------
Name | *String |
Surname | *String |
telephone | *int |
Date | *DataTime |
-------------------------------
cell marked * - insert info user for winform.
need in cell "*DataTime" open radCalendar or set fo ONLY cell [Column2][row'*DataTime'] set typeof(DateTime)
please help changet typeof for ONLY this cell in this table
When radGridView's data is grouped by a column and the column's HeaderText is empty string then a colon sign (:) is shown on the groups of rows in grid. How can I hide this colon sign? For more details see the attached image please.
Here is shortened code:
1.
grid.Columns[
"Code"
].HeaderText =
""
;
2.
grid.GroupDescriptors.Add(
new
Telerik.WinControls.Data.GroupDescriptor(
"Code"
));