Jump to content

Kachar ganyalong

uniGUI Subscriber
  • Posts

    47
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Kachar ganyalong

  1. Do we have that event? I want to know when user switch tab, or switch to other app on mobile browser.
  2. I have knowledge to share to you all, to make unipanel more beauty you can set panel to round by this in ExtEvents function afterrender(sender, eOpts) { sender.setBodyStyle('border-radius','12px'); }
  3. Oh it was my fault, I insert Java in wrong place, thank you
  4. I have this problem too and cannot fix by the above java. so i have to back to unigui production 1425
  5. Thank you, I can https by using IIS with Let’s encrypt now
  6. Thank you so much Leandro, I'm handling a big project now (100-200 concurrent users) app with intensive SQL requests. I used to run Unigui as exe but I found that 40 users is the limited of concurrency. After 40 users it was frozen. I fixed that by running 20 instances of Unigui exe on different ports, that caused the problem of "uploaded files needed to be synced between instances folder". I will try IIS setting. I will be back to report this to benefit other members. But it may take long time cause the project is not yet ready.
  7. Which one can handle more user concurrency? Any one test it? Thank you
  8. Wow, love it so much really elegance
  9. My app is heavy e-test with mysql db +clientdataset and timers
  10. Hello, I meant 1 instance of UniguiApp can service 20 users only, if more than 20 it will freeze. So i have tried to fix this problem by running 10 instances of My Unigui app. Sevice from port 9001 to 90010 then the problem gone
  11. I need to run many instances of Unigui because 1 unigui app can handle about 20 user concurrency. I need to serve multi hundreds. So what is the best way to do it seamlessly ( not showing port number in URL address) with IIS and with nginx. Please see in picture
  12. If I set HTTPS for IIS, does it means the forwarded port from local unigui can react to internet user with https automatically? Please see the picture.
  13. Hello, This is not a problem because I've already know how to fix it by simply reinstall it. But I want to report that when I switched from BOOTCAMP mode (Boot Windows directly on my MAC) , to VM mode (run bootcamp partition inside MAC OS on VMWARE) it reported "License not valid". After that I can fix it by reinstalling. I just want to inform you that I may reinstall UniGui often because my MAC sometimes it error and can't boot into Windows directly so I have to run it as VM. Please don't detect me as license abuser.
  14. Hello, I have found the same problem. The problem fixed by Install all fonts that used by Fastreport
  15. Thank you, I love Firebird so much, It is my DB of choice but since customer's IT staff they are more familiar with MySQL. I have to change to MariaDB on bigger project
  16. Hi Fenix, How many uniGuiserver instance did you use for 2000 connections,(was it only 1)?
  17. thank you for your result, BTW I have already bought it, so sad. Do you know about the maximum connections count that MariaDB can handle? I'm working on a project that more than 100 PC connect to<-->unigui<-->MariaDb but I dont want to use middleware, it's too complicated.
  18. But the sound Tag in uniHTMLFrame works on all devices. I wonder why it happened on Video only?
  19. no matter what i use (jplayer or HTML 5 Video tag), they work well on PC browser and android browser. but they did not work on iOS device. The sample C:\Program Files (x86)\FMSoft\Framework\uniGUI\Demos\Touch\Video have same problem too.
  20. Please give me simple way to POST string to URL.
  21. Thank you, all done. first i put this in PageControl -> ClientEvents -> ExtEvents -> [Ext.tab.Panel [tabPanel]] -> afterrender fn: function tabPanel.afterrender(sender, eOpts) { var _height = 35; sender.tabBar.setHeight(_height); sender.tabBar.items.each(function(el) { el.setHeight(_height) }) } then put this in each UniTabsheet extevents function afterrender(sender, eOpts) { sender.tab.btnInnerEl.setStyle("fontSize", "12"); } Works! now I'm in love with javaScript.
  22. thank you, I can set the bigger font by UniSession.AddJS(UniTabSheet1.JSName + '.tab.btnInnerEl.setStyle("fontSize", "12")'); but still can not set the size of UniTabSheet bar height
×
×
  • Create New...