Coolite 消息对话框用法

方法一:

Coolite 消息对话框用法

  Ext.Msg.Alert("消息", "请输入检索内容!").Show();

 

方法二:

Coolite 消息对话框用法

   Ext.Msg.Show(new MessageBox.Config { Title = "查询结果", Message = "<font style='color:black;'>没有找到任何数据!</font>", Buttons =                            MessageBox.Button.OK, Icon = MessageBox.Icon.INFO });

 

方法三:

Ext.Msg.confirm('Confirm', '你想删除它?',function(btn){if(btn=='yes')window.location.href='Delete.aspx';});  

你可能感兴趣的:(对话框)