项目中使用到ExtremeTable   的 <ec:tree> 标签,其中有ID和描述字段,现在想在页面对这个字段进行排序。可是总是不行,总是先对ID进行排序,然后才按照描述排序。谁能告诉我怎么才能只按描述进行排序? 
jsp页面代码如下 
... 
<ec:tree   identifier="cid"   parentAttribute="pid"   ...> 
    <ec:row> 
        <ec:column   property="cid"   title="编号"   /> 
        <ec:column   property="descr"   title="描述"   /> 
        <ec:column   property="parent.descr"   title="上一级"   /> 
        ... 
    </ec:row> 
</ec:tree> 
...