-1

jeasy-ui の DataGrid には、テーブル ヘッダーとテーブル ボディ データ用の独自のフォント サイズ セットがあります。

私は 3 つの DataGrids を持っていますが、2 つの DataGrids にはデフォルトの font-size が必要ですが、1 つの DataGrids には font-size を明示的に指定する必要があります。

これどうやってするの?

<table class="easyui-datagrid" data-options="singleSelect:true,fitColumns:true" style="height:180px;" id="alertDescDG"> 
    <thead> 
        <tr> 
            <th data-options="field:'label', width:200"></th> 
            <th data-options="field:'value', width:200"></th> 
        </tr> 
    </thead> 
</table>
4

2 に答える 2

1

easyui フォーラムのこの投稿<span>によると、データをタグでラップできます。:)

<table class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px">
    <thead>
        <tr>
            <th data-options="field:'itemid',width:80">Item ID</th>
            <th data-options="field:'productid',width:100"><span style="font-weight:bold">Product</span></th>
        </tr>
    </thead>
</table>
于 2016-04-21T02:01:21.917 に答える
0

style 属性に追加するだけです。

style="font-size:24px;"

またはemsで:

style="font-size:1.5em;"
于 2013-04-04T08:48:26.547 に答える