How to set jQuery UI dialog defaults

扶醉桌前 提交于 2019-12-03 13:12:24

I found a solution

$.extend($.ui.dialog.prototype.options, { modal: true, width: 650 });
Groovetrain

There's no built-in functionality for that AFAIK, but what I usually do is set them myself in a separate hash like this:

var dialog_defaults = {
  autoopen: false,
  buttons: {
    close: function() { $(this).dialog('close'); }
  }
};

Then when I create the dialog, I use jQuery's extend method to make them work, like this:

$('#divvie').dialog(
  $.extend({}, dialog_defaults, {
    autoopen: true
  })
);

The second set of arguments you pass in will overwrite/merge with whatever's in the dialog_defaults variable. Just make sure you put the empty hash ({}) in there, or your defaults will get overwritten, that's bitten me in the past.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!