Jump to content

Hayri ASLAN

Moderators
  • Posts

    1638
  • Joined

  • Last visited

  • Days Won

    149

Hayri ASLAN last won the day on May 10

Hayri ASLAN had the most liked content!

About Hayri ASLAN

Contact Methods

  • Website URL
    http://hayriaslan.net

Profile Information

  • Gender
    Male
  • Location
    Toronto - Canada

Recent Profile Visitors

20079 profile views

Hayri ASLAN's Achievements

Advanced Member

Advanced Member (4/4)

511

Reputation

  1. Which deployment method you are using: Standalone EXE, Windows Service, Apache, or IIS?
  2. You can’t update the UI from a background thread in UniGUI unless there is a UI context. You must either synchronize back to the session (e.g. ShowMask + UniSession.Synchronize) or update the UI via WebSocket.
  3. Can you try below solution? Grid -> ClientEvents -> ExtEvents -> viewReady function viewready(sender, eOpts) { var view = sender.getView ? sender.getView() : sender; view.el.on('mouseover', function(e){ var inner = e.getTarget('.x-grid-cell-inner', 5, true); if (!inner) return; var el = inner.dom; var txt = el.textContent || el.innerText || ''; inner.set({'data-qtip': Ext.String.htmlEncode(txt)}); }); }
  4. Hello Please make sure you are using Unim components like UnimLabel or UnimPanel. You have a desktop component in your mobile form right now.
  5. You have 2 options either use servermodule.custommeta to add your script directly like "<script src="your-script.js" defer></script>" or use UniAddJSLibrary('YOUR_JS_URL', True, [upoPlatformBoth, upoAsync, upoDefer]);
  6. Merhaba Eğer sistem TLS 1.3 gerektiriyorsa, IIS ve DLL kullanmaniz gerekiyor. Servis SSL TLS 1.2 üzerinde çalışıyor
  7. Hello, Please try the following settings in UniMainModule.
  8. Hello Please download version 1.95.0.1606 — the issue has been resolved in this build.
  9. Hello, Hypergrid will get lots of updates.
  10. Hello You can use LayoutConfig.Margin
  11. Hello, You can't change forceFit dynamically in ExtJS.
  12. You need to call this onCreate.
  13. We will look into this.
  14. Which deployment mode are you using? ISAPI, Apache, Service?
  15. hello, please create a simple test case.
×
×
  • Create New...