有人知道如何格式化flexigrid上的列吗?
http://turbogears.org/2.0/docs/main/ToscaWidgets/Cookbook/FlexiGrid.html
colModel没有看到任何格式化参数
我想做一些简单的事情,例如用“ {0:dd MMM yyyy}”格式化日期列
最佳答案
设置要设置格式的列的process属性,如下所示:
colModel: [
{display: "ID", name: "id", width: 40, sortable: true, align: "center", process: procMe},
{display: "Title", name: "title", width: 180, sortable: true, align: "left"}
],
请注意以下过程:第一个列上的procMe,然后:
function procMe(celDiv,id) {
$(celDiv).html("Some formated text/icons/pics or whatever here");
};
我现在没有办法尝试,但是我认为它应该可以工作,如果有任何错误,我只是从内存中写了它,而我可能已经忘记了一些东西,对不起。
希望能帮助到你...