Jump to content

Sherzod

Moderators
  • Posts

    19789
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Hi, Html editor uses HTML <font> size Attribute <font size="number">, number - A number from 1 to 7 that defines the size of the text. Browser default is 3.
  2. Merhaba, UniServerModule -> AutoCoInitialize = True
  3. ... http://forums.unigui.com/index.php?/topic/10443-dbgrid-action-column/&do=findComment&comment=54758
  4. Sorry, maybe I do not understand correctly, but I couldn't reproduce in this case too If you mean a browser, not an application window, then this is impossible
  5. I couldn't reproduce too, I tested on multiple browsers (FF, Chrome, Opera, IE...)
  6. Hi, Can you reproduce your issue with ClientDataSet for example and attach?
  7. Hi, Also this post can help you: http://forums.unigui.com/index.php?/topic/10175-changing-color-of-modal-resizeable-forms-border-and-title-bar/
  8. Hi, Can you please attach screenshots?...
  9. Try to make a simple testcase for this
  10. Also you can try this: procedure TMainForm.UniFormCreate(Sender: TObject); begin UniNumberEdit1.JSInterface.JSAddListener('blur', 'function(me){if (Ext.isEmpty(me.value)) {me.setValue(0)}}'); end;
  11. Correct link: http://www.unigui.com/download/docman
  12. Hi, Can you please explain in more detail what you wanted ?!
  13. Hi, Can you try these events?: procedure TMainForm.UniNumberEdit1ChangeValue(Sender: TObject); begin if (Sender as TUniNumberEdit).Text = '' then (Sender as TUniNumberEdit).Value := 0; end; Or procedure TMainForm.UniNumberEdit1Change(Sender: TObject); begin if (Sender as TUniNumberEdit).Text = '' then (Sender as TUniNumberEdit).Value := 0; end;
  14. Start with the latest build!
  15. Are you using trial edition?!
  16. Hi, Need to analyze, but in this case you can try to use this approach: procedure TMainForm.UniFormReady(Sender: TObject); begin UniSimplePanel1.JSInterface.JSCall('header.hide', []); UniSimplePanel2.JSInterface.JSCall('header.hide', []); end; For example, for UniPanel4 1. 2. UniPanel4 Layout -> column function beforeInit(sender, config) { config.scrollable=true; } Try...
  17. Hi, Please, can you attach screenshots, how it looks on the desktop and mobile?
  18. Добрый день, Простите, уточните еще раз пожалуйста что Вы хотели Что Вы имеете в виду ?!
  19. You can open a ticket in support portal
  20. Good morning, Are you using an editor?
  21. Добрый день, В этом случае, Вам нужно обратить внимание на свойство Layout Попробуйте установить на fit
  22. Hi, Try this config: function beforeInit(sender, config) { config.backText='back!'; }
×
×
  • Create New...