Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Posts posted by mhmda

  1. Here you go:

     

    MainForm->Unievents: 

    function window.beforeInit(sender, config)
    {
      config.baseCls='frmNoBorderRadius';
      config.cls='frmNoBorderRadius';
    }
    

    CSS:

    .frmNoBorderRadius {
     border-radius: 0px !important; 
     border: none !important;
    }
    .x-css-shadow {
     -webkit-box-shadow: none !important;
     -moz-box-shadow: none !important;
     box-shadow: none !important;
    }
    

    Result:

     

     aa11.png

  2. 
    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.

×
×
  • Create New...