I am trying to figure out how to make Kendo Angular Grid resize the columns automatically based on the page width. Take this three column grid as an example:
- Column with static width of 50px
- Column with 40% width
- Column with 60% width
When the grid resizes horizontally, I want the 2nd and 3rd columns to resize and fill in the rest of the space based on the percent width.
width: 50px; width: calc(40%-25px); width: calc(60%-25px)
accordingly in your stylesheet? – Vitalii Chmovzh