Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

As Dan said, for the first one I've already opened a request on user voice a while ago.

For your secondary question (I think it should have been a separate question fyi): "Also, can I allow the user to select more than one argument in a drop down list?"

You can't, but the workaround is to create a bunch of checkboxes.

Do a loop on all your objects and within the loop you use makeBoolArgument to create a checkbox. While you do so, name the arguments so that you can pick them up later. For example, is_#{object.name}. In the run method, loop again on your objects and retrieve whether it was selected or not by checking for the value of is_#{object.name}.