Jump to content

Sherzod

Moderators
  • Posts

    19683
  • Joined

  • Last visited

  • Days Won

    635

Everything posted by Sherzod

  1. Hello, Search the forum. There were some solutions, if I'm not mistaken.
  2. You can look in the direction of this library https://d3js.org/
  3. Perhaps you are creating a separate pagingBar.
  4. Try displayMsg config, default value: 'Displaying {0} - {1} of {2}'
  5. For example: procedure TMainForm.UniFormCreate(Sender: TObject); begin with UniDBGrid1 do if WebOptions.Paged then ClientEvents.UniEvents.Values['pagingBar.beforeInit'] := 'function pagingBar.beforeInit(sender, config){'+ ' config.afterPageText = "of {0}";'+ // '}' end;
  6. These configs: beforePageText 'of {0}' afterPageText 'Page' firstText 'First Page' lastText 'Last Page' nextText 'Next Page' prevText 'Previous Page' refreshText 'Refresh'
  7. Hello, When starting the application? Or will the "texts" also change at runtime?
  8. Well, the principle of implementation is approximately the same as in this post.
  9. Hello, You cannot use VCL MediaPlayer in UniGUI!..
  10. 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...
  11. Hello, Please see the related demo: \FMSoft\Framework\uniGUI\Demos\Desktop\Session Idle Timeout
  12. 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...
  13. Synchronizing with the server...
  14. 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(); } }) });
  15. Hello, One possible solution... 1. CustomCss: .customToolBar .x-btn-icon-el { height: 24px !important; width: 24px !important; } 2. UniToolBar.LayoutConfig.Cls = customToolBar
  16. I'm sorry I forgot. I was able to do not for micro mode by adding and removing css classes.
×
×
  • Create New...