gpt4 book ai didi

jquery - Tablesorter 过滤器在更改事件时未显示在 JQuery 对话框中

转载 作者:行者123 更新时间:2023-12-01 04:00:29 25 4
gpt4 key购买 nike

我在 JQuery 对话框中使用 Tablesorter 过滤器。当我第一次打开对话框时,Tablesorter 过滤器加载并正常工作。该对话框包含一个下拉列表,当我从此下拉列表中选择值时,对话框会重新加载并显示数据,但 Tablesorter 过滤器不会出现/可见。

谁能帮我解决这个问题。

谢谢

var $dialogproperties = $('#dialogs');

$(document).on('change', '#ddl_Com', function (e) {
e.preventDefault();
var url = getURL;
var data1 = getValues();

url = '@Url.Action("Com_submit")?ID=' + id;

$.post(url, data1, function (data) {
//// Open popup dialog box
var tmp = data.commentdisplay.replace(/\n/g, '<br />');
$dialogproperties.html('');
$dialogproperties.dialog({ title: $('#title').text() });
$dialogproperties.html(tmp);
$dialogproperties.dialog('open');
});
return false;
});

$(function () {
//// - Dialog box width and height
var wWidth = $(window).width();
var dWidth = wWidth * 0.9;
var wHeight = $(window).height();
var dHeight = wHeight * 0.9;
var dialog = "";
dialog = $("#dialogs").dialog({
autoOpen: false,
modal: true,
width: dWidth,
height: dHeight,
fluid: true,
open: function (event, ui) {
stopscroll();
alert('t');

var $table = $('#tblCom');
$table.tablesorter({
textExtraction: {
'.img': function (node) {
var $node = $(node);
return $node.find('span[title]').attr('title');
}
},
imgAttr: 'title',
ignoreCase: false,
widthFixed: true,
widgets: ["filter", "columnSelector"],
widgetOptions: {
filter_useParsedData: true,
filter_columnFilters: true,
filter_ignoreCase: true,
filter_defaultAttrib: 'data-value',
columnSelector_mediaquery: false
}
});

},
close: function (event, ui) {
}

});

});

最佳答案

在初始化表排序器之前确保 HTML 已在对话框内呈现的代码

dialog = $("#dialogs").dialog({
// ...
open: function (event, ui) {
stopscroll();
setTimeout(function() {
var $table = $('#tblCom');
$table.tablesorter({
// ...
});
}, 0);
},
// ...
});

关于jquery - Tablesorter 过滤器在更改事件时未显示在 JQuery 对话框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46012470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com