Hi,
I am using handsontable angular directive in my project.
normally we define the handsontable as
<ui-handsontable minSpareRows="2" stretchH="'hybrid'" datarows="item in items">
I want to have the values of attributes like minSpareRows from scope varrible like <ui-handsontable minSpareRows="{{minrows}}" stretchH="'hybrid'" datarows="item in items">
I have tried
- {{minrows}}
- ng-attr-minSpareRows="{{minrows}}"
Please guide.