Jump to content

Sherzod

Moderators
  • Posts

    19632
  • Joined

  • Last visited

  • Days Won

    633

Everything posted by Sherzod

  1. OK, try to use like this: function window.afterrender(sender, eOpts) { Ext.onReady(function() { ConvertNumberToPersion(); }); function ConvertNumberToPersion() { persian = { 0: '۰', 1: '۱', 2: '۲', 3: '۳', 4: '۴', 5: '۵', 6: '۶', 7: '۷', 8: '۸', 9: '۹' }; function traverse(el) { if (el.nodeType == 3) { var list = el.data.match(/[0-9]/g); if (list != null && list.length != 0) { for (var i = 0; i < list.length; i++) el.data = el.data.replace(list[i], persian[list[i]]); } } for (var i = 0; i < el.childNodes.length; i++) { traverse(el.childNodes[i]); } } traverse(document.body); } }
  2. Thanks. Have a nice day!
  3. Hello, Very interesting. That's what I found on the Internet... “The latest versions of Raspbian OS have a completely modern Chromium browser capable of correctly displaying even complex web pages. So if you need to display Jira tickets, stock quotes of your company, train schedules, or at least the weather forecast, Raspberry Pi can handle such a task. It's simple enough and does not require any programming, you just need to run Chromium in kiosk mode, hide the mouse cursor and turn off the screensaver. "
  4. Hello, Please adjust your forum email address.
  5. Hello, Sorry, Can you make a specific example for your case?
  6. Can you make a simple testcase for this?
  7. http://forums.unigui.com/index.php?/topic/8946-passing-clients-apparent-public-ip-to-unigui-session-on-login-button-click/&amp;do=findComment&amp;comment=72178
  8. Hi, There is no way for a web app to accurately determine the client IP address. You can identify the user, in the simplest case, through cookies.
  9. If I understand you correctly. Well, when you use calculated fields, it’s better to set this field as not editable.
  10. Maybe, something like this? MainForm.Script: window.addEventListener('unload', function(){ document.cookie = "reloaded=yes" });
  11. Hi, Once again in brief, what do you want to achieve?
  12. Hello, Thank you for your interest in UniGUI. Can you please specify, which edition and build of UniGUI are you using?
  13. Можете ли Вы также проверить, и на других демо проектах?
  14. Мы проверим, Вы тестируете используя Opera?
  15. Better use OnReady, OnAfterShow events for this.
  16. Hello, And what if you will use OnKeyDown, OnKeyPress events!? function keydown(e, t, eOpts) { ajaxRequest(this.grid, ......) }
  17. Hi, Can you please explain? For what purpose...?
  18. http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/&amp;do=findComment&amp;comment=32086
×
×
  • Create New...