根据视口更改边界字段可见状态

发布于 2024-11-26 18:56:48 字数 564 浏览 3 评论 0原文

我有一个带有许多边界字段的网格视图。我正在尝试使某些边界字段可见或不可见,具体取决于屏幕的宽度。我到处都看过,并且尝试了 visible="<%=javascript:widthFunction()%>"

        function widthFunction(){
            viewportWidth = window.innerWidth;
            if(viewportWidth > "500")
                return true;
            else {return false;}

显然这不起作用。我尝试将类似的代码放在我的代码后面,但这需要 DataBind 的东西,这是行不通的,因为

解析器错误消息:数据绑定表达式仅在具有以下属性的对象上受支持 数据绑定事件。 System.Web.UI.WebControls.BoundField 没有 DataBinding 事件。

如何解决这个问题?

I have a gridview with a number of boundfields. I'm trying to make it so that some boundfields are visible or invisible depending on the width of the screen. I've looked everywhere, and i tried visible="<%=javascript:widthFunction()%>" where

        function widthFunction(){
            viewportWidth = window.innerWidth;
            if(viewportWidth > "500")
                return true;
            else {return false;}

Clearly that's not working. I tried putting similar code in my code behind, but that requires the DataBind thing, which that won't work because

Parser Error Message: Databinding expressions are only supported on objects that have
a DataBinding event. System.Web.UI.WebControls.BoundField does not have a DataBinding
event.

How can this be solved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文