[0.8.2 ] compatibility issue with ie6.0

  1. #1

    [0.8.2 ] compatibility issue with ie6.0

    Hello I've tried to replicate a simple login page using ext.net 0.8.2
    this is the behind code
    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
    
    <%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
    
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>PBLWeb - Procedura di gestione delle Black List</title>
    
      
    </head>
     <ext:ScriptManager ID="ScriptManager1" runat="server">
                
        </ext:ScriptManager>
    
        <ext:Store ID="storeAziende" runat="server" AutoLoad="false">
            <Reader>
                <ext:JsonReader ReaderID="codice">
                    <Fields>
                        <ext:RecordField Name="codice" Type="Int"></ext:RecordField>
                        <ext:RecordField Name="descrizione"></ext:RecordField>
                    </Fields>
                </ext:JsonReader>
            </Reader>
        </ext:Store>
        
    <body>
    
       
          
              <ext:Window 
                ID="Window1" 
                runat="server" 
                Closable="false"
                Resizable="false"
                Height="200" 
                Icon="Lock" 
                Title="Accesso riservato"
                Draggable="True"
                Width="350"
                Modal="false"
                >
                <Body>
                <ext:FormPanel ID="panellogin" runat="server" BodyBorder="false" Border="false" MonitorValid="True"  LabelWidth="150">
                    <Body>
                    
                    
                <ext:FormLayout ID="FormLayout1" runat="server">
                  
                        <ext:Anchor Horizontal="100%">
                            <ext:TextField 
                                ID="txtUsername" 
                                runat="server" 
                                ReadOnly="false"
                                FieldLabel="Username" 
                                AllowBlank="false"
                                BlankText="Lo Username è obbligatorio."
                                
                                 EnableKeyEvents="False" AutoPostBack="False" IDMode="Static" EnableViewState="True" MaxLength="8">
                               
                                <AjaxEvents>
                                    <Change OnEvent="onUsernameChanged" ViewStateMode="Include">
                                        <EventMask ShowMask="True" />
                                    </Change>
                                </AjaxEvents>
                                </ext:TextField>
                        </ext:Anchor>
                        <ext:Anchor Horizontal="100%">
                            <ext:TextField 
                                ID="txtPassword" 
                                runat="server" 
                                ReadOnly="false"
                                InputType="Password" 
                                FieldLabel="Password" 
                                AllowBlank="false" 
                                BlankText="La password è obbligatoria"
                                
                                 
                                MaxLength="20" IDMode="Static" MinLength="8">
                                 
                                </ext:TextField>
                        </ext:Anchor>
                       
                        <ext:Anchor Horizontal="100%">
                            <ext:ComboBox ID="cmbazienda" runat="server" FieldLabel="Azienda"  FieldClass="inputLogin" Editable="False" StoreID="storeAziende" ValueField="codice" DisplayField="descrizione" SelectedIndex="-1" IDMode="Static" AllowBlank="False">
                                
                            </ext:ComboBox>
                        </ext:Anchor>
                       
                    </ext:FormLayout>
                    </body>
                    <Listeners>
                        <ClientValidation Handler="if (valid) {#{btnDoLogin}.enable()} else {#{btnDoLogin}.disable()}" />
                    </Listeners>
                </ext:FormPanel>
                
                </Body>
                <Buttons>
                    <ext:Button ID="btnDoLogin" runat="server" Text="Login" Icon="Accept">
                        <AjaxEvents>
                            <Click OnEvent="LoginClick" >
                                <EventMask ShowMask="true" Msg="Verifica delle credenziali in corso..." MinDelay="1000" />
                            </Click>
                        </AjaxEvents>
                    </ext:Button>
                </Buttons>
              
            </ext:Window>
            
            
          
            
      
        </body>
        
            
    </html>
    everything works fine with ie7, ie8, firefox but using ie6 something goes wrong
    here is a screenshot
    Click image for larger version. 

Name:	Immagine.jpg 
Views:	89 
Size:	64.0 KB 
ID:	1961

    any suggestion?
  2. #2
    Hi,

    Wrap FormPanel by FitLayout
  3. #3
    Quote Originally Posted by Vladimir View Post
    Hi,

    Wrap FormPanel by FitLayout

    yesssssssssssss! that worked!
    thanks

Similar Threads

  1. IE document compatibility meta tag issue
    By zach in forum 1.x Help
    Replies: 1
    Last Post: Jan 17, 2012, 7:04 AM
  2. [CLOSED] Compatibility with chrome and firefox issue
    By imaa in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Dec 20, 2011, 10:42 PM
  3. Compatibility view issue in IE 8 and Mozilla
    By Nagaraj K Hebbar in forum 1.x Help
    Replies: 12
    Last Post: Jan 14, 2010, 11:36 PM
  4. [CLOSED] Browser compatibility issue with Layout
    By Etisbew in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 14, 2009, 9:24 AM
  5. [CLOSED] Browser compatibility issue with Layout
    By Etisbew in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jun 25, 2009, 11:43 AM

Posting Permissions