gpt4 book ai didi

javascript - jTable如何获取选中的行数据

转载 作者:行者123 更新时间:2023-11-30 17:25:38 25 4
gpt4 key购买 nike

如何从我在 jTable 中选择的行中获取数据?例如,我点击第一行,所选行的数据进入我的输入框。

最佳答案

您可以通过注册事件“selectionChanged”来获取选定的元素,如下所示,

$('#tableName').jtable({
selecting: true,
columnResizable: false,
actions: {
},
fields: {
KeyId: {
key: true,
create: false,
list: false
},
Name: {
title: 'Name',
sorting: true
},
Description: {
title: 'Description',
create: false,
list: false
},
StartDate: {
title: 'Start Date'
},
EndDate: {
title: 'End Date'
},
Status: {
title: 'Status',
list: false
}
},
//Register to selectionChanged event to handle events
selectionChanged: function () {
var $selectedRows = $('#tableName').jtable('selectedRows');
$selectedRows.each(function () {

var record = $(this).data('record');
var keyid = record.KeyId;
var name = record.Name;

alert(" KeyId:" + keyid + " Name:" + name);
});
}
});

关于javascript - jTable如何获取选中的行数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24347495/

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