0

In my application, I have used Fuelux datagrid to display a set of records. Everything is working fine ie. sorting, filter, paging etc. But I have to show "No records found" message if the Fuelux datagrid doesnot have any data.

I have searched a lot but I am unable to find a suitable solution for this.

How to show "No records found" message in Fuelux datagrid?

Help me to find out a solution for this. Any idea would be grateful.

Thanks in advance.

Antony SUTHAKAR J
  • 912
  • 1
  • 7
  • 13

1 Answers1

0

You can do this with: list_noItemsHTML: 'no items found'.

$('#myRepeater').repeater({
        list_noItemsHTML: 'no items found'
    });
}

See example in example code: https://github.com/ExactTarget/fuelux/blob/master/index.js#L651