Feature request: Hide table not assigned
-
Could we have a way to hide the 'Not assigned text? Or have it default to 0-100%.
-
anything happen to this? - I would like it to go away too...
-
@Lindon Yes, it was fixed.
const var Table1 = Content.getComponent("Table1"); Table1.setTablePopupFunction(function(v){ return "HELLO"; });
-
@d-healey great! OK so how do I keep the percentage display...?
-
Turns out it gives two parameters, x and y. So you should be able to turn that into a percentage.
const var Table1 = Content.getComponent("Table1"); Table1.setTablePopupFunction(function(x, y){ Console.print(x + ":" + y); });
-
@d-healey oh really neat - thanks mate.