Jump to content

steve589

uniGUI Subscriber
  • Posts

    39
  • Joined

  • Last visited

Posts posted by steve589

  1. you wrote:

    " We will implement lots of this components to core unigui in uniGUI equinox "

    for when is this scheduled?

    I'm interested in the component to create a walkthrough (showing little panels...)

    is it possible to get this in advance?

    thanks

    stefan

  2. How can I determine if my app is running in SSL-mode using HyperServer?

    I have a landing-page which is accessible in non-SSL-mode (http://...)

    When the user clicks the Login-button I switch to SSL via

                UniSession.UrlRedirect('https://www.xxx.com');

    so in my app I need to know if it is started with or without SSL, but when I ask

             UniSession.URL

    it gives me always "http://..." - probably because the communication between HyperServer and my app is http and not https.

    How can this be done?

    Thanks for help

     

  3. Has anyone tried IIS 10 on Windows Server 2016?

    I followed all the steps in uniGUI Developer Manual, but all I get is:

    HTTP Error 503. The service is unavailable.

    Are there some more adjustments necessary for IIS 10?

    Please help

    version 1.90.0.1495 on Delphi 10.1.2 Berlin

     

    finally managed to get it running with 32bit dll!

    But with 64bit dll it is not working - any ideas?

  4. sorry, I forgot to write that I do not want to acutally move the panel to the node in the treeview.

    Think of a list of music-tracks that I want to sort into a playlist (several of them are shown in the treeview).

    So I have to detect on which node of the treeview something was dropped (it could be a panel or any other component)

  5. Hi,

    I have a TUniScrollBox in a border layout with Region set to "center", so it takes all the space.

    In this Scrollbax I put a TUniPanel set to Align=alTop. This works, but the width is always only the width of the Scrollbox at designtime.

    Am I doing something wrong or is there a way to have the Panel take all the width or is this a bug?

    Thanks for help

    Stefan

  6. Hi,

     

    I want to use TRESTRequest.ExecuteAsync to get content from another website and insert it into my uniGUI frontend.

     

    In ExecuteAsync you can specify a procedure which is called when the request returns.

     

    So I created:

        procedure TUniMainModule.UpdateContent;

        begin

           ...

        end;

     

    but trying to compile this:

     

        RESTRequest.ExecuteAsync(UpdateContent);

     

    is not possible: 

    [dcc32 Error] MainModule.pas(385): E2010 Inkompatible Types: 'TProc' und 'Procedure of object'

     

    ExecuteAsync expects a TProc whereas in uniGUI there is procedure of an object.

     

    When I implement a procedure outside of MainModule, I cannot call any object or procedure of the session.

    Writing the response to a DB and polling for new datasets in MainModule is no good solution...

     

    How can I solve this?

     

    Thanks for help

    Steve

     

  7. Hi,

     

    in Ext there is a property "floatable" for panels on a border-layout, which is a very good feature.

     

    Clicking a collapsed panel doesn't change the layout of the page, it only floats above it.

    Very nice for sidebars that are only needed occasionally.

     

    Can you implement this some time in uniGUI?

     

    Regards

    Steve

  8. Hi, maybe this is a bug:

     

    I have some controls (TUniLabel, TUniButton) on a TUniPanel.

    When I call UniPanel1.ComponentCount the result always is 0.

    On a Form the result is correct.

     

    Can someone please check this?

    Thanks...

×
×
  • Create New...