需要将JQGrid中的所有数据导出为CSV

时间:2010-06-15 15:17:25

标签: jqgrid jqgrid-asp.net

我在JQGrid里面创建了一个自定义按钮导出到CSV,这里有一些代码

content.AppendFormat(@"pager: $(""#{2}"") {1}).navGrid(""#{2}"", {0} edit: false, add: false, del: false {1})
            .navButtonAdd(""#{2}"", 
             {0} caption:""Export to CSV file "", 
             position:""first"",
             buttonicon:""none"",
             onClickButton: function () {0}
                 alert('Made it to Export to CSV ...');
             {1}
             {1});
            {3}.filterToolbar();
            {1});
        </script>", "{", "}", pagerID, tableID);
        return content.ToString().ToControl("div");

问题是,我需要所有数据,而不仅仅是在ui中呈现的页面,所以我想使用搜索的内置功能以及与之关联的所有参数,但我还想追加' &amp; oper = csv',我只是不知道如何去做。我应该使用自定义按钮还是其他东西。

1 个答案:

答案 0 :(得分:2)

您可以尝试使用grid.import.js中的jqGrid的excelExport方法。在http://www.trirand.net/documentation/php/_2v212tis2.htmhttp://www.trirand.net/forum/default.aspx?g=posts&t=183点击。可能是你正在寻找的。