Hello Tony,
small bug exists in the line of code
if(cm.formoptions != null) { nm = cm.formoptions.label; }
The variable cm is array here, so the line should be fixed to
if(cm.formoptions != null) { nm = cm.formoptions.label; }
Best regards
Oleg
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top