Jump to content

Sherzod

Moderators
  • Posts

    19805
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Hello, You can simply create a desktop application and try to test it on a mobile device too ... ?
  2. Without changing the Font Style ?
  3. Hello, Can you please explain what do you mean?
  4. The file is not completely downloaded, can you please try again ?
  5. Sherzod

    DBGrid Multiselect

    Hello, UniDBGrid -> Options -> dgDontShowSelected = True
  6. Hello, Sorry, if I understand you correctly, you can use bodyCls of the LayoutConfig... 1. UniHTMLFrame -> LayoutConfig -> bodyCls = myframe 2 CustomCSS: .myframe { height: 100%; margin: 0; background-repeat: no-repeat; background-attachment: fixed; background-image: linear-gradient(#E2FFA3, #C5DE8E); max-height: 100%; top: 100px; position: static; font-family: "helvetica"; }
  7. Of course, you can use the desktop application on mobile devices, but to use the mobile UI you must create a mobile application too.
  8. Hello, Sorry, can you please explain in more details?
  9. Hello, One possible solution: UniComboBox2 1. function beforeInit: function beforeInit(sender, config) { Ext.apply(sender, { multiSelect: true, plugins: [] }); } 2. function afterCreate: function afterCreate(sender) { sender.newCheckBoxPlugin = new Ext.create('Ext.ux.form.plugin.CheckComboBox'); sender.newCheckBoxPlugin.init(sender); }
  10. Hello, One possible solution: procedure TMainForm.UniFormReady(Sender: TObject); begin UniDBGrid1.JSInterface.JSCall('getSelectionModel().resumeEvents', []); end;
  11. Здравствуйте! Пожалуйста отправьте запрос в портал поддержки. Как обходное решение, попробуйте использовать этот код...: grdInboxData -> ClientEvents -> ExtEvents -> function store.datachanged: function store.datachanged(sender, eOpts) { sender.grid.getView().refresh(); }
  12. Hello, First of all you can try to set the font for the form and for elements ParentFont := True
  13. Hello, One possible solution, try 1. UniServerModule -> CustomCSS: .customTree .x-grid-item-focused .x-grid-cell-inner:before { border: none; } 2. UniTreeView -> ClientEvents -> UniEvents -> function beforeInit: function beforeInit(sender, config) { config.cls='customTree'; }
  14. You can try to use this approach too, UniServerModule -> CustomCSS: .x-grid-cell-inner { white-space: initial; }
  15. Hello, First of all, can you please specify, which edition and build of UniGUI are you using ?!
  16. Ok, Thanks for the update Can you make a simple testcase for this? Or maybe you forgot to assign the name to the component?
  17. Thank you! First of all, can you please adjust your forum email address? : http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  18. Sorry which edition? Are you using a trial edition?
  19. Hello, Can you specify which edition and build of UniGUI are you using?
×
×
  • Create New...