Setting tm1-multi-line programmatically

I’m having problems setting tm1-multi-line programmatically:

<td ng-repeat="c in page.columns">
<tm1-ui-dbr
        ...
        tm1-multi-line="c.MultiLine"
></tm1-ui-dbr>

In the above example it doesn’t matter whether c.MultiLine is "2"(string) or 2(number) in both cases the attribute is ignored. It works only if hardcoded ("2").

Any way to set it programmatically?

Hi @Roland,

What about “{{c.MultiLine}}” ?

Regards,
Eugene

1 Like

@eugene Thanks that solved the problem!