[CLOSED] how to show a hidden fieldcontainer?

Threaded View

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

    [CLOSED] how to show a hidden fieldcontainer?

     <script> 
            var show = function () {
                App.fc_login.show();
            };
        </script>
     <ext:RadioGroup runat="server" AnchorHorizontal="100%" LabelWidth="120" FieldLabel="用户状态" Padding="4">
                                <Items>
                                    <ext:Radio runat="server" FieldLabel="已注册" LabelWidth="50">
                                        <Listeners>
                                            <Change Fn="show"></Change>
                                        </Listeners>
                                    </ext:Radio>
                                    <ext:Radio runat="server" FieldLabel="未注册" LabelWidth="50"></ext:Radio>
                                </Items>
                            </ext:RadioGroup>
       <ext:FieldContainer runat="server" ID="fc_login" Hidden="True">
                                <Items>
                                    <ext:TextField runat="server" FieldLabel="用户名" ID="tf_user"></ext:TextField>
                                    <ext:TextField runat="server" FieldLabel="密码" ID="tf_pass"></ext:TextField>
                                </Items>
                            </ext:FieldContainer>
    fc_login has not show method?
    what's the different tag hidden="true" and visiable = "false"?
    Last edited by Daniil; Mar 23, 2014 at 8:26 AM. Reason: [CLOSED]

Similar Threads

  1. Replies: 4
    Last Post: Jul 17, 2012, 9:33 PM
  2. Replies: 3
    Last Post: Mar 19, 2012, 12:35 PM
  3. Replies: 8
    Last Post: Apr 14, 2011, 4:20 PM
  4. [CLOSED] [1.0] TabPanel show hidden Panel
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Sep 27, 2010, 4:24 PM
  5. Show objects hidden
    By flaviodamaia in forum 1.x Help
    Replies: 2
    Last Post: Jul 28, 2009, 2:02 PM

Posting Permissions