Currently, when we pass an empty string ("") or leave the title undefined for a GridColumn, the Grid automatically falls back to rendering the column's field name as the header title (inside the .k-column-title span).
Please see the example - https://codesandbox.io/p/sandbox/silly-wind-tpfg8n
When column "Unit Price" is locked, while moving the horizontal scroll bar, the group header is sticky (expected behavior), but the group footer is not sticky (wrong behavior).
Provide a set of utility functions for safely creating, traversing, updating, and deleting filters inside nested CompositeFilterDescriptor trees.
Be able to to modify the cut-off point depending on what baseUnit is selected in a chart time series.
e.g.
Given the following data points:
Data = [
Friday 10th Oct: 123,
Saturday 11th Oct: 54,
Sunday 12th Oct: 77,
…,
Tuesday 20th January: 10,
]
If baseUnit = year
Currently what happens is:
1st Jan -> 1st Jan -> 1st Jan
What we want:
10th Oct -> 10th Oct -> 10th Oct
If baseUnit = month
Currently what happens is:
1st Oct -> 1st Nov -> 1st Dec
What we want:
10th Oct -> 10th Nov -> 10th Dec -> etc
*Edge case of 29th, 30th, and 31st:
Default to last day of the month
Oct 31st -> Nov 30th -> Dec 31st
If baseUnit = week
Currently what happens is:
Sunday 5th Oct -> Sunday 12th Oct -> Sunday 19th Oct
What we want:
Friday 10th Oct -> Friday 17th Oct -> Friday 24th Oct -> etc
If baseUnit = day
This is our minimum unit so everything works
Currently, using npm install --save @progress/kendo-theme-material will get the standard Material Design theme for use across the React Components, but why is Material Black not available this way? (npm install --save @progress/kendo-theme-materialBlack)
If you create a react grid without any GridColumn components and then add those components later, the added columns do not show and the grid is empty. It appears, after a quick look that the columns have a width of 0 pixels. They exist in the html, just not displayed.
See https://codesandbox.io/s/mmr894nllp as an example of the problem. This example starts with a populated grid. You can add columns and data using the buttons above the grid. This works fine. If you then "Reset" the grid with the button, which removes all data, any attempt to add columns and data will show a blank grid.
Thanks,
Joe
We are evaluating the React Grid component for our application and need to be able to have rows that span all columns. To do this, I have created a rowRender function that, for some rows, will render a single <td> element with the colspan set to 100%. The row renders fine, but the other rows, that have multiple <td> elements do not all render correctly. For my test application, they will render with a width of 8 pxs. On resize of a column, they will almost render correctly.
Here are some pictures of the issue in our test code.
https://drive.google.com/open?id=1bMwlUi7-7QiVHc6lubPiz45svHG1FSnS
I have created a sandbox that sort of reproduces the bug. https://codesandbox.io/s/w73v0x0mz8
If you select the "Show Full Row", the row with Id 999 will convert to a single <td> element with colspan='100%'. You will notice how after doing so, the last three columns collapse to a small number of pixels.
Thanks
Joe