GridCalculatedColumn 有一个名为“Expression”的属性,它可以包含什么?
GridCalculatedColumn 有一个名为“Expression”的属性,它可能包含什么?
这些都是有效的:
iif(condition, trueResult, falseResult)
{0}*{1}
Convert.ToString({0})
如何格式化表达式的结果?
例如,这不起作用: iif(condition, String.Format"{0:0.00}%", {0}), "NA")
知道表达式可以包含什么吗?
GridCalculatedColumn has a Property called "Expression", what could it contain?
These are valid:
iif(condition, trueResult, falseResult)
{0}*{1}
Convert.ToString({0})
How to format the result of the expression?
e.g. this doesn't work:
iif(condition, String.Format"{0:0.00}%", {0}), "NA")
Any idea what Expression can contain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这与 DataColumn.Expression 具有相同/相似的规则,请参阅:
http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx
----根据评论添加----
请参阅 stackoverflow 上的此线程: 如何将 telerik 网格列绑定到作为列表的子数据对象?
它链接到:
http://www.telerik.com/help/aspnet-ajax/grdbindingtosubobjects。 html
I believe this has the same/similar rules as DataColumn.Expression, see:
http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx
----Added based on comments----
See this thread on stackoverflow: How to bind a telerik grid column to a child data object that is a list?
It links to:
http://www.telerik.com/help/aspnet-ajax/grdbindingtosubobjects.html