& Lt; ABP document & gt; Javascript Api, abpapi

Source: Internet
Author: User

<ABP document> Javascript Api, abpapi

Content of this section:

  • Display Information
  • Confirm

 

Message API displays a Message or obtains a confirmation Message from the user.

The Message API is implemented by default using sweetalert. To make sweetalert work properly, you should include its css and javascript files and then include the abp. sweet-alert.js adapter into your page.

 

Display Information

For example:

abp.message.info('some info message', 'some optional title');abp.message.success('some success message', 'some optional title');abp.message.warn('some warning message', 'some optional title');abp.message.error('some error message', 'some optional title');

A successful message is as follows:

 

Confirm

For example:

abp.message.confirm(    'User admin will be deleted.',    'Are you sure?',    function (isConfirmed) {        if (isConfirmed) {            //...delete user        }    });

The second parameter (title) is optional here (so the callback function can be used as the second parameter ).

The following is a confirmation message:

The Message API is used internally. For example, if an AJAX call error occurs, the abc.message. error is called.

 

Kid1412 Appendix: http://www.aspnetboilerplate.com/Pages/Documents/Javascript-API/Message

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.