How do I format the width of the page-sizes button on a grid ??
This is what I have:
I have tried the following:
-which only change the width of the dropdown list.
How to change the width of the button itself ??
Thanks.
This is what I have:
.Pageable(p =>
p.Refresh(true)
.ButtonCount(10)
.PageSizes(new[] { 10, 25, 100, 200, 1000 })
.Input(true)
)
I have tried the following:
.k-pager-wrap .k-dropdown{
width: 280px;
}
var ddl = $('[data-role="dropdownlist"]').data("kendoDropDownList");
ddl.list.width(100);
-which only change the width of the dropdown list.
How to change the width of the button itself ??
Thanks.