Posts

Showing posts with the label grid

In angular grid, I have a column with an editor template (reactive form) in inline Kendo grid. It doesn't link template control (textbox) and the form

Image
Clash Royale CLAN TAG #URR8PPP In angular grid, I have a column with an editor template (reactive form) in inline Kendo grid. It doesn't link template control (textbox) and the form In kendo grid, I have a column with an editor template (reactive form). It doesn't link template control (textbox) and the form, because of that changes are not getting reflected in the grid and not binding the template to the model. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Grid row height distribute evenly to match the grid height in ExtJS4

Image
Clash Royale CLAN TAG #URR8PPP Grid row height distribute evenly to match the grid height in ExtJS4 I have an ExtJS 4 web app and I have a grid with a set height. The problem I have right now is that the grid has to be a certain height, and the rows often aren't many enough (usually around 31 records) to occupy the entire height of the grid so there is space left below the grid: What I want to do is to adjust the row height or something in the grid in such a way that the rows will equally distribute the available grid height amongst themselves. Is there an easy way to do this? I have styled my grid but it's just for borders and for removing the padding in the row items. perhaps try using css .x-grid-row class and adjusting its line-height property dynamically depending or exact number of records you have – bullettrain Jan 17 '17 at 8:06 ...