C
|
cgphp 6/16/2011 |
You could use a custom field: http://xlinesoft.com/phprunner/docs/_view_as__settings_custom.htm |
I
|
imthebest author 6/17/2011 |
You could use a custom field: http://xlinesoft.com/phprunner/docs/_view_as__settings_custom.htm but I'm using PHPrunner 5.3 and I don't know if this feature is supported in PHPrunner 4.2.
|
C
|
cgphp 6/17/2011 |
In the "view as" custom paste this code if the value of the hidden will be the value of the field in the data record: $value = "<input type=\"hidden\" id=\"my_hidden_field\" name=\"my_hidden_field\" value=\"".$value."\" />";
$value = "<input type=\"hidden\" id=\"my_hidden_field\" name=\"my_hidden_field\" value=\"".$data['other_field_name']."\" />";
|