Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1810
need urgent help iggrid export to excel with features on filter data
posted

Hi Team

is there any possibilities like if filter is applied on grid, export only filtered data if at all data is distributed in 5 pages.

for example in 8000 data if 3000 is filtered data export all 3000 data only.

Thanks

Parents
  • 16310
    Verified Answer
    Offline posted

    Hi,

    Thank you for posting in the Infragistics community !

    To export only the filetred rows you need to specify filteredRowsOnly value to the filtering option, as follows:

                    $.ig.GridExcelExporter.export($("#grid"), {
                        fileName: "igGrid",
                        gridFeatureOptions: { "filtering": "filteredRowsOnly" }
                    });

    Please see the attached sample and let me know if you have further questions on the matter, I will be glad to help.

    exportGridExample.zip
Reply Children