Hi,
i am performing this action too many times to not know how to copy selection from first row to the rest, can you advice?
Ah... you want to have same selection in all of the combo boxes as in first one? No idea if you can do it without scripting (if this is a JMP platform it might have button to change values, if custom script someone would have to script it somehow).
I guess you have Table Box() with Col Box filled with Combo Boxes. Below are some ideas you could try:
Names Default To Here(1);
nw = New Window("",
tb = Table Box(
cb = Col Box("select",
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"})
)
)
);
cb << Get; //won't work as it returns list with empty values
cb << Get Text; // could use this and parse result
cb[1] << get selected; // this should work, so you could loop over elements or get references to a list
(cb << XPath("//ComboBox")) << get selected; // my preferred method use XPath to get references and then << get selected for values
Hi, thanks, any solution for non-developers? :)
(not working with code unless i will have to :) )
Ah... you want to have same selection in all of the combo boxes as in first one? No idea if you can do it without scripting (if this is a JMP platform it might have button to change values, if custom script someone would have to script it somehow).