Simple Ext. Ajax. Request usage

Source: Internet
Author: User

 

// Obtain the selected row. The grid is Ext. grid. gridpanel instance <br/> VaR _ records = grid. getselectionmodel (). getselections (); <br/> If (_ records. length! = 1) {<br/> Ext. msg. Alert ('modify', 'is required and can only be selected! '); <Br/>}</P> <p> Ext. ajax. request ({<br/> // URL: request address <br/> URL: 'someaction! Somemethod. action ', <br/> // Params: parameter list <br/> Params: {<br/> // obtain the value of the ID column in the first row selected <br/> ID: _ records [0]. get ('id') <br/>}, <br/> // success: callback function after successful response <br/> success: function (response) {<br/> // decodes JSON data into an object. the returned data is JSON data. {ID: '1'} <br/> var resptext = ext. util. JSON. decode (response. responsetext); <br/> idfield. setvalue (resptext. ID); // idfield is Ext. form. textfield instance <br/>}, <br/> // failure: handle an HTTP 404 or 500 error, not a business error <br/> failure: function (response) {<br/> Ext. MSG. alert ("error", "cannot access the background"); <br/>}< br/> })

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.