Page 2 of 2

Re: Get field values ​​from browseForm

Posted: Wed Apr 07, 2021 8:34 am
by kev1n
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());

	});
}

Re: Get field values ​​from browseForm

Posted: Wed Apr 07, 2021 10:16 am
by kknm
Thanks !