Jump to content

Hayri ASLAN

Moderators
  • Posts

    1578
  • Joined

  • Last visited

  • Days Won

    134

Everything posted by Hayri ASLAN

  1. Hello I can't reproduce this error. This must be related your browser settings.
  2. Merhaba Bunun için çalışıyoruz. Tek sorun server kısmı.
  3. Merhaba Tum sessionlari dolasip istek gonderseniz bile client tarafindan bir istek gelmedigi surece herhangi bir guncelleme olmayacaktir. Bu is icin en mantiklisi websocket kullanmak.
  4. Hello Please use below code. procedure TdtFormTest.act_downloadExecute(Sender: TObject); begin UniSession.SendFile(UniServerModule.FilesFolderPath+ 'dressimages\L02\L0201001506_1.jpg'); end;
  5. Hello Do you have any error in the console?
  6. Hello WebOptions.Paged:= False
  7. Hi Are you sure you installed professional edition? This will happen if you have trial edition
  8. Due to security reasons,the browsers are not letting you document.execCommand("paste") There is no solution
  9. https://stackoverflow.com/a/53448633/2176869 Calling document.execCommand("paste") is not supported by "reasonable" browsers, because of security concerns as it might enable the script to read sensitive data (like passwords) from the clipboard. This is the compatibility matrix of document.execCommand("...") concerning clipboard events: "copy" "paste" "cut" IE OK OK n/a Edge OK n/a OK Firefox OK n/a OK Chrome OK n/a OK
  10. Hi It is implemented. You will get it with the next build.
  11. Hello Can you create a test case? How can we reproduce this?
  12. As per new chrome update (From Google Chrome 47), getUserMedia() is no longer supported in chrome browser over http:// (Unsecure Origin) , It will work on https:// (Secure Origin) For development purpose, 1.localhost is treated as a secure origin over HTTP, so if you're able to run your server from localhost, you should be able to test the feature on that server. 2.You can run chrome with the --unsafely-treat-insecure-origin-as-secure="http://example.com" flag (replacing "example.com" with the origin you actually want to test), which will treat that origin as secure for this session. Note that you also need to include the --user-data-dir=/test/only/profile/dir to create a fresh testing profile for the flag to work. https://stackoverflow.com/a/34237216/2176869
  13. Hello This is in our 2021 roadmap. We will add this functionality.
  14. Hello We are currently implementing Leaflet.Draw to UniMap
  15. Hello Please use UniServermodule.CustomMeta
  16. Can you check below code? with unilabel1, jsinterface do jsconfig('cls', ['app-h3- app-color-primary']);
  17. Hello With your other topic, i will add leaflet draw to unimap.
  18. Hello I'm working on it but it may take time.
  19. Hello This is in our roadmap. We will add this feature.
  20. Hello Please try below code procedure TMainForm.DBGridAfterLoad(Sender: TUniCustomDBGrid); begin with UniDBGrid1, JSInterface do JSCallDefer('getSelectionModel().selectAll', [], 100 ); end;
  21. Hello Can you paste custom css here? You added it as image
  22. Hi Are you able to reproduce with below demo? http://prime.fmsoft.net/demo/touch/mdemo.dll/m
  23. Hello You can change it from UnistringGrid->Columns-> Title for title height you can check below post. If you want to show 2 lines in the title, you can use HTML in title so you can define something like "First Line<br>Second Line
×
×
  • Create New...