私が使用している -ブートストラップテーブル
data-url
のプロパティにモデルを渡すにはどうすればよいbootstrap-table
ですか?
私の剃刀コード:
@model IEnumerable<MyModel>
<table id="myTable" data-url=......">
<thead>
<tr>
<th data-field="MyProperty">
Some Example
</th>
<th data-field="MyProperty2">
Some Example
</th>
<th data-field="MyProperty3">
Some Example
</th>
</tr>
</thead>
</table>
私のコントローラーコード - 念のため。
[HttpGet]
public ActionResult GetMyValues()
{
List<MyTable> myList = myObj.GetValues();
return PartialView("MyPartialView", myList);
}