InputNumber
InputNumber
エディタテンプレート
このサンプルは、ComponentOne が提供するエディタテンプレートの使用方法を示します。
機能
説明
このサンプルは、ComponentOne が提供するエディタテンプレートの使用方法を示します。
このテンプレートは、ComponentOne MVC プロジェクトテンプレートと共にそのまま使用できます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcExplorer.Models; namespace MvcExplorer.Controllers { public partial class InputNumberController : Controller { public ActionResult EditorTemplates() { var model = new Sale { ID = 101, Start = new DateTime(2014, 4,4,17,0,0), End = DateTime.Now, Amount = 1000}; return View(model); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 | @model MvcExplorer.Models.Sale < div > < label > @Html .Raw(Resources.InputNumber.EditorTemplates_Text2)</ label > @Html .EditorFor(m => m.Amount) @Html .EditorFor(m=> m.Start, "Time" ) @Html .EditorFor(m => m.End) </ div > @section Description{ < p > @Html .Raw(Resources.InputNumber.EditorTemplates_Text0)</ p > < p > @Html .Raw(Resources.InputNumber.EditorTemplates_Text1)</ p > } |