Hello
I tried to use Context.writeStatus("Text") in my report.
My code like this:
function main() {
var group = ArisData.getSelectedGroups()[0];
var aModels = group.ModelListFilter( 1 );
for ( var i = 0; i < aModels.length; i++ ) {
Context.writeStatus("(" + (i+1) + "/" + aModels.length + ") " + aModels[i].Name(1049));
}
main();
But progress window is not shown.
Tell me please, how can I use the Context.writeStatus("Text")?
Robert Goldenbaum on
Perhaps your model list is empty ?
var aModels = group.ModelListFilter( 1 ); only gets those models in the group of the type Org chart (and no models from the sub groups)
As you are doing not really anything, this would be quite fast, so it could be possible you don't see the status...
Regards,
Robert