跳至内容
菜单
此问题已终结
2 回复
4002 查看

Can anyone knows how to sort a list in mako file for a webkit report?

形象
丢弃
最佳答案

Hi Surendar,

In mako template you can open python code block like this:

<%
      # You can sort your list of records here
%>

I hope this helps :-) Cheers, Petar

形象
丢弃
最佳答案

Webkit report supports Python code, to use the python code in the mako template you can use,

<%
#Python code
%>

Here you can write your python code to sort the data!

形象
丢弃