Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
onglipo opened this issue Aug 27, 2018 · 0 comments
Open

Comments

@onglipo
Copy link

onglipo commented Aug 27, 2018

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant