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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Sorting columns not possible?
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 448 times
- Contact:
Re: Sorting columns not possible?
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?
Timo,
This is now fixed and available on SourceForge.
https://sourceforge.net/projects/nubuilder/files/
Steven
This is now fixed and available on SourceForge.
https://sourceforge.net/projects/nubuilder/files/
Steven