Re: Get field values from browseForm
Posted: Wed Apr 07, 2021 8:34 am
To get all values from that row:
Code: Select all
function nuSelectBrowse(e) {
var row = $('#' + e.target.id).attr('data-nu-row');
$("[data-nu-row='" + row + "']").each(function() {
alert($(this).html());
});
}