如何在 Telerik Grid 中为 ASP.NET MVC 绑定图像
请让我知道如何将图像静态图像与 Telerik Grid for ASP.NET MVC 中的所有行绑定。
<%= Html.Telerik().Grid(Model.SearchResponse)
.Name("SearchGrid")
.Columns(columns =>
{
//Here i need to bind a static image column//
columns.Bound(grid => grid.Name);
columns.Bound(grid => grid.CaseNumber);
})
.Pageable(true)
%>
Please let me know how to bind a image static image with all rows in Telerik Grid for ASP.NET MVC.
<%= Html.Telerik().Grid(Model.SearchResponse)
.Name("SearchGrid")
.Columns(columns =>
{
//Here i need to bind a static image column//
columns.Bound(grid => grid.Name);
columns.Bound(grid => grid.CaseNumber);
})
.Pageable(true)
%>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过向您的集合中添加另一个模板列来实现:
使用 ASPX
使用 Razor
更新: 如果您希望绑定模型中的图像,请请参阅以下示例:
或者,如果您使用客户端模板,请尝试以下操作:
This is possible by adding another templated column to your collection:
Using ASPX
Using Razor
UPDATE: If you wish to bind images from your model, please refer to the following example:
Or if you're using client templates, try the following:
这样我们就可以将图像与每一行绑定。
我们还可以为这些图像添加动作。
This way we can bind image with every row.
we can also add Action with these images.