ExtJs 학습의 MessAgeBox 사용

2058 단어
1、Ext.MessageBox.alert()
호출 형식:
  alert( String title, String msg, [Function fn], [Object scope] )
매개변수 설명:
title: 프롬프트 상자의 제목입니다.
msg: 표시되는 메시지 내용입니다.
[Function fn]: (선택 사항) 콜백 함수입니다.
[Object scope]: (선택 사항) 콜백 함수의 역할 영역입니다.
ExtJS MessageBox alert는 HTML 형식의 텍스트를 지원합니다.
Ext.onReady(function () {
            Ext.MessageBox.alert(" ", "Hello World !", function (id) { alert(" :" + id); });
        });

2、Ext.MessageBox.confirm()
호출 형식:
  confirm( String title, String msg, [Function fn], [Object scope] )
 
Ext.onReady(function () {
            Ext.MessageBox.confirm(" ", " , !", function (id) { alert(" :" + id); });
        });

3、Ext.MessageBox.prompt()
호출 형식:
confirm(String title, String msg, [Function fn], [Object scope], [Boolean/Number multiline], [String value]) 매개변수 설명:
[Boolean/Number multiline]:false로 설정하면 한 줄 텍스트 필드가 표시되고true로 설정하면 기본 높이로 여러 줄 텍스트 필드가 표시됩니다.또는 픽셀 단위로 텍스트 필드의 높이를 직접 설정합니다.기본값은 false입니다.
 Ext.onReady(function () {
            Ext.MessageBox.prompt(" ", " :", function (id, msg) { alert(" ID :" + id + "
" +" :" + msg); }, this, true, " "); });

4、Ext.MessageBox.show()
Ext.onReady(function () {
            Ext.MessageBox.show({
                title: " ",
                msg: " 、 ",
                modal: true,
                prompt: true,
                value: " ",
                fn: function (id, msg) {
                    Ext.MessageBox.alert(" id :" + id + "
" + " :" + msg); }, buttons: Ext.Msg.YESNOCANCEL, icon: Ext.Msg.QUEATION }); });

좋은 웹페이지 즐겨찾기