itognet Posted January 30, 2017 Posted January 30, 2017 Based on the Hybrid project. I can add more forms to the project. But how do I show them, directly by calling http://127.0.0.1:8077/Form1 http://127.0.0.1:8077/Form2 http://127.0.0.1:8077/mForm1 http://127.0.0.1:8077/mForm2 ? Quote
skafy Posted January 31, 2017 Posted January 31, 2017 U don't. U can add parameter but your'll have too open form depending on parameter inside the MainForm (redirect from mainform depending on parameter value) Quote
itognet Posted January 31, 2017 Author Posted January 31, 2017 As I understand the concept, you can have multiple webpages served by the same stand-alone server. For example, the Hybrid project, it DO serves THREE different webpages at the same time. One webpage for the mobile One webpage for the desktop One page for the serverstatus ( 127.0.0.1:8077/server ) I can't see why the uniGui should'nt be able to handle even more webpages. The question is how? Quote
Harry Rogers Posted February 1, 2017 Posted February 1, 2017 I think the confusion is around what constitutes a 'webpage'. In UniGui you can have a pretty much unlimited number of forms (subject to server resources). These can be created/populated/manipulated/destroyed and displayed by server events, client side processing and user actions - From a users perspective these are effectively different webpages. Quote
Administrators Farshad Mohajeri Posted February 4, 2017 Administrators Posted February 4, 2017 This feature will be implemented in future. Quote
mhmda Posted February 26, 2017 Posted February 26, 2017 http://localhost:8077/?username=xxxxx&password=yyyyy&frm=Form2 For now we use this implementation: [Login form] - [MainForm] - [Form1] - [Form2] - [Form3]...... I we want to start the app from specific form we MUST first we hide the login form and display the MainForm and from there we navigate (automatic) to [Form2]. We suggest a property in MainModule for "StartForm" so we could easily display the form for various users and we could change it at run time.. For now it is difficult to use, we must hide LoginForm and show MainForm and from there we add code based on the parameters from client side to show the specific form. Quote
maher Posted February 27, 2017 Posted February 27, 2017 +1 And i suggest a property in MainModule {ShowingLoginForm := false/True} Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.