Angularjs:在 ui-grid 中无法使用 CellTemplate 数据进行排序

Angularjs: Sorting not working in ui-grid with CellTemplate data

我是 angular ui-grid 的新手。 我正在使用单元格模板显示数据,但排序不起作用。 我想使用 'username'.

对该特定列进行排序

谁能帮我解决这个问题。

{
  field: 'usernameandgender', 
  width: '29%',
  displayName: 'Dr. İsim / Uzmanlık', 
  name:'username' ,
  cellTemplate:'
      <div style="height:47px;">
         <span style="font-size:15px;">{{row.entity.username}}</span> -
         <span style="color:gray; font-weight:normal;font-size:13px;">
              {{row.entity.gender}}
         </span>
         <br/>
      </div>'
 }

请将字段值更改为 'username'。它应该有效。

我用同类型的单元格模板基于true/false显示图标,虽然它在网格中显示锁定图标,但我可以根据true/false过滤。