Jump to content

Sherzod

Moderators
  • Posts

    19759
  • Joined

  • Last visited

  • Days Won

    641

Everything posted by Sherzod

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

    Documents viewer

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

    Documents viewer

    Hello, Type in the search bar: pdf
  7. ShowProgress('Please Wait...'); UniSession.AddJS('Ext.WindowManager.getActive().el.down(".x-progress").hide();'); ...
  8. Здравствуйте, Хотите чтобы оставалась только "строка состояния"?
  9. 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
  10. Hi, I will check and analyze your questions
  11. 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
  12. Hello, Can you please specify which edition and build of UniGUI are you using? Yes
  13. Sherzod

    Documents viewer

    Hello, Can you please specify which edition and build of UniGUI are you using at the moment? Yes
  14. 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;
  15. I don't know why you want to use such code. Yes, you can try to use OnClick event instead
  16. This is normal behavior, because you are using OnSelectCell event
  17. Hello, Can you please specify which edition and build of UniGUI are you using?
  18. Which build are you using? Can you make a simple testcase for reproduce?
  19. Hi, Can you please clarify what problem do you have?
  20. Maybe this post will answer some of your questions:
×
×
  • Create New...