Hi all, I am currently trying to setStatus from an action. The status would be set after I right click and select the action from the relationship grid.
var statusId = aras.setStatus('Downloading.....', '../images/Progress.gif');
return this;


For some reason the status is not being updated accordingly and this is happening only when the method is attached to the action.
Other message Methods are working fine such as:
aras.AlertSuccess('Message Here');
aras.AlertError('Message Here');
aras.AlertWarning('Message Here');
aras.prompt('Message Here', 'Default').then(function(value) {
if (value)
{
//Do somthing after enter text
}
});
Even:
aras.clearStatus();
Any input on this would great!