[SOLVED] Add To Cart Button |
6/19/2013 8:58:30 AM |
PHPRunner General questions | |
C
chrispa author
hi inspired from that |
|
C
|
cgphp 6/19/2013 |
In the "Before client" section you could use a javascript prompt box: var number = prompt("Please enter a number",""); |
C
|
chrispa author 6/19/2013 |
In the "Before client" section you could use a javascript prompt box: var number = prompt("Please enter a number","");
|
C
|
cgphp 6/19/2013 |
Before client var number = prompt("Please enter a number","");
$requsitions->ROB = $params['number'];
|
C
|
chrispa author 6/19/2013 |
Before client var number = prompt("Please enter a number","");
$requsitions->ROB = $params['number'];
|
C
|
cgphp 6/19/2013 |
User could enter anything (not only numbers) in the prompt box. |
![]() |
Admin 6/19/2013 |
"Validate" means "check if entered value is actually the number and falls into some range" i.e. you should not allow entering any text there, do not accept negative numbers or numbers large than 1000 etc. |
C
|
chrispa author 6/19/2013 |
"Validate" means "check if entered value is actually the number and falls into some range" i.e. you should not allow entering any text there, do not accept negative numbers or numbers large than 1000 etc. Read more about validation at http://xlinesoft.com/blog/2013/05/21/validation-in-phprunner-and-asprunnerpro-applications/
|