charlespockert / aurelia-bs-grid

Aurelia and Bootstrap powered datagrid control
MIT License
45 stars 21 forks source link

How to remove specific elements from grid footer #77

Closed UmaBharathiK closed 8 years ago

UmaBharathiK commented 8 years ago

How can I remove specific elements like PageSizeBox or Paging Summary from the grid footer? I tried using showPageSizeBox = "false" and showPageSizeBox.bind = "false" in my html page inside the grid tag but it doesn't seem to work.

charlespockert commented 8 years ago

You have to kebab-case the property names in Aurelia since the DOM is case insensitive

Try show-page-size-box.bind="false"

UmaBharathiK commented 8 years ago

It worked! thank you