
alfr
uniGUI Subscriber-
Content Count
105 -
Joined
-
Last visited
-
Days Won
2
alfr last won the day on June 1 2019
alfr had the most liked content!
Community Reputation
12 GoodAbout alfr
-
Rank
Active Member
Recent Profile Visitors
544 profile views
-
So if you put a breakpoint in the code and step it line by line, everyting works as expected, but not the query?
-
What i meant was that you can’t call anything in the mainmodule from the servermodule. The mainmodule is linked to a specific user, the servermodule is not (singleton). So the sql and the db connection in the servermodule usually needs to be created in the servermodule.
-
Are you sure you don't get any error when starting them? What does the log files say? Nothing?
-
Hi, There is no mainmodule created/linked to the server module, so all objects needs to be located for it in the server module itself. (ie the connection to the db.) //Alf
-
...and you are assigning different ports on them?
-
One option is to instead put the db functions in a datamodule
-
Where is the zip-file with the source?
-
ClientEvents - Must be more tools, information/documentation and features supporting how to work with the ClientEvents/JavaScript within UniGui. (Best practicies)
-
Perhaps an option how to disable back swipe gesture. (The safari solution at least again shows the same page again.) You Should Try this solution in two way : 1) CSS only fix for Chrome/Firefox html, body { overscroll-behavior-x: none; } 2) JavaScript fix for Safari if (window.safari) { history.pushState(null, null, location.href); window.onpopstate = function(event) { history.go(1); }; } Over time, Safari will implement overscroll-behavior-x and we'll be able to remove the JS hack https://stackoverflow.com/questions/30636930/disable-web-page-nav
-
Hi, The default maximum file upload size in IIS7 is 28.6 MB. So needs to be increased by any of the following. https://bobcares.com/blog/iis-file-upload-size-limit/ Regards Alf
-
Seems that the setting variableRowHeight would do the job? Or is it not the right version/available? https://docs.sencha.com/extjs/6.5.3/classic/Ext.grid.column.Column.html#cfg-variableRowHeight https://forum.sencha.com/forum/showthread.php?470059-FIXED-ExtJS-6-5-Scroll-issue-in-grid-with-variable-height-rows
-
Thanks for replying. As I said, we have no need to have a paged grid in this case. But also with a paged grid the problem do occur with quite few records in the page - in the example around 52 rows or so. I assume this is related to the height of row 1 compared to other rows' height. I therefore need some way to handle/get around the problem...