extjs MessageBox的占位符文本

x33g5p2x  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(212)

我尝试通过提示符为MessageBox中的文本区域应用占位符文本,但似乎没有显示。
下面是我目前的代码:

Ext.Msg.show({
            title: 'Approve Confirmation',
            message: 'Confirm to approve the selected items?',
            multiline: 'true',
            prompt:{
                placeHolder:"PLACEHOLDER TEXT HERE",
            },
            iconCls: 'fa fa-check-square-o',
            buttonText: {
                ok: 'Yes',
                cancel: 'No'
            },
            height:350,
            width:500,
            defaultTextHeight:210,
            fn:function(btn,text){
                //http processes
            }
        });

有什么建议吗?

gt0wga4j

gt0wga4j1#

设置TextArea的emptyText属性,如下所示:

var myMsg = Ext.Msg.show({
                title: 'Approve Confirmation',
                message: 'Confirm to approve the selected items?',
                multiline: 'true',
                prompt:{
                   placeHolder:"PLACEHOLDER TEXT HERE",
                },
                iconCls: 'fa fa-check-square-o',
                buttonText: {
                    ok: 'Yes',
                    cancel: 'No'
                },
                height:350,
                width:500,
                defaultTextHeight:210,
                fn:function(btn,text){
                       //http processes
             }
    });

    //Set emptyString
    myMsg .textArea.setEmptyText('My Message');

相关问题