rstaib / jquery-bootgrid

Nice, sleek and intuitive. A grid control especially designed for bootstrap.
http://www.jquery-bootgrid.com
MIT License
973 stars 364 forks source link

When no data rows are available, options label noResults is not displayed #411

Open onglipo opened 5 years ago

onglipo commented 5 years ago

Possible reason:

function renderRows(rows)
     {
         if (rows.length > 0)

rows.length is undefined when there are no rows. Fix:

function renderRows(rows)
     {
         if (rows && rows.length > 0)