Export the grid to excel

Page 4 of 4 FirstFirst ... 234
  1. #31
    Hi Danill,
    Thanks that solved one problem.

    how to export entire data when paging(remote or local) is implemented?
    I mean not only current visible page but entire data.
  2. #32
    In remote paging case - no way. Because there is a current page data only on client. So, you can't get the rest pages data on client.

    In local paging case please try to pass the
    currentPageOnly : false
    option into the getRowsValues method.
  3. #33
    Thanks Danill,
  4. #34

    Solution For replace 'undefined' in excel sheet.

    Ext.each(data, function (record) {
                                                                                    for (var field in record) {
                                                                                        record[headers[field]] = record[field];
                                                                                         delete record[field];
                                                                                    }
                                                                                      delete record[record.count];
                                                                                 });
    use this for replace the undefind field in excel shett at the end.. use this code...
    Last edited by Daniil; Apr 25, 2012 at 7:18 AM. Reason: Please use [CODE] tags
  5. #35
    Here is a similar discussion in the context of Ext.NET v2.
    http://forums.ext.net/showthread.php?26140
Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. Export grid panel data to excel
    By sumesh in forum 1.x Help
    Replies: 1
    Last Post: Sep 23, 2013, 9:07 AM
  2. Export to excel: Grid Panel with multiple pages.
    By breakyoheart in forum 2.x Help
    Replies: 0
    Last Post: Aug 02, 2012, 8:09 PM
  3. Replies: 1
    Last Post: May 28, 2012, 5:17 AM
  4. Export grid panel data to excel
    By sumesh in forum 1.x Help
    Replies: 0
    Last Post: May 19, 2012, 6:01 AM
  5. Excel Export in Grid
    By BLOZZY in forum 1.x Help
    Replies: 0
    Last Post: Oct 09, 2011, 11:37 AM

Tags for this Thread

Posting Permissions