This topic is locked

PHPRunner 9.0 build 26987

8/6/2016 9:45:58 AM
PHPRunner General questions
T
tangtang author

field setting
validate as : regular expression

regexp : ^((?=.\d){1,})(?=.[A-Z].*).{8,}$
In PHPRunner 9.0 build 26897, I got error
RunnerAll.js:289 Uncaught TypeError: Runner.getCustomLabel is not a function
Befor build 26897, It works.
Please Help, Thanks.

Myr0n 9/6/2016



field setting
validate as : regular expression

regexp : ^((?=.\d){1,})(?=.[A-Z].*).{8,}$
In PHPRunner 9.0 build 26897, I got error
RunnerAll.js:289 Uncaught TypeError: Runner.getCustomLabel is not a function
Befor build 26897, It works.
Please Help, Thanks.


I have almost the same issue

PHPRunner 9.0 build 27012
I created a plugin to validate with Regex in C:\Program Files\PHPRunner9.0\source\include\validate

and the error is "GetCustomLabel is not defined"

Myr0n 9/6/2016



I have almost the same issue

PHPRunner 9.0 build 27012
I created a plugin to validate with Regex in C:\Program Files\PHPRunner9.0\source\include\validate

and the error is "GetCustomLabel is not defined"


I solved my issue editing the file C:\Program Files\PHPRunner9.0\source\include\common\runnerJS\Util.js

I added a semicolon at the end of the line 1221

In my plugin I wrote Runner.getCustomLabel("LABEL1");
now works, including the regex multiple languages.