gpt4 book ai didi

jquery - 如何从ajax数据中选择行

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

免费的 jqgrid 每行都包含按钮。单击按钮进行 ajax 调用,该调用根据单击的行列值返回客户列表。

用户可以从此数据中选择客户。所选客户名称和 ID 应写入 jqgrid 行。

我尝试了下面的代码,但我得到了:

Uncaught TypeError: Cannot read property 'rowIndex' of undefined

此错误发生在这行代码上:

var clickedId = $(this).closest('tr')[0].rowIndex,

当单击选择表单中的任何位置时。

如何解决这个问题?应用程序包含来自不同数据的许多此类选择。哪种是实现它们以避免代码重复的最佳方法?

表是用 JavaScript 创建的。是否合理/如何为此使用一些 MVC 部分 View 或其他模板?

这段代码可以改进/重构吗?

使用免费的 jqgrid 4.13.3-pre、.NET 4.6、ASP.NET MVC、Bootstrap 3、jQuery、jQuery UI。

选择表单是从 Bootstrap 模式示例复制的:

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
</div>
<div class="modal-body">
<table class='table table-hover table-striped'>
<thead>
<tr><td>Customer name</td><td>Customer Id</td></tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">close without selection</button>
</div>
</div>
</div>
</div>

jqgrid colmodel:
formatter: "showlink",
formatoptions: {
onClick: function (options) {
var nimeosa = getColumnValue('customername', options.rowid);
if (nimeosa == null) {
return false;
}
$.ajax('api/Customers/FromRegister?' + $.param({ namepart: nimeosa }), {
type: 'GET',
dataType: 'json',
contentType: "application/json",
async: false
}).done(function (data, textStatus, jqXHR) {
var valik = "";
for (var i = 0; i < data.customerlist.length; i++) {
valik += '<tr><td>' + data.customerlist[i].customerName + '</td><td>' +
data.customerlist[i].customerId + '</td></tr>';
}
$('#exampleModal').on('show.bs.modal', function (event) {
$('.modal-body tbody').html(valik);
});

$('#exampleModal').on('click.bs.modal', function (event) {
// how to fix Uncaught TypeError: Cannot read property 'rowIndex' of undefined in this line:
var clickedId = $(this).closest('tr')[0].rowIndex, clickedElem = data.customerlist[clickedId];
$('#' + options.rowid + '_customername').val(clickedElem.customerName);
$('#' + options.rowid + '_customerid').val(clickedElem.customerId);
});
$('#exampleModal').modal();
);
return false;
}
}

// gets column value from jqgrid row
function getColumnValue(valjaNimi, rowId) {
var
iNimi = getColumnIndexByName($grid, valjaNimi),
$nimi = $('#' + rowId + '>td:nth-child(' + (iNimi + 1) + ')'),
nimiVal;

if ($nimi.find('>input').length === 0) {
// the cell is not in editing mode
nimiVal = $nimi.text();
}
else {
nimiVal = $nimi.find('>input').val();
}

if (nimiVal === undefined || nimiVal.trim() === '') {
alert('No value');
return null;
}
return nimiVal;
}

更新

我尝试了答案中的代码。行比 Bootstrap 模式宽度更宽。宽行变得比表格更宽:

enter image description here

如何解决这个问题?如何强制行出现在模态中?如果行数超出屏幕大小,如何创建滚动条?

最佳答案

为了从行中获取客户的值,您需要处理<tr>的点击事件元素,而不是其父模态。由于行是动态添加的,因此您需要使用事件委托(delegate)来处理此问题。

$('#exampleModal tbody').on('click', 'tr', function() {
var cells = $(this).children('td');
$('#' + options.rowid + '_customername').val(cells.eq(0).text());
$('#' + options.rowid + '_customerid').val(cells.eq(1).text());
$('exampleModal').hide(); // assuming you want to close the modal
});

注意上面应该是一个单独的脚本,但是不清楚什么options.rowid是并且是否可以将其存储在全局变量中或传递给模式,以便可以在上述函数中访问它(请参阅以下建议)

顺便说一句,你的一些函数似乎是不必要的(你每次都重新附加相同的事件),我相信代码可以只是

// declare rowID as a global var and then in the above script you can use
// $('#' + rowID + '_customername').val(cells.eq(0).text());
var rowID;
var table = $('#exampleModal tbody'); // cache it

....
onClick: function (options) {
rowID = options.rowid; // set the row ID
....
$.ajax('api/Customers/FromRegister?' + $.param({ namepart: nimeosa }), {
type: 'GET',
dataType: 'json',
contentType: "application/json",
async: false
}).done(function (data, textStatus, jqXHR) {
table.empty(); // clear any existing rows
$.each(data, function(index, item) {
var row = $('<tr></tr>');
row.append($('<td></td>').text(item.customerName ));
row.append($('<td></td>').text(item.customerId));
table.append(row);
});
$('#exampleModal').modal(); // display the mpday
);
return false;
}

关于jquery - 如何从ajax数据中选择行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39051489/

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