web-dev-qa-db-ja.com

jQuery UIテーマとHTMLテーブル

JQuery CSSテーマを使用してHTMLテーブル(CSS)のテーマを設定する方法はありますか?

外観が異なるHTMLテーブルを除き、すべてのコンポーネントは一緒に属しているように見えます。

45
leora

たくさんのリソースがあります:

ThemeRollerをサポートするプラグイン:

jqGrid

DataTables.net

更新:ここに、テーブルのスタイルを設定するものをまとめます。

<script type="text/javascript">

    (function ($) {
        $.fn.styleTable = function (options) {
            var defaults = {
                css: 'styleTable'
            };
            options = $.extend(defaults, options);

            return this.each(function () {

                input = $(this);
                input.addClass(options.css);

                input.find("tr").live('mouseover mouseout', function (event) {
                    if (event.type == 'mouseover') {
                        $(this).children("td").addClass("ui-state-hover");
                    } else {
                        $(this).children("td").removeClass("ui-state-hover");
                    }
                });

                input.find("th").addClass("ui-state-default");
                input.find("td").addClass("ui-widget-content");

                input.find("tr").each(function () {
                    $(this).children("td:not(:first)").addClass("first");
                    $(this).children("th:not(:first)").addClass("first");
                });
            });
        };
    })(jQuery);

    $(document).ready(function () {
        $("#Table1").styleTable();
    });

</script>

<table id="Table1" class="full">
    <tr>
        <th>one</th>
        <th>two</th>
    </tr>
    <tr>
        <td>1</td>
        <td>2</td>
    </tr>
    <tr>
        <td>1</td>
        <td>2</td>
    </tr>
</table>

CSS:

.styleTable { border-collapse: separate; }
.styleTable TD { font-weight: normal !important; padding: .4em; border-top-width: 0px !important; }
.styleTable TH { text-align: center; padding: .8em .4em; }
.styleTable TD.first, .styleTable TH.first { border-left-width: 0px !important; }
60
dochoffiday

dochoffidayの answer は素晴らしい出発点ですが、私にとってはそれをカットしませんでした(CSS部分にはバフが必要でした)ので、いくつかの改良を加えた修正版を作りました。

実際にそれを見て、説明に戻ってください.

JavaScript

(function ($) {
    $.fn.styleTable = function (options) {
        var defaults = {
            css: 'ui-styled-table'
        };
        options = $.extend(defaults, options);

        return this.each(function () {
            $this = $(this);
            $this.addClass(options.css);

            $this.on('mouseover mouseout', 'tbody tr', function (event) {
                $(this).children().toggleClass("ui-state-hover",
                                               event.type == 'mouseover');
            });

            $this.find("th").addClass("ui-state-default");
            $this.find("td").addClass("ui-widget-content");
            $this.find("tr:last-child").addClass("last-child");
        });
    };
})(jQuery);

元のバージョンとの違い:

  • デフォルトのCSSクラスがui-styled-tableに変更されました(より一貫性があります)
  • .live呼び出しは、jQuery 1.7以降の推奨.onに置き換えられました
  • 明示的な条件は.toggleClass(terserと同等)に置き換えられました
  • 表のセルに誤解を招く名前のCSSクラスfirstを設定するコードは削除されました
  • 最後のテーブル行に.last-childを動的に追加するコードは、Internet Explorer 7およびInternet Explorer 8の視覚的な不具合を修正するために必要です。 :last-child をサポートするブラウザの場合、必要ありません

CSS

/* Internet Explorer 7: setting "separate" results in bad visuals; all other browsers work fine with either value. */
/* If set to "separate", then this rule is also needed to prevent double vertical borders on hover:
table.ui-styled-table tr * + th, table.ui-styled-table tr * + td  { border-left-width: 0px !important; } */
table.ui-styled-table { border-collapse: collapse; }

/* Undo the "bolding" that jQuery UI theme may cause on hovered elements
/* Internet Explorer 7: does not support "inherit", so use a MS proprietary expression along with an Internet Explorer <= 7 targeting hack
        to make the visuals consistent across all supported browsers */
table.ui-styled-table td.ui-state-hover {
    font-weight: inherit;
    *font-weight: expression(this.parentNode.currentStyle['fontWeight']);
}

/* Initally remove bottom border for all cells. */
table.ui-styled-table th, table.ui-styled-table td { border-bottom-width: 0px !important; }

/* Hovered-row cells should show bottom border (will be highlighted) */
table.ui-styled-table tbody tr:hover th,
table.ui-styled-table tbody tr:hover td
{ border-bottom-width: 1px !important; }

/* Remove top border if the above row is being hovered to prevent double horizontal borders. */
table.ui-styled-table tbody tr:hover + tr th,
table.ui-styled-table tbody tr:hover + tr td
{ border-top-width: 0px !important; }

/* Last-row cells should always show bottom border (not necessarily highlighted if not hovered). */
/* Internet Explorer 7, Internet Explorer 8: selector dependent on CSS classes because of no support for :last-child */
table.ui-styled-table tbody tr.last-child th,
table.ui-styled-table tbody tr.last-child td
{ border-bottom-width: 1px !important; }

/* Last-row cells should always show bottom border (not necessarily highlighted if not hovered). */
/* Internet Explorer 8 BUG: if these (unsupported) selectors are added to a rule, other selectors for that rule will stop working as well! */
/* Internet Explorer 9 and later, Firefox, Chrome: make sure the visuals are working even without the CSS classes crutch. */
table.ui-styled-table tbody tr:last-child th,
table.ui-styled-table tbody tr:last-child td
{ border-bottom-width: 1px !important; }

ノート

Internet Explorer 7以降、Firefox 11およびGoogle Chrome 18でこれをテストし、完全に動作することを確認しました。私はnot Firefoxの以前のバージョンとChromeまたは Opera の任意のバージョン;ただし、これらのブラウザーはCSSサポートが優れていることで知られています。ここでの機能は、そこでもうまく機能すると思います。

Internet Explorer 7のサポートに興味がない場合は、CSS属性(スターハックで導入)を使用できます。

Internet Explorer 8のサポートに興味がない場合は、last-child CSSクラスの追加とターゲティングに関連するCSSおよびJavaScriptも同様に使用できます。

31
Jon

テーブルでテーマスタイルを使用しないのはなぜですか? i.s.

<table>
  <thead class="ui-widget-header">
    <tr>
      <th>Id</th>
      <th>Description</th>
    </td>
  </thead>
  <tbody class="ui-widget-content">
    <tr>
      <td>...</td>
      <td>...</td>
    </tr>
      .
      .
      .
  </tbody>
</table>

また、コードを使用する必要はありません...

17
Marco Muciño