我想隐藏表格上方的表格中的列切换按钮或列选择器按钮。我正在使用jQuery Mobile ver。 1.3.2。
我正在使用这个:
<table data-role="table" id="table-column-toggle" data-mode="columntoggle" class="ui-responsive table-stroke">
<thead class="pearlHeading">
<tr>
<th data-priority="1">S.No.</th>
<th >Name of the Programme</th>
<th data-priority="2">Campus</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
我删除了
data-role="table" id="table-column-toggle" data-mode="columntoggle"
但它无法正常工作
答案 0 :(得分:13)
更专业,使用:
data-mode="columntoggle:none"
工作示例:
<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<!--<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>-->
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="b" data-role="header">
<h1>Index page</h1>
</div>
<div data-role="content">
<table data-role="table" id="table-column-toggle" data-mode="columntoggle:none" class="ui-responsive table-stroke">
<thead class="pearlHeading">
<tr>
<th data-priority="1">S.No.</th>
<th>Name of the Programme</th>
<th data-priority="2">Campus</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>
答案 1 :(得分:11)
工作示例:http://jsfiddle.net/Gajotres/pdYre/
<强> CSS:强>
.ui-table-columntoggle-btn {
display: none !important;
}
答案 2 :(得分:2)
我找到了一个更简单的解决方案
1)声明以下CSS类
.ui-btn-z {
display: none !important;
}
2)在表标签
上设置此属性data-column-btn-theme="z"
应该是这样:)
答案 3 :(得分:0)
我使用&#34; Gajotres&#34;但是......
适用于所有&#34;按钮表切换&#34;你不能选择&#34;哪个适用, 如果你稍微编辑.js:
jquery.mobile - 1.3.2.min.js(gzip)第6行第11429行
d=a(k.columnBtnText===""?"":"<a href='#"+m+"' class='"+k.classes.columnBtn+"' data-"+l+"rel='popup' data-"+l+"mini='true'>"+k.columnBtnText+"</a>")
jquery.mobile - 1.3.2.js第10872行
if ( event ! == " refresh" ) {
self.element.addClass ( o.classes.columnToggleTable ) ;
if ( o.columnBtnText === "") {
$MenuButton = $(""),
else {
$menuButton = $("<a href='#" + id + "' class='" + o.classes.columnBtn + "' data-" + ns + "rel='popup' data-" + ns + "mini='true'>" + o.columnBtnText + "</a>" ),
}
$ popup = $ (" < div data- " + ns + " role = ' popup' data- " + ns + " role = ' fieldcontain ' class = '" + o.classes.popup + " ' id = ' " + id + "' > < / div >") ,
$ menu = $ (" + ns + <fieldset data-" "role='controlgroup'> < / fieldset >") ;
代码呢? ,如果&#34;文字&#34;按钮为空data-column-btn-text=""
...不显示按钮,因此可以决定显示哪个以及隐藏哪个