Posted 29 September 2017, 8:06 pm EST
Hi, I must be missing something. I have a column template like this:
<wj-flex-grid-column header="Total" binding="Qty" is-read-only="true" width="80"> <wj-flex-grid-cell-template cell-type="Cell"> {{$item.Qty}} </wj-flex-grid-cell-template>
that when it renders just shows $item.Qty
I also tried $row, etc. it doesn’t seem like the template is substituting for any $ tokens. The grid is working fine otherwise. I have gone through all the examples, seems like everything I have done matched the examples. One difference is I ma using angular 1.5 components as opposed to just controllers and $scope.
But this is working fine (It hides when the variable is false):
<wj-flex-grid-column header="Margin" binding="ProfitPercent" width="80" visible="{{$ctrl.parent.jobItem.IsInstall}}"> </wj-flex-grid-column>
What am I missing?
