sitefinity 小部件搜索 table
sitefinity widget search table
我正在创建一个小部件,它将从 API 收集数据,然后填充 html table。我想在 table 的顶部添加一个搜索输入文本,并允许用户搜索 html table 并根据输入过滤结果。在 sitefinity 中最好的选择是什么?
<input type="search" placeholder="Filter Results..." />
<table>
<thead>
<tr>
<th>Name</th>
<th>Meeting Date</th>
</tr>
</thead>
<tbody>
@foreach (BlogsViewModel objBlogs in objBlogs.BlogsViewModelViewModel)
{
<tr>
<td>@objBlogs.Name</td>
<td>@objPanel.Decs</td>
</tr>
}
<tbody>
</table>
我的意思是...KendoUI 是 Sitefinity 的许可部分
我正在创建一个小部件,它将从 API 收集数据,然后填充 html table。我想在 table 的顶部添加一个搜索输入文本,并允许用户搜索 html table 并根据输入过滤结果。在 sitefinity 中最好的选择是什么?
<input type="search" placeholder="Filter Results..." />
<table>
<thead>
<tr>
<th>Name</th>
<th>Meeting Date</th>
</tr>
</thead>
<tbody>
@foreach (BlogsViewModel objBlogs in objBlogs.BlogsViewModelViewModel)
{
<tr>
<td>@objBlogs.Name</td>
<td>@objPanel.Decs</td>
</tr>
}
<tbody>
</table>
我的意思是...KendoUI 是 Sitefinity 的许可部分