vtfuture / BForms

Bootstrap Forms for ASP.NET MVC
MIT License
62 stars 33 forks source link

Ordering doesn't work without grid title #213

Closed lvv83 closed 9 years ago

lvv83 commented 9 years ago

If you set the grid without a title header, then records ordering is not working.

@(Html.BsGridFor(x => x.Grid).ConfigureColumns(col =>
{
   // some configuration code
}).PagerSettings(new BsPagerSettings
{
  // some pager settings
}).NoTitle()
)