Jump to content

Sherzod

Moderators
  • Posts

    19726
  • Joined

  • Last visited

  • Days Won

    639

Everything posted by Sherzod

  1. Hello, Which edition and build of UniGUI are you installing?
  2. Hi, It is not correct: function beforeInit(sender, config) { config.scrollable := true; } Must be: function beforeInit(sender, config) { config.scrollable = true; }
  3. Нет, на данный момент можете применить только одну тему
  4. Add to Uses list: uses ..., StdCtrls;
  5. Hi, Can you make a simple testcase for this?
  6. Здравствуйте, Да эти компоненты (Widget Columns) имеются в нашей дорожной карте
  7. .x-css-shadow { box-shadow: none !important; } But it will also affect other forms.
  8. Hello, Time goes by so fast... Please remind the question once again...
  9. It was nice watching you are developing such an application
  10. Maybe you wanted like this? UniStringGrid -> ClientEvents -> ExtEvents -> function afterrender: function afterrender(sender, eOpts) { var me = sender; var view = me.normalGrid.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.getId(), delegate: '.x-grid-cell', trackMouse: true, listeners: { beforeshow: function updateTipBody(tip) { var tipGridView = tip.target.component; var record = tipGridView.getRecord(tip.triggerElement); tip.update(record.get(tip.triggerElement.cellIndex + me.lockedGrid.getColumns().length)); } } }); }
  11. Hi Dominique, You can try these configs: procedure TMainForm.UniFormCreate(Sender: TObject); begin // UniPanel - "main" panel, layout - accordion with UniPanel.JSInterface do begin JSConfigObject('defaults', 'collapseToolText', ['']); JSConfigObject('defaults', 'expandToolText', ['']); end; end;
  12. Sorry which edition are you using? Trial edition?
  13. Hi, What component are you using as a container? UniPanel, ...?
  14. To do this, I think you need to have one more property on the server side too for synchronization.
  15. Also without the double quotes : // To remove Key procedure TMainForm.UniButton3Click(Sender: TObject); begin UniButton3.JSInterface.JSCallGlobal('localStorage.removeItem', ['lastname']); end;
  16. This is correct, without the double quotes : // To Set the Key "lastname" procedure TMainForm.UniButton1Click(Sender: TObject); begin UniButton1.JSInterface.JSCallGlobal('setItem', ['lastname', 'Smith'] ); end;
  17. Sherzod

    Documents viewer

    There is no standard component on UniGUI for this, but you can try to search on the forum about this question.
×
×
  • Create New...