Hi
From DataTable trying to get the value of the first cell in the selected row. Please advise.
I've tried several cases, but without success.
This example should work, but there is no result.
From DataTable trying to get the value of the first cell in the selected row. Please advise.
I've tried several cases, but without success.
B4X:
$("#example").on("click", "tr", function() {
var $name = $(this).children(":first").text();
});
This example should work, but there is no result.