9

我想从表格中隐藏列切换按钮或列选择器按钮出现在表格上方。我正在使用 jQuery Mobile 版本。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"

但它不能正常工作

4

4 回答 4

13

矿山更专业,使用:

数据模式=“列切换:无”

工作示例:

<!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>

http://jsfiddle.net/Lsoesxtv/1/

于 2015-03-13T13:08:47.247 回答
11

工作示例:http: //jsfiddle.net/Gajotres/pdYre/

CSS:

.ui-table-columntoggle-btn {
    display: none !important;
}
于 2013-07-23T08:21:40.467 回答
2

我找到了一个更简单的解决方案

1)声明以下CSS类

.ui-btn-z {
    display: none !important;
}

2)在table标签上设置这个属性

data-column-btn-theme="z"

应该是这样的:)

于 2014-08-20T03:15:49.690 回答
0

我使用“Gajotres”的回应,但......

适用于所有“按钮表切换”,如果您稍微编辑 .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 >") ;

代码呢?,如果“文本”按钮为空白data-column-btn-text=""...不显示按钮,因此可以决定显示哪个和隐藏哪个

然后只有一点编辑。js不再需要css,你可以选择隐藏按钮的位置

于 2014-03-31T15:42:53.617 回答