このページの最終変更日 2011年8月6日
午後 02:22:33
WebGrid GetHtml
WebGrid GetHtml でgoogle
Formatting in the WebGrid
http://forums.asp.net/p/1585570/4012135.aspx
に『・・・・・・・・grid.Column("PublishDate",format:@<text>
@if(!String.IsNullOrEmpty(@item.PublishDate)) {
<span>@Convert.ToDateTime
(@item.PublishDate).ToShortDateString()</span> }
</text> )・・・・・・・・・・・』とある。
⇒
ASP.NET MVC で WebGrid を最大限に活用する
http://msdn.microsoft.com/ja-jp/magazine/hh288075.aspx
に『・・・・・・・・1.grid.Column("Name",
2. format:
@<text>@Html.ActionLink((string)item.Name, 3.
"Details", "Product", new { id =
item.ProductId },
null)</text>),・・・・・
1.grid.Column("Name", 2.
format: item => Html.ActionLink((string)item.Name, 3.
"Details", "Product", new { id = item.ProductId },
null)),・・・・・・・・・・・・』とある。
⇒カラムのフォーマットができる。表示まで。行編集、行選択、行削除のグリッドはテーブル
タグを使う。カスタムヘルパーにする?
⇒
このページの最終変更日 2011年8月6日
午後 02:22:33