Jump to content

KingOrmon

uniGUI Subscriber
  • Posts

    491
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by KingOrmon

  1. Hi, I have a embed wep app using unigui touch in a delphi native app. Using a simple TWebBrowser on TForm. All works well except when use PDF viewer and click on print button. Printing dialog not show. If I execute web app using native navigator directly (safari,...) works ok. The problem happen on android and ios. Any idea ?
  2. Hello The problem is that scrollend not fires under android device redmi 9 chrome, on iphone and web works well
  3. I attach a modified fish demo. FishFact (DBListGrid).zip
  4. Reviewing it I see that this condition never happens on android if (scroller.getMaxPosition().y == c) using console log I get values like this: scroller.getMaxPosition().y = 4295 c = 4294.9032344 Is it normal ?
  5. The problem is that scrollend not fires under redmi 9 chrome, on iphone and web works well
  6. Nothing special, Place a UnimDBListGrid1 and add event: function afterCreate(sender) { let scroller = sender.getScrollable(); if (scroller) { scroller.on('scrollend', function(a, b, c) { if (scroller.getMaxPosition().y == c) { var store = sender.getStore(); console.log(store.count()); if ( store.count() % 100 == 0 ) ajaxRequest(sender, 'zAjaxScrollEnd', []); console.log(store.count() % 100); } }) } }
  7. @Sherzod Hi, I have noticed that scrollend event not firing on Android devices using chrome. Any idea ?
  8. But service workers requiere a native app on mobile ?
  9. Hi, I need to save geo location (latitude and longitud) using javascript using a timer with 1 min interval (saves the point each 1 min) Works but when mobile device is locked or enter in background mode geo location is stopped. Any ideas ?
  10. Hi, I have noticed that scrollend event not firing on Android devices using chrome. Any idea ?
  11. How can I scroll to end a TunimDBListGrid ? function afterCreate(sender) { let scroller = sender.getScrollable(); if (scroller) { scroller.on('scrollend', function(a, b, c) { if (scroller.getMaxPosition().y == c) { ajaxRequest(sender, 'getProducts', []); // get product list scroller.scrollTo(0, 10000000, []); //it does nothing } }) } }
  12. Code works, but I looking for native pinch zoom if possible
  13. Hello, With last built, set TUnimTabPanel.TabBarVisible := false has not effect. Bar buttons are shown. Regards
  14. Hello, I would like show a screen form or html while app loads completely. I don´t want use screenmask for this purpose. thank you
  15. The problem is that TunimDBListGrid is cleared, and load again all records. Not difference Open/Close Dataset and FetchNext
  16. TunimDBListGrid is closed and refilled in completely with each call to FetchNext not retain previosly records, add by prior FetchNext.
  17. Hi, I would like to add built-in pinch zoom (in / out) for TunimImage and TunimURLFrame Is it possible ?
  18. hello, I would like to add only records fetched to TunimDBListGrid. The problem is that with each call to FiredacQuery.FetchNext; (retrieves 50 rows) entire TunimDBListGrid is refilled. Not only loads last 50 rows added. Any idea ? I don´t want use BufferedStore because not working correctly.
  19. Hello, I would like to detect via JS when user scroll to the end of list. (when list bounces beceause no more data) Any idea ?
  20. Hi, I would like store latitude and longitude from GPS mobile. I need to store when web app is in background too. And when mobile is screen locked any ideas ?
  21. Hello, there is any module or built-in signature capture for desktop/mobile under ext 6.x ? Regards
  22. I refer to a signature capture for mobile/desktop, I see samples in this forum but does not work
×
×
  • Create New...