如何为列设置 Column-Toggle Table Widget 的默认值?

How to set default value of Column-Toggle Table Widget for a column?(如何为列设置 Column-Toggle Table Widget 的默认值?)

本文介绍了如何为列设置 Column-Toggle Table Widget 的默认值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在玩弄 jQuery Mobile 的 Table Widget.有没有办法可以通过此小部件从表头名称设置列的显示隐藏状态?如果没有这样的方法,那么解决此类问题的最佳方法是什么?

解决方案

jQM 没有为此提供 out-of-the-box 解决方案,因此您必须通过 JS 来完成.column toggle 弹出窗口继承了 tableid 后跟 -popup.您需要在 tablecreate 事件触发以更改 checkbox(es) 属性时定位它.

请注意,只有带有 data-prioritythead 元素会被添加到 column toggle 弹出窗口中.此外,您需要通过 index 使用 .eq() 方法或 :eq()<来定位 checkbox(es)/code> 选择器.

$(document).on("pagebeforecreate", "#pageID", function () {$("#tableID").on("tablecreate", function () {$("#tableID-popup [type=checkbox]:eq(1)")/* 第二个复选框 */.prop("checked", false)/* 取消选中 */.checkboxradio("refresh")/* 刷新 UI */.trigger("改变");/* 触发更改更新表 *

本文标题为:如何为列设置 Column-Toggle Table Widget 的默认值?

基础教程推荐