How to dynamically create a column of buttons
Hi all,
I`m trying to create a dashboard where i will have a DT and in the end of each row/last column i will have a button that refers to that specific row. Tried to create a list of buttons but it's not working. m1 = Button Box("m1", x=3;);
m2 = Button Box("m2", x=3;);
list = {m1,m2};mm =H List Box();for(i=1, i<3, i++,
mm << Append(eval(list[i]));
);
sr=New Window("Summary Results",
TableBox(
stringColB...