We'd like to show groups in a very specific order, not in the order displayed when we group by default.
I.e. assume we have 4 groups. "Beam", "Advanced", "No beam" and "Hefty". By default when grouped these would show up in the grid in the order
Advanced
Beam
Hefty
No Beam
We'd like this to be in the order of
Beam
No Beam
Hefty
Advanced
Is there a way to accommodate this? For instance, maybe group by a different value (that is alphanumeric) and then show the text for the group from another property on our objects?
I have been struggling to get my gridview to expand everything by default
this just throws an error but seems like it is what I want just not sure how to implement it.
rgvContracts.MasterTemplate.Templates[0].ExpandAll();
rgvContracts is the name of my RadGridView.
Hi all-
I'm using a RadGridview (Telerik Winforms version 2018.1.220.40) and am having trouble setting the font size for the a) right click on column header sort options (ascending, descending, no sort etc) and b) the list of filters (contains, equals, etc) that pops out to the side from the excel filter options. (Dess helped me here with setting the font size for the excel filter box https://www.telerik.com/forums/radgridview-excel-filter-box-has-tiny-elements#jN8hkMsaPEuZCHiUFqAqFQ) but I can't get the font right for the sorting options and the filter operators. Basically the issue is that everything on the grid is 14 point font, but the sort options and filter operators list are 8.5 point.
I've tried searching through the cell elements to find these items but I don't know what they're called (or else I'm not finding them...) Also have googled but have had no luck. Does anyone know the best way to set these font sizes?
Thanks!
foreach
(var node
in
RadTreeView1.Nodes)
{
}
Working in an ERP environment means that users are on the same screens all day long. They tend to pull up the same value from many of the dropdown lists. It would be a nice feature to keep frequently used values at the top of the list, so they can do their work that much easier/quicker.
private void radGridView1_CellValueChanged(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
{
bool isChecked = (bool)radGridView1.CurrentRow.Cells[2].Value;
if (isChecked == true)
{
MessageBox.Show("Thanks you");
}
}
Hi,
Im currently using a range selector for a line series chart view.
Is there a way that i can see / calculate how many data points are in the current view from the range selector
Cheers
Hi admin,
I would like to know GridViewSummaryItem with excel cell format of the number when export to excel (using ExportToExcelML). I can do each column of formatting but summary column not showing 'Number' in excel, just show 'General' format. Please, my attached file.