<div id="example" class="k-content">
<table id="grid" style="float: left; position: relative">
<thead>
<tr>
<th width ="310px"data-field="FileName">File Name
</th>
<th width ="290px"data-field="ID">File Identifier
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr >
<td class="idRank" >
@item.FileName
</td>
<td class="idRank2" >
@item.ID
</td>
</tr>
}
</tbody>
外部CSSを使用します
table#grid.k-focusable td.idRank
{ width:310px;
}
しかし、それは適用されず、310ピクセル拡大することはできません、何か考えはありますか?それを適用するために私が行う他のcssメソッド