jQWidgets Forums
Forum Replies Created
-
Author
-
May 26, 2016 at 7:51 am in reply to: Moving grouped columns indicates it should work, but doesn't Moving grouped columns indicates it should work, but doesn't #84667
Hi Peter.
It’s an issue for my users as they are being shown the green tick indicator that shows it is a valid move and are confused when it doesn’t work.
If this isn’t supported in the the grid that’s cool, but could you show a different indicator, maybe a red cross to indicate this to users? Alternatively it would be great to still get the event, so I can handle the move in my code.
Thanks,
Richard
February 1, 2016 at 7:58 am in reply to: jqxGrid Evaluation Findings jqxGrid Evaluation Findings #80970Hi Peter,
With the renderer callback, I needed to add the
<br>
breaks myself. Is this the approach you are referring to? For me, this meant calculating the width of text to see where the breaks needed to go. As calculating the width of text is slow (unless you’re using a fixed width font!), I found it was better to let the browser wrap the text naturally and then set the height.Another useful trick is, I used zero-width spaces (​) to hint where the browser should wrap long, non-space-containing strings. In my case this is after _ and on camel case. This would allow
California_San_Diego_MeassureOne3 to be wrapped like this when space was tight
California_ San_Diego_ Measure OneTwo3
and
California_San_Diego_ MeasureOneTwo3
when there was more width.
In situations where you know your column names, widths and grid size, I can see the column renderer callback being fine, but as my grid size and columns are dynamic, I needed to get a bit more creative to match the behavior elsewhere!
Thanks,
Richard
February 1, 2016 at 5:58 am in reply to: jqxGrid Evaluation Findings jqxGrid Evaluation Findings #80965Summary of suggestions and bugs. Most are not critical, but would be nice to bring jqxGrid in line with the best bits of other grid controls.
Suggestions
- Enhance groupsrenderer to allow per cell group summaries
- CSS class to grouping summary row
- Add column definition options to documentation API
- Preload x rows before and after currently displayed rows
- Column header wrapping
- Separate height for grouping summary rows
- Selection of multiple rows in a single call
- Scroll event
- Pin grouping expand / collapse arrows to left
- Default to column definitions if datafields not on adapter
- Support drag scroll for Windows touch, like iPad
Bugs
- Call groupsrenderer less aggressively
- Ensure horizontal scrollbar isn’t shown unless needed
- Column reordering broken on Windows touch in Chrome & Edge
- Missing cellrenderer param (sometimes)
Let me know if I can provide any more feedback.
-
AuthorPosts