How Can I take UI Grid Data's entire rows in javascript Array?
I have search a lot on internet but I only found options for binding data in UI Grid or Exporting Excel Data.
Please Reply me as soon as Possible. We are also having a Licence version of Ignite Ui.
Hello manna,
Thank you for posting in our community.
igGrid provides rows method which returns an array of all TR elements holding data in the grid. For example:
var rows = $(".selector").igGrid("rows");
var
rows = $(
".selector"
).igGrid(
"rows"
);
All igGrid API options, methods and events can be easily found online in out API documentation:
https://www.igniteui.com/help/api/2017.1/
Please let me know if you need any further assistance with this matter.