Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
50
RequiredFieldValidator text half hidden when app styling enabled.
posted

When I enable application styling for the web project, validator text is half hidden behind the webgrid cell. Is there any workaround?

Parents
  • 7694
    posted

     Hello,

    Unfortunately I can`t reproduse the issue. I use the NetAdvantage 8.3 and work properly.
    Plsease take a look at the code below:

    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="UltraWebGrid1" runat="server" ErrorMessage="ErrorMessage" EnableClientScript=true Display=Static>
      </asp:RequiredFieldValidator>
        <igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Height="200px" Width="325px"
            DataSourceID="SqlDataSource1">
            <Bands>
                <igtbl:UltraGridBand>
                    <Columns>
                        <igtbl:UltraGridColumn BaseColumnName="CustomerID" IsBound="True" Key="CustomerID">
                            <Header Caption="CustomerID">
                            </Header>                        
                        </igtbl:UltraGridColumn>
                        <igtbl:UltraGridColumn BaseColumnName="CompanyName" IsBound="True" Key="CompanyName">
                            <Header Caption="CompanyName">
                                <RowLayoutColumnInfo OriginX="1" />
                            </Header>
                            <Validators>
                                <igtbl:ValidatorItem  Value="RequiredFieldValidator1"  />
                            </Validators>

                             <Footer>
                                <RowLayoutColumnInfo OriginX="1" />
                            </Footer>
                        </igtbl:UltraGridColumn>
    What am I missing?

Reply Children