jquery - Padding issue with Kendo UI Grid -
i got issue padding kendo ui grid, grid
covered header
. on footer
has toogle
button, when click toogle
button header
appear. more specific see 2 images below.
@(html.kendo().grid(model) .name("grid") .columns(columns => { columns.bound(c => c.productsubcategoryid).width(140); columns.bound(c => c.productcategoryid).width(140); columns.bound(c => c.nameofbike).width(190); columns.bound(c => c.isselected).width(120); }) .editable(edit => edit.mode(grideditmode.incell)) .pageable(pageable => pageable .refresh(true) .pagesizes(true) .buttoncount(5)) .sortable() .groupable() .toolbar(tb => { tb.create(); tb.save(); })
does knows what's wrong it? thanks!
Comments
Post a Comment