<<ABP documentation >> Javascript api-message

Source: Internet
Author: User

The content of this section:

    • Display information
    • Confirm

The message API displays a message to the user or obtains a confirmation from the user.

The Message API is implemented by default using the Sweetalert, and for the Sweetalert to work properly, you should include its CSS and JavaScript files, and then include the Abp.sweet-alert.js adapter in 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'll be deleted. ' ,     ' Is 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 argument).

A confirmation message is as follows:

The ABP uses the message API internally, for example, an Ajax call to the wrong ABP to invoke Abp.message.error.

kid1412 attached: English Original: Http://www.aspnetboilerplate.com/Pages/Documents/Javascript-API/Message

<<ABP documentation >> 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.