Table and button problem

I have a table where students input numbers, when students hit after the last entry, all of the help buttons reveal themselves. Is there a way to prevent this?

I see the buttons even before. You need to put hidden sinks for the buttons.

hidden: not(isBlank(table.cellContent(1,1)) or isBlank(table.cellContent(1,2)) 
or isBlank(table.cellContent(2,1)) or isBlank(table.cellContent(2,2)) )

In the CL for the table or each button?

Each button needs it. To hide any particular component, that component needs a hidden sink.

Thank you for your help