Is there a Scroller configuration property for "no records found"?

Is there a Scroller configuration property for "no records found"?

rdmrdm Posts: 192Questions: 54Answers: 4

Is there a Scroller configuration property for "no records found"?

Rather than what you see in the screenshot, is there a way to make the "loading" background image not appear when there are no records returned, or maybe something user-friendly that says "No records found"?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,431Questions: 1Answers: 10,048 Site admin
    Answer ✓

    Have you got the scrollCollapse option set? If not, that would be the way to go.

    Regarding the "No records found" message - perhaps:

    table.dataTable td.dataTables_empty {
      text-align: left;
    }
    

    Allan

  • rdmrdm Posts: 192Questions: 54Answers: 4

    scrollCollapse: true did the trick. I didn't have that in my code.

This discussion has been closed.