Open sam-g-roberts opened 8 years ago
If i set multiple="true" in the code it works as expected when the production flag is present when running gulp
It is trying to evaluate it as an expression on the scope. Because multiple
is not a variable on your scope, it is returning false.
I have the same issue. Replacing multiple by multiple="true" works fine for me. Thanks ;)
Another finding related to it multiple checkbox showing at the header when I implement multiple as follows
multiple="{{vm.total}}"
vm = is my localized scope
This is happening when the value of total
get modified. Eg: after deleting an item from the table, total count will be reduced by 1, then it shows two check box at the header.
when i run the gulp production flag multiple is set equal to the string multiple. When i run gulp normally this does not happen and multiple row selection works as normal.
Any ideas?