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!
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.
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.
Sorting columns not possible?
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 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