In ExtJS, JsonStore and Ext. PagingToolbar of grid have query conditions.

Source: Internet
Author: User

The help documentation in Extjs contains some simple queries. grid paging queries only include parameters such as start, limit, sort, and dir by default, but in actual situations, you may need to input custom parameters, I tried it many times but did not publish it.

Find a method on the Internet and use the beforeload event of JsonStore to forcibly Add a custom parameter list. The key code is as follows:

Var ds = new Ext. data. JsonStore ({
Url: "../Handlers/PageHandlerPage. aspx ",
// Url: "../Handlers/PageHandler. ashx ",
Root: "root ",
TotalProperty: "totalProperty ",
Id: "id ",
BaseParams: {id: Ext. get ("txtId"). dom. value, name: Ext. get ("txtName"). dom. value },
Fields: ["id", "name", "descn"
],
RemoteSort: true
});
 
Ds. on ("beforeload", function (thiz, options ){
// Debugger
Thiz. baseParams ["id"] = Ext. get ("txtId"). dom. value;
Thiz. baseParams ["name"] = Ext. get ("txtName"). dom. value;
});

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.