Jump to content

shawdown

uniGUI Subscriber
  • Posts

    142
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by shawdown

  1. Really uniGUI is the best.
    Until problems that are not directly related to the component you give support and create solutions.
     
     
    Many thanks Farshad and Delphi Developer.
     

    I implemented a solution for this issue.

    • Upvote 1
  2. Hello Farshad.

     

    I tried this property with some values like.

    1, 10, 100, 1000, 10000, 100000.

     

    Unsuccessfully.

     

    I think I'm doing something wrong but I can not find it.

  3. JSConfig('alwaysOnTop', [True]);

    Correct solution.

     

     

    Hello Farshad and Delphi Developer.
     
    I started using z-index following the indications in this post.
     
     
    But I'd like to do it the right way so I'm trying to use "alwaysOnTop" but it has not worked as intended.
     
    In the MainForm I have a TUniPanel with property "alwaysOnTop = True" but when opening a form this is on TUniPanel.
     
    What better way for this panel to stay on any form that is open?
     
     
    Since then, thank you very much for your attention.
     
  4. Perfect.
    Thank you very much.
     
     

     

    One possible solution:

     

    1.

    type
      TXPopupMenu = class(TUniPopupMenu)
    
      end;

    2. OnFormReady:

    procedure TMainForm.UniFormReady(Sender: TObject);
    begin
      with TXPopupMenu(UniPopupMenu1).MenuControl.JSInterface do
      begin
        JSConfig('alwaysOnTop', [True]);
      end;
    end;
  5. Hello, is it possible to set z-index for TUniPopupMenu?
     
    The problem is that I have a TUniPanel with z-index set to 19001.
    "I can not decrease the z-index of TUniPanel because I need it to stay on the open forms.
    post-715-0-07919400-1525108365_thumb.png
     
     
    If I lower the z-index to 19000 the TUniPopupMenu works perfectly.
    post-715-0-36272100-1525108616_thumb.png
     
     
     
    in my TUniPanel I have the following code where z-index is defined.
    function afterrender(sender, eOpts)
    {
    sender.getEl().setStyle("position", "fixed"); 
    sender.getEl().setStyle("left", "3px"); 
    sender.getEl().setStyle("top", "3px"); 
    sender.getEl().setStyle("z-index", 19001);
    }

     

  6. Hello.

     

    In certain situation of my project I need to create some TUniToolBar in runtime and inside this toolbar "parent" I create some TUniSpeedButton.

     

    Until version 1.0.2.1449 worked perfectly as in the image below.

     

    Note that clusters always exit at the top because they are created and linked to their respective ToolBar first.

     

     

    This version is working perfectly.

    * Always before the separator

     

    post-715-0-87694100-1524661404_thumb.png post-715-0-79430600-1524661412_thumb.png

     

     

    Now look at the images below as it appears in version 1.0.2.1450.

    post-715-0-01390700-1524661647_thumb.png post-715-0-27704800-1524661398_thumb.png

     

     

     

     

     

    Since my thanks and congratulations for the tool and support.

  7. ok, it is cool, Man (Farshad) was developing these components for about 10 years and now you ask him to make components free, because you have several troubles after migrate from extjs4 to BETA extjs6 :) If you ready (or somebody else) to work on developing components for free - I think Farshad can share with you several units in repository and can find work for you. It is not nessesary to make components open source if you want to help. TMS Web - my opinion it is 5-10 years before they became usefull for production. Now it is look like very very alfa version with tons of bugs in demo samples and very slow. And I don't understant which different tmsweb with Intraweb? But intraweb not popular product, I have several time trying to use it and always it finished after a week, but with Farshad's components I was able to create commercial product in several month when I never develop for web before. It is really cool components and bugs fixed very fast comparison to other components where sometimes I'm waiting month while they publish fix in next monthly release. it's also weird to hear about long waiting for fixes from the Delphi developer when Delphi themself has bugs which don't fix for years :) I think it is good idea to ask Embarcadero to make Delphi open source, or ask Microsoft for Windows. You have demo of this components, you have nice sample portal which show you almost all possibilities of UniGUI components and you bought actual version with actual functions. No one promised you that by buying a bicycle today you will have Space-X when the time to renew license will come.

     

     

    This is totally correct.

    :)

  8.  

    Please comment why UniScreenMask does not work
     
    So on the form UniLoginForm posted:
    1) UniButton:
    .OnClick: Sleep (3000)
     
    2) UniScreenMask:
    .AttachedControl: UniButton
    .TargetControl: UniLoginForm
     
    When the user presses the UniButton button, the OnClick event appears, and UniScreenMask executes correctly.
    If you call the method from the code like this: UniButton.Click; , then UniScreenMask does not work. Is this a bug?

     

     

    I have same problem with my login.

  9. Hello, I would like to know if it is possible to drag unigui objects and obviously get the location from where it was dropped and if it was dropped on some other object.

     

    Ex:

    Drag a TUniImage to a TUniPanel.

     

     

    I could not find any examples in the forum.

     

    Thanks in advance.

     

    post-715-0-39153500-1521924849_thumb.jpg

  10. Your idea gave me a direction to solve the problem.
     
    I put this CSS.
    .x-my-trigger {
    background-image: url("/files/detalhes.png");
    }
     
    But the big secret is in the picture.
    I made an image as well as the images of the templates.


    My Image
    post-715-0-47415500-1521752266.png
     
    Template Image
    post-715-0-18949000-1521752272.png
     
     
    Thank you very much Delphi Developer.
  11. I'm trying to use custom icons for the TUniDBComboBox component.

     

    The icons are being set in the triggers. (TUniComboTriggers)

    The custom icon does not become transparent.

    Is there any way to have the same look as the native icons?

     

    post-715-0-84591200-1521576483_thumb.png

  12. Hello friends.
     
    uniGUI Version 1.0.2.1442 Beta.

    How to align caption text left on a TUniSpeedButton?
     
    In the last stable version of unigui I just assigned the caption with html desired.
    But in the beta this does not work.
     
    UniSpeedButton1.Caption := '<div style="text-align: left;">Button Caption</div>';

     

×
×
  • Create New...