Jump to content

Rav

Members
  • Posts

    89
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Rav

  1. Thanks for the answer, pity.
  2. And can they be compiled and installed under newer Delphi versions?
  3. As far as I understand UniGui is being developed linearly, dropping older versions without support and offering a new version to install instead. But what if I prefer to use a version with 4.2.5 ExtJs? Is there way to buy it with some support?
  4. Setting the ReadOnly property to true makes the trigger buttons to disappear. Is there a workaround?
  5. Thanks! I have tried make client sorting, it works but partially - column is sorted but only for the first group ( I have UniDBGrid with grouped view). Is it possible just emulate column click?
  6. Hello, Is it possible to set in UniDBGrid the initial sorted columns (without first clicking a column)?
  7. The latest trial. Sorry, found an error - I call session methods from another session. Thanks
  8. Hello, I get the exception "TExtAbstractComponent.setDisabled requires explicit var declaration" when opening a new session in a browser
  9. Rav

    Audio stream

    Hello, I have an audio stream in the application that is filled with data once per second. Is it possible to listen to it without saving to a file?
  10. Any code in UniServiceModule, OnStop handler (e.g. "sleep(1000)") causes Windows Service Manager to show error box with message "Cannot stop the service". The OnStart event works properly. Latest trial, berlin 10.1.
  11. Thanks! That works perfect
  12. I have the same problem, font boldness can be removed by changing the FontStyle, but underlined font stays the same
  13. hello, How can TUniImageList be deprecated if it's got a feature the TUniNativeImageList's not? I mean automatic splitting long image file into multiple images.
  14. Hello, There is a property Autosize in VCL TPanel. Is it possible to make the UniContainerPanel to behave the same way provided its AlignmentControl is uniAlignmentClient?
  15. Hello, Small bug. Frame's ShowHint when setting to true at run-time doesn't affect its children
  16. Hello, Demo application shows UniDBGrid with columns that contain either text or image. Is it possible to show image and text in one cell?
  17. Rav

    Global UniSession

    Hello! What is the point of using global UniSession from uniGUIApplication module? Is it safe to use this UniSession from global procedures? Or global procedures should be avoided? E.g. I want to make a global procedure reading data from cookies, can I use UniSession.UniApplication.Cookies safely?
  18. Hello, Action's AutoCheck doesn't work, the "Checked" property does not change after execution.
  19. Hello, I tried to save and restore UniDBGrid columns visibility like this: for cb := 0 to dbg.Columns.Count - 1 do with dbg.Columns[cb] do UseFields[cb] := Visible; ............................ for cb := 0 to dbg.Columns.Count - 1 do with dbg.Columns[cb] do Visible := UseFields[cb]; ............................. Then found weird thing that after some actions (e.g. opening another dataset) the property "Visible" of ALL columns even invisible of this dataset becomes "True". Actual columns visibility remains unchanged. Version uni-0.99.96.1321 (with 0.99.95 version the situation is the same)
  20. Hello, For moving columns in UniDBGrid I have added the code: function beforeInit(sender, config) { config.enableColumnMove = true } It works fine, but when I wanted to save (when session ends) and restore (when session is started) the columns order, found that no client info regarding columns order is sent to the server. Do I need to create such functionality manually using JS? If yes how to do it? Thanks!
  21. Hello, Is it possible to make the image in TUniImage look like disabled image on the button? In VCL app for this purpose I usually create a grayed copy of the image. Also found some issue (bug?): When I want to change TUniImage by assigning different images from TUniImageList like this: im: TUniImage; ilMain: TUniImageList; b: Boolean; ............... if b then ilMain.GetIcon(102, im.Picture.Icon) else ilMain.GetIcon(101, im.Picture.Icon); the code works successfully (image is visually changed) only once, all the following code executions don't do anything, the image stays the same, though GetIcon always returns true.
  22. Hello, Is there possible to add in TUniServerModule module a property like Terminated or a method Terminate which stops Application.Run loop? Application.Terminate doesn't work. First I thought that when I buy the license with sources I will add such termination way myself but I have just looked through the feature matrix and found that the sources does not include server modules so I won't be able to do it.
  23. Farshad, can I show the trial UniGui app to the customer without installing Delphi?
  24. Yes, I wanted to show the customer Web interface based on UniGui and if he finds it suitable to buy it
×
×
  • Create New...