Hi Team,
We have a business case, where we build a spreadsheet with collapsable groups and subgroups. Our customers wanted to have an overview about the group totals on each group and expand and collapse the groups on demand (because it's also possible in Excel).
So, it would be awesome, if you could extend your spreadsheet component with that feature as well.
Thank you
Currently when you highlight a row in the child GridView, the ParentRow becomes highlighted. It would be really nice to have an option so that the ParentRow would be selected when a row in the child GridView is selected. This should work recursively selecting the ParentRow all the way up the hierarchy.
I've written a workaround, but it isn't pretty.
Please add this functionality. :)
My case involves a three tier hierarchical GridView (each in single select mode). If I select a row in a third tier GridView, then I want its ParentRow to become selected on the second tier and the second tier's ParentRow to become selected on the first tier. Hopefully that makes sense.
Steps to reproduce
Unfortunately due to the other cursor jumping bug our users are extremely sensitive to anything that makes it appear like the cursor is not in the position they moved it to.
I attached a gif of this happening with the zoom set to 500% so it is easiest to see but it appears to be a problem at any zoom level 100% or higher.
private void UpdateHeadersFooters(RadDocument document) { foreach (Section section in document.Sections) { if (section.Headers.Default.Body != null) { this.UpdateFields(section.Headers.Default.Body); } if (section.Headers.First.Body != null) { this.UpdateFields(section.Headers.First.Body); } if (section.Headers.Even.Body != null) { this.UpdateFields(section.Headers.Even.Body); } if (section.Footers.Default.Body != null) { this.UpdateFields(section.Footers.Default.Body); } if (section.Footers.First.Body != null) { this.UpdateFields(section.Footers.First.Body); } if (section.Footers.Even.Body != null) { this.UpdateFields(section.Footers.Even.Body); } } } private void UpdateFields(RadDocument radDocument) { RadDocumentEditor editor = new RadDocumentEditor(radDocument); editor.ChangeAllFieldsDisplayMode(FieldDisplayMode.Code); }
Hello Telerik,
I started working with the RadMultiColumnComboBox.
A feature that I miss is opening the combo on focus.
The RadComboBox has OpenDropDownOnFocus and I use it very often.
Thanks in advance