Jump to content

steve589

uniGUI Subscriber
  • Posts

    39
  • Joined

  • Last visited

Everything posted by steve589

  1. Yes, exactly! "guided tour" is the word for it...
  2. as I wrote: I'm interested in the component to create a walkthrough (showing little panels...) I don't know the name of this component, I saw this last year in your demo.
  3. 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
  4. this is not working in 1.90.0.1498 - UniSession.SSL is always False
  5. sorry, this does not work - UniSession.SSL is always false. remember, I'm using HyperServer...
  6. 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
  7. I just ran into the same, you should definitely update the Developer Guide: http://www.unigui.com/doc/online_help/index.html?hyperserver-isapi-module-mode.htm "Open Server Monitor by navigating to http://<yourApp>/server address. (For example: http://localhost:8077/server ) "
  8. 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?
  9. can you provide a link to a working demo please? or: what credentials needed for login on http://hayriaslan.net:8078/ ???
  10. Dragging a component outside its parent is not possible right now. Example: a list of music-tracks you want to sort into a playlist (several of them are shown in the treeview). So you have to detect on which node of the treeview something was dropped. Attached is a VCL-sample with a TListView and a TTreeView VCLdragdrop.zip
  11. should I put this in feature requests?
  12. this is it...VCLdragdrop.zip VCLdragdrop.zip
  13. in VCL you can drag items from a TListView to a TTreeView and determine on which node you dropped the item.
  14. 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)
  15. Hi, I have a TUniPanel in TUniFrame and want to drag it to a node of a TUniTreeView that is outside of that frame. Is this possible? If not, how could this be implemented (with javascript)? Thanks for help stefan
  16. How would I make a testcase for you? I have not done this before...
  17. 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
  18. 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
  19. 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
  20. 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...