Jump to content

Sherzod

Moderators
  • Posts

    19811
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. I couldn't reproduce too, I tested on multiple browsers (FF, Chrome, Opera, IE...)
  2. Hi, Can you reproduce your issue with ClientDataSet for example and attach?
  3. 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/
  4. Hi, Can you please attach screenshots?...
  5. Try to make a simple testcase for this
  6. 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;
  7. Correct link: http://www.unigui.com/download/docman
  8. Hi, Can you please explain in more detail what you wanted ?!
  9. 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;
  10. Start with the latest build!
  11. Are you using trial edition?!
  12. 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...
  13. Hi, Please, can you attach screenshots, how it looks on the desktop and mobile?
  14. Добрый день, Простите, уточните еще раз пожалуйста что Вы хотели Что Вы имеете в виду ?!
  15. You can open a ticket in support portal
  16. Good morning, Are you using an editor?
  17. Добрый день, В этом случае, Вам нужно обратить внимание на свойство Layout Попробуйте установить на fit
  18. Hi, Try this config: function beforeInit(sender, config) { config.backText='back!'; }
  19. Hi, Can you try this?: UniDBGrid -> ClientEvents -> ExtEvents ->... function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { if (columns[0].isSortable()) { columns[0].sort('ASC') } }
  20. Hi, Can you check it again? Maybe you missed something
  21. Hello, Sorry, can you explain in more detail, what "problem" do you have ?!
  22. Hi, You can try this: procedure TMainForm.UniFormCreate(Sender: TObject); begin UniMenuButton1.JSInterface.JSAddListener('click', 'function(me){me.maybeShowMenu()}'); end; Best regards,
×
×
  • Create New...