Jump to content

Sherzod

Moderators
  • Posts

    19654
  • Joined

  • Last visited

  • Days Won

    634

Everything posted by Sherzod

  1. It was nice watching you are developing such an application
  2. 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)); } } }); }
  3. 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;
  4. Sorry which edition are you using? Trial edition?
  5. Hi, What component are you using as a container? UniPanel, ...?
  6. To do this, I think you need to have one more property on the server side too for synchronization.
  7. Also without the double quotes : // To remove Key procedure TMainForm.UniButton3Click(Sender: TObject); begin UniButton3.JSInterface.JSCallGlobal('localStorage.removeItem', ['lastname']); end;
  8. 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;
  9. Sherzod

    Documents viewer

    There is no standard component on UniGUI for this, but you can try to search on the forum about this question.
  10. Sherzod

    Documents viewer

    Hello, Type in the search bar: pdf
  11. ShowProgress('Please Wait...'); UniSession.AddJS('Ext.WindowManager.getActive().el.down(".x-progress").hide();'); ...
  12. Здравствуйте, Хотите чтобы оставалась только "строка состояния"?
  13. Hi, Sorry for the late reply I saw your testcase and I have tested Can you please open a ticket in support portal? http://unigui.com/support/support-portal
  14. Hi, I will check and analyze your questions
  15. Sherzod

    Documents viewer

    Thank you for your interest in UniGUI! You can also see the demo examples: \FMSoft\Framework\uniGUI\Demos Online demo: http://prime.fmsoft.net/demo/desktop/mdemo65.dll
  16. Hello, Can you please specify which edition and build of UniGUI are you using? Yes
  17. Sherzod

    Documents viewer

    Hello, Can you please specify which edition and build of UniGUI are you using at the moment? Yes
  18. procedure TMainForm.UniStringGrid1Click(Sender: TObject); var _Value : String; grid: TUniStringGrid; begin grid := (Sender as TUniStringGrid); with grid do if (Row >= 0) then begin _Value := Cells[Col, Row]; if _Value = '1' then _Value := '2' else if _Value = '2' then _Value := '1' else _Value := '1'; Cells[Col, Row] := _Value; end; end;
×
×
  • Create New...