javascript - Display empty grid message on igheirarchical grid -


as per post in forum

http://www.infragistics.com/community/forums/t/93487.aspx

i want display same no data found message in igheirarchical grid dont find events can write function same.

you can use rowsrendered event this:

$("#gridid").ighierarchicalgrid({     ...     rowsrendered: function (event, ui) {         var hasdata = ui.owner.options.datasource.root().data().length;         if (!hasdata) {             // render empty data message         }     } });  

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -