FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

本论坛已关闭(禁止注册、发帖和回复)
请移步 三石和他的朋友们

FineUI首页 WebForms - MVC & Core - JavaScript 常见问题 - QQ群 - 十周年征文活动

FineUI(开源版) 下载源代码 - 下载空项目 - 获取ExtJS - 文档 在线示例 - 版本更新 - 捐赠作者 - 教程

升级到 ASP.NET Core 3.1,快、快、快! 全新ASP.NET Core,比WebForms还简单! 欢迎加入【三石和他的朋友们】(基础版下载)

搜索
查看: 2513|回复: 3
打印 上一主题 下一主题

ContentPanel.Visible = false不起作用?如何隐藏ContentPanel

[复制链接]
跳转到指定楼层
楼主
发表于 2012-10-18 09:37:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我在做项目的时候想隐藏一部分table 当DropDownList TextChanged事执行代码
希望得到隐藏和显示的效果大家帮帮!!!!!!!!!!!!!!!!!!!!!!

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="My97DatePicker/WdatePicker.js" type="text/javascript"></script>
</head>
<body>
    <form runat="server">
    <extageManager ID="ageManager1" runat="server" />
    <ext:ContentPanel ID="ContentPanel1" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
        ShowBorder="true" ShowHeader="false" Title="ContentPanel">
         a
        </ext:ContentPanel>
            <ext:ContentPanel ID="ContentPanel2" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
        ShowBorder="true" ShowHeader="false" Title="ContentPanel">
        b
        </ext:ContentPanel>
            <ext:ContentPanel ID="ContentPanel3" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
        ShowBorder="true" ShowHeader="false" Title="ContentPanel">
        c
        </ext:ContentPanel>
          <aspropDownList runat="server" ID="ddl">
          <aspistItem Text="a" Value="1"></aspistItem>
             <aspistItem Text="b" Value="2"></aspistItem>
             <aspistItem Text="c" Value="3"></aspistItem>
          </aspropDownList>
    </form>
</body>
</html>
   switch (ddl.SelectedValue)
        {
            case "1":
                ContentPanel1.Visible = true;
                ContentPanel2.Visible = false;
                ContentPanel3.Visible = false;
                break;
            case "2":
                ContentPanel1.Visible = false;
                ContentPanel2.Visible = true;
                ContentPanel3.Visible = false;
                break;
            case "3":
                ContentPanel1.Visible = false;
                ContentPanel2.Visible = false;
                ContentPanel3.Visible = true;
                break;
        }
沙发
 楼主| 发表于 2012-10-19 07:15:56 | 只看该作者
问题解决了 设置    PageManager EnableAjax="false" 后ContentPanel.Visible才起作用
DropDownList SelectedIndexChanged 后才刷新页面
<extageManager ID="ageManager1" EnableAjax="false" AjaxAspnetControls="Label1,Literal1,Literal2_Container"
        runat="server" />
板凳
发表于 2013-4-3 08:21:54 | 只看该作者
这样做可以得到隐藏和显示的效果,但有闪烁,不知三石老大有没有别的方法?
地板
发表于 2013-6-26 16:12:06 | 只看该作者
用hidden=true,false
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-11-28 15:59 , Processed in 0.044743 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表