[CLOSED] Need to show the login window to the right side and need to show static message to the left.

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] Need to show the login window to the right side and need to show static message to the left.

    Hi all,

    when i open the application i need to show a login window to the right side and need to show static message to the left.
    Please see the attachment(Login.jpg).

    Right now i am using the below code to which login window centers to the panel with out static message.

    <ext:Panel ID="pnlLogin" runat="server" Region="Center">
                    <Listeners>
                        <Resize Handler="CenterWindowOnResize();" />
                    </Listeners>
                    <Items>
                        <nxtwc:NxtWindow ID="loginWindow" runat="server" Closable="false" Resizable="false" Height="200"
                            Icon="Lock" Title="Login" Draggable="false" Width="450" Modal="false" BodyBorder="false"
                            Padding="10" Shadow="None">
                            <Items>
                            </Items>
                       </nxtwc:NxtWindow>
                    </Items>
                </ext:Panel>
    var CenterWindowOnResize = function () {
                if (loginWindow.hidden == false)
                    loginWindow.el.center(pnlLogin.body);
                if (forgotPasswordWindow.hidden == false)
                    forgotPasswordWindow.el.center(pnlLogin.body);
                if (changePasswordWindow.hidden == false)
                    changePasswordWindow.el.center(pnlLogin.body);
    
            }
    Please help me with this. Thank You.
    Attached Thumbnails Click image for larger version. 

Name:	Login.jpg 
Views:	176 
Size:	62.7 KB 
ID:	3773  
    Last edited by Daniil; Jan 31, 2012 at 6:11 PM. Reason: [CLOSED]

Similar Threads

  1. [CLOSED] How to show message prompt with window 'Hide' listener?
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Jul 13, 2012, 2:51 PM
  2. Replies: 2
    Last Post: Jul 12, 2012, 2:06 PM
  3. Replies: 3
    Last Post: Mar 19, 2012, 12:35 PM
  4. Can't show a static text-string ...
    By andersgunnare in forum 1.x Help
    Replies: 0
    Last Post: Jun 09, 2011, 8:49 AM
  5. How to show window in UserControl on client side?
    By dbassett74 in forum 1.x Help
    Replies: 3
    Last Post: May 20, 2009, 7:08 PM

Posting Permissions