[CLOSED] Checkbox IndicatorIcon overlay problem

Threaded View

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

    [CLOSED] Checkbox IndicatorIcon overlay problem

    Hi all,
    with the upgrade from V4.4 to V4.5 a problem has occurred with some checkboxes inside <td/>.
    If the <td/> is hidden before the page loads and get showed after, the checkbox's IndicatorIcon is rendered over the checkbox.

    <div>
                <ext:ResourceManager runat="server" />
                <script>
                    Ext.onReady(function () {
                        document.getElementById("tdCheckbox").style.display = 'block';
                    });
                </script>
                <style>
                    .hidden{
                        display: none;
                    }
                </style>
                <ext:Panel runat="server" Height="100" ID="pnlMain">
                    <Content>
                        <table>
                            <tr>
                                <td>
                                    <ext:Checkbox runat="server" IndicatorIcon="Help" FieldLabel="Icon OK" ID="ckOk" />
                                </td>
                            </tr>    
                            <tr>
                                <td class="hidden" id="tdCheckbox">
                                    <ext:Checkbox runat="server" IndicatorIcon="Help" FieldLabel="Icon KO" ID="ckKo" />
                                </td>
                            </tr>    
                        </table>
                    </Content>
                </ext:Panel>
            </div>
    Setting the checkbox width or calling updateLayout() get no effects.
    Any ideas?
    Thank you!
    Last edited by fabricio.murta; Nov 15, 2017 at 2:22 PM.

Similar Threads

  1. [CLOSED] Toolbar overlay error
    By Z in forum 4.x Legacy Premium Help
    Replies: 4
    Last Post: Dec 02, 2017, 12:34 AM
  2. [CLOSED] TextAreafield with an div overlay in front
    By Akpenob in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: May 09, 2014, 6:40 AM
  3. Replies: 4
    Last Post: Jun 10, 2013, 5:54 AM
  4. [CLOSED] IndicatorIcon placement
    By cwolcott in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 20, 2012, 6:40 PM
  5. Window overlay entire Portal page
    By JsonTerre in forum 1.x Help
    Replies: 1
    Last Post: Mar 28, 2011, 11:47 AM

Tags for this Thread

Posting Permissions