87,996
社区成员




$("#pdailog").dialog({
title : "组件事件设置",
width : 300,
height : (f.type == "table" ? 290 : 250),
closed : false,
cache : false,
modal : true,
toolbar : null,
content : p,
buttons : [ {
text : "确定",
handler : function() {
//dosomething
$("#pdailog").dialog("close")
}
}, {
text : "取消",
handler : function() {
$("#pdailog").dialog("close")
}
} ]
$("#pdailog").dialog({
title: "组件事件设置",
width: 300,
height : (f.type == "table" ? 290 : 250),
closed: false,
cache: false,
modal: true,
toolbar: null,
content: '<input type="text" id="cc" />',
onOpen: function () {
console.log($('#cc'))
$('#cc').combobox({/*combobox配置*/})////////////
},
buttons: [{
text: "确定",
handler: function () {
//dosomething
$("#pdailog").dialog("close")
}
}, {
text: "取消",
handler: function () {
$("#pdailog").dialog("close")
}
}]
});