我在同一页面上使用数据表和对话框,我想为每个应用不同的主题。我如何实现它?目前我的数据表主题适用于两者,我如何确定对话框的范围。
下面是我的对话框代码
$('#newVisit').dialog({
modal: true,
autoOpen: false,
draggable: true,
width: 'auto',
height: 'auto',
title: "Add New Visit"
// open: function () {
// $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").addClass("ui-state-error");
// }
}); //.parent(".ui-dialog").wrap("<div class='theme-smoothness'></div>");
我尝试过包装但没有成功。任何想法将不胜感激。