Telerik MVCグリッドコンポーネントを使用して、グループ化可能なグリッドにajaxを使用してレンダリングしています。グリッドは細かい並べ替えやページングをレンダリングしますが、Ajaxのリフレッシュは機能しますが、グループ化を行おうとするとレンダリングがすべて失敗します。添付されているのは、グリッドのスクリーンキャップで、グループ化の前後にあります。Telerik MVCグリッドが適切にグループ化されていません
グリッドの定義は非常に単純明快です:
<div id="tabAccounts" class="tab_content">
@(Html.Telerik().Grid<SharedSimpleAccountListViewModel>()
.Name("AcctGrid")
.Columns(columns =>
{
columns.Bound(x => x.Number)
.HeaderHtmlAttributes(new { @style = "text-align: center;" })
.HtmlAttributes(new { @style = "text-align: center;" });
columns.Bound(x => x.ProviderOrganizationFriendlyName)
.Title("Provider");
columns.Bound(x => x.Name)
.Title("Account Name");
columns.Bound(x => x.BillingLocationName)
.Title("Location");
})
.Groupable()
.DataBinding(db => db.Ajax().Select("CustomerAccounts", "Customers", new { id = Model.Id }))
.Pageable(pager => pager.PageSize(50))
.Sortable()
)
</div>
コントローラのアクションは、(それだけで検索がリポジトリからだから、私は貼り付けられません)もストレートフォワードです。 Telerikのデフォルトテーマを使用しているので、カスタムCSSはありません。必要なスクリプトがページに含まれていることを確認しました。
グループ化後にHTMLを調べると、テーブルに変更が加えられたように見えますが、グループのテーブル行要素は追加されていません。グループ化の試行後に存在するHTMLは次のとおりです。
<table cellspacing="0">
<colgroup>
<col class="t-group-col">
<col><col><col><col>
</colgroup>
<thead class="t-grid-header">
<tr>
<th class="t-group-cell t-header"> </th>
<th style="text-align: center;" scope="col" class="t-header">
<a href="/Customers/Details/408?AcctGrid-orderBy=Number-asc" class="t-link">Number</a>
</th>
<th scope="col" class="t-header">
<a href="/Customers/Details/408?AcctGrid-orderBy=ProviderOrganizationFriendlyName-asc" class="t-link">Provider</a>
</th>
<th scope="col" class="t-header">
<a href="/Customers/Details/408?AcctGrid-orderBy=Name-asc" class="t-link">Account Name</a>
</th>
<th scope="col" class="t-header t-last-header">
<a href="/Customers/Details/408?AcctGrid-orderBy=BillingLocationName-asc" class="t-link">Location</a>
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;">00002</td>
<td>Acme</td>
<td>Test account 2 </td>
<td class="t-last">Location 2</td>
</tr>
<tr class="t-alt">
<td style="text-align: center;">00001</td>
<td>3M</td>
<td>Test account 1</td>
<td class="t-last">Location 1</td>
</tr>
</tbody>
</table>
何が起こっているのでしょうか?
どこの画面に表示されますか – Tassadaque
おっと...私はTelerikにクロス投稿し、コピーする前にはスクラブしませんでした。私はそれ以来、私はそれをここに掲載できるようになる前に、それを整理しなければならない解決策を考え出しました。 –
@Jush、Ahem ..これには解決策がありますか?私はそれを見たいと思う。 – Levitikon