我在项目中使用Kendo网格。 我正在使用文化脚本进行国际化。 使用该脚本,它根据文化格式化网格中的数字 我想将数字对齐,我怎样才能实现它。 下面是我在格式化数字列的小提琴 http://dojo.telerik.com/ujiSE/12
谢谢, Nupur
答案 0 :(得分:10)
您可以使用列描述中的headerAttributes和Attributes属性来实现此目的。
{
field: "n",
headerAttributes:{ style:"text-align:right"},
attributes:{ class:"text-right" } ,
//template: "<div style='text-align:right'>#= n #</div>",
format: "{0:n}", type: "number"
}
请参阅更新后的fiddle here