Telerik MVC3グリッドを使用すると、C#、.Net 2010;Telerikグリッド(MVC3)のマルチラインセル
私はかみそりビューでグリッドを持っています。
@(Html.Telerik().Grid<ProductListItem>()
.Name("Grid")
.Columns(columns =>
{
columns.Bound(o => o.Current.Name).Sortable(true).Filterable(false).Width(150);
columns.Bound(o => o.Categories).Sortable(true).Filterable(false).Width(200);
//other column bindings...
})
.DataBinding(dataBinding => dataBinding.Ajax().Select(Model.GridAjaxRequestAction.ActionName, Model.GridAjaxRequestAction.ControllerName))
.Pageable(settings => settings.Total(Model.TotalRow))
.EnableCustomBinding(true)
.Sortable()
.Filterable()
複数行としてグリッドのカテゴリー列を設定している私は何をしたいです。
グリッド内のカテゴリセルが同じであるように、製品には多くのカテゴリが存在することがあります。
Category0
Category1
Category2
私はSystem.NewLineと
でカテゴリ値に参加して、ProductListItem.Categoriesプロパティにこの値を割り当てようとしました。それは変わらない。テキストはまだ単一行です。
ありがとうございます。
ProductListItem.Categoriesプロパティは結合された文字列として来ています。 this.Categories = String.Join( "
"、entity.Categories.Select(o => o.Current.Name));私はテンプレートアドバイスを使ってこれとあなたのアドバイスを試みましたが、それはまだ同じです:/。 – berdem
@berdem - ブラウザでHTMLソースを表示し、複数のカテゴリを持つその表のセルに表示されているものをここに貼り付けることはできますか? – nekno