Jump to content

Sherzod

Moderators
  • Posts

    19636
  • Joined

  • Last visited

  • Days Won

    633

Everything posted by Sherzod

  1. Hello, When starting the application? Or will the "texts" also change at runtime?
  2. Well, the principle of implementation is approximately the same as in this post.
  3. Hello, You cannot use VCL MediaPlayer in UniGUI!..
  4. What is this for? And what do you want to do if this is detected? Well I think based on IP first. And that of course this is the main one. Secondly, if there are ready-made detection methods, use them. Otherwise, you need to come up with a detection method yourself. And they can be different I guess...
  5. Hello, Please see the related demo: \FMSoft\Framework\uniGUI\Demos\Desktop\Session Idle Timeout
  6. Please also look in the console what event is sent to the server, say when you select a cell, some data is sent to the server, for example column number, row number...
  7. Synchronizing with the server...
  8. Try this approach... MainForm.Script: Ext.onReady(function() { document.getElementById(Ext.getBody().id).addEventListener('keydown', function(e) { var cwin = Ext.WindowManager.getActive(); if (cwin && cwin.id == 'messagebox-1001' && e.key != 'Enter') { //other conditions e.preventDefault(); e.stopPropagation(); } }) });
  9. Hello, One possible solution... 1. CustomCss: .customToolBar .x-btn-icon-el { height: 24px !important; width: 24px !important; } 2. UniToolBar.LayoutConfig.Cls = customToolBar
  10. I'm sorry I forgot. I was able to do not for micro mode by adding and removing css classes.
  11. Hello, Maybe this example will suit you?: \FMSoft\Framework\uniGUI\Demos\Desktop\Grid - WidgetColumn2
  12. Sorry, can you please make a simple testcase using standard components?
  13. MainmForm.UniFrameViewBoleto.UnimMemoCopy UniFrameViewBoleto.UnimMemoCopy
  14. If yes, use without MainmForm.
  15. https://www.w3schools.com/js/js_if_else.asp
  16. if (location.columnIndex == 1)
×
×
  • Create New...