Jump to content

Sherzod

Moderators
  • Posts

    19683
  • Joined

  • Last visited

  • Days Won

    634

Everything posted by Sherzod

  1. Thank you for the update. Can you please make a simple testcase and attach here? And can you upgrade to the latest build!?
  2. For example: procedure TMainForm.UniButton1Click(Sender: TObject); begin //UniSession.AddJS('window.open(''https://www.google.com'', ''_blank'');'); // to open a new window/tab end; UniButton1.ClientEvents.ExtEvents -> function click(sender, e, eOpts) { window.open("https://www.google.com", "_blank"); } ...
  3. You should attach click handler on the client side to prevent popup.
  4. Sorry for the late response. I will check and let you know.
  5. http://forums.unigui.com/index.php?/topic/13534-tunichart-canvas/&do=findComment&comment=72555
  6. http://forums.unigui.com/index.php?/topic/13534-tunichart-canvas/&do=findComment&comment=72555
  7. Can you adjust your forum email address?:
  8. Sherzod

    TUniGrid focus

    For example. SingleForm: MonitoredKeys.Keys
  9. Sherzod

    TUniGrid focus

    Hi, Sorry for the late response. It seems you still do not add Keys to MonitoredKeys. I am analyzing your test case at the moment.
  10. Can you try this? procedure TMainForm.UniButton1Click(Sender: TObject); begin UniURLFrame1.JSInterface.JSCode(#1'.iframe.contentWindow.yourFunction();'); end;
  11. Hello, Please specify which edition of UniGUI are you using? http://unigui.com/explore/matrix/#featurem
  12. Hi, Are you opening a link or html file? If the link, is the link on the same domain?
  13. function window.beforeInit(sender, config) { config.iconCls=""; }
  14. Hi, \FMSoft\Framework\uniGUI\Demos\Desktop\UniMap
  15. Can you make a simple testcase for this?
  16. Hi, Sorry if I initially misunderstood your question. Please, specify again how it should look?
  17. Maybe something like this? CustomCSS: .noborder { border: none; display: grid; } .focuscls { border-bottom-width: 1px; border-bottom-style: solid; } MainForm -> OnCreate: procedure TMainForm.UniFormCreate(Sender: TObject); begin with UniEdit1.JSInterface do begin JSConfig('triggerWrapCls', ['noborder']); JSConfig('inputWrapFocusCls', ['focuscls']); end; end;
  18. Sorry, not yet. Yes of course this is done using CSS. Also, I have not yet found a link with a solution that was on the forum. In any case, we will try to give you a solution.
  19. Yes, I think this should be added by default. We will add this.
  20. procedure TMainForm.UniButton1Click(Sender: TObject); begin UniColorPalette1.JSInterface.JSCall('select', ['FBBC05']); end; ?
×
×
  • Create New...