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
285
webnumericedit spin buttons rendering issue
posted

Hi Support,

Below is how the webnumeric edit renders in IE7.

Here is the html code:

 <igtxt:WebNumericEdit ID="deligates" runat="server" CssClass="appNumeric" DataMode="Int"
                                        EnableAppStyling="True" HorizontalAlign="Left" MinValue="0" StyleSetName="Office2007Blue"
                                        Height="20px" Width="80px">
                                        <SpinButtons Display="OnRight" />
                                    </igtxt:WebNumericEdit>

 

Can you help please?

Regards,

1st Consulting

Parents
No Data
Reply
  • 24497
    Suggested Answer
    posted

    Hi,

    I copied your codes to aspx in my test website and appeared correctly. However I do not have content of appNumeric.
    It is possible that page contains some settings which modify appearance of editor. If your page contains global css classes which affect TABLE, TR, TD, INPUT, IMG that it can be a problem. That can be padding, margin, font-size, line-height, etc. Try to test editors without those classes. Also parent html elements may affect appearance and if editors are located in initially invisible container, then it can be a reason as well.

    I suggest you test following:

    Add to your website a temporary aspx, copy there those codes directly into <form> and view page in browser. I expect that it will appear correctly.
    Next you may increase complexity of aspx by moving editors in containers which are used by your original application, add possible custom css classes (maybe links), etc.

    At some point on a particular "step" you will probably get your current appearance and you should figure out what causes issue.

Children
No Data