Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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: 4581
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 76 times
Been thanked: 536 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: 377
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