我尝试通过提示符为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
}
});
有什么建议吗?
1条答案
按热度按时间gt0wga4j1#
设置TextArea的emptyText属性,如下所示: