Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Get field values ​​from browseForm

Questions related to customising nuBuilder Forte with JavaScript or PHP.
kev1n
nuBuilder Team
Posts: 4299
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: Get field values ​​from browseForm

Unread post 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());

	});
}
kknm
Posts: 366
Joined: Sat Apr 11, 2020 12:03 am
Has thanked: 3 times
Been thanked: 4 times
Contact:

Re: Get field values ​​from browseForm

Unread post by kknm »

Thanks !
Post Reply