Page 1 of 1
Sorting columns not possible?
Posted: Wed Oct 16, 2019 9:34 pm
by Timo
Hi,
Is sorting supposed to work on a touch screen device? No sorting takes place if I tap on it and as a result the function nuSortBrowse is not executed.
Re: Sorting columns not possible?
Posted: Thu Oct 17, 2019 3:09 am
by kev1n
To enable sorting, add this code under Setup -> Header:
Code: Select all
if ("browse" == nuFormType()) {
$("[id^='nusort']").on("touchstart", function() {
nuSortBrowse(String($(this).attr("id")).split("_")[1]);
});
}
Re: Sorting columns not possible?
Posted: Thu Oct 17, 2019 3:58 am
by admin
Timo,
This is now fixed and available on SourceForge.
https://sourceforge.net/projects/nubuilder/files/
Steven
Re: Sorting columns not possible?
Posted: Thu Oct 17, 2019 5:46 pm
by Timo
Great, thanks!
Re: Sorting columns not possible?
Posted: Thu Oct 17, 2019 11:53 pm
by admin
.