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
Hello Pooja,
Thank you for posting in the Infragistics community! :)
Since it has been 6 years since Hristo last post, I suggest you to check this documentation and, if you haven't already, update to the latest version. Setting the desired value for property filtering will get the filtered data.
Unfortunately, for now, we do not support option for separate grouping for child and grand child grids.
I hope the above is useful to you.
Since Hristo last post was 6 years ago, I suggest you check this API documentation and, if you haven't already, update to latest version then probably you will get the filtered data.
Unfortunately, for now, we do not support separate filtering options for child and grand child grid.
Hi Hristo,
I have tried the code which you have provided but I am getting all the data but not the filtered one, and I have one more doubt that in igherirachical grid when we export to excel we have the option of filtering and sorting at the parent level there I was getting all the child and grand child data but I want to have seperate filtering and sorting options for the child and grand child is that possible or do we have any other option for seperate grouping of the parent, child and grand child data?
Hi,
I replied in this forum thread
Hi Hristo
I am elaborating my point.
actually what we are doing according to our client has business requirement that they want to see percentage value some times with two decimal value sometimes 3 sometimes and sometimes with n.
since infragistic has max/min decimal value 2 for percent format default. so that we are achieving this by column formatter, where we restrict the number to display as desired number of decimals while creating column and its working perfectly, but now we are trying to export excel data, the problem occurring that the percentage value while exporting coming as '2.33%' string and exporting on excel cell whose type is number due to that its exporting data on cell with error says string is stored in number cells.
for that solution what i am thinking the cells value which is going to export to convert into float and set that cells format to percent.
something like this...
cellExporting: function (sender, args) { var filteredColumn = $.grep(sender._columnsToExport, function (v) { return v.hidden == false && v.key == args.columnKey }); if (filteredColumn.length > 0) { var format = filteredColumn[0].format; if (format == 'currency') { args.xlRow.getCellFormat(args.columnIndex).formatString('$#,##0.00_);[Red]($#,##0.00)'); } if (typeof (args.cellValue) == "string" && args.cellValue.contains('%')) { args.cellValue=parseFloat(args.cellValue); args.xlRow.getCellFormat(args.columnIndex).formatString('0.00%'); } }},
but unfortunatly its not setting the parsed value to cellValue, How i can achieve this. or there any better solution we have.
looking for your response.