C
|
cgphp 6/24/2013 |
You can learn more about Autofill here http://xlinesoft.com/phprunner/docs/lookup_wizard.htm |
A
|
angelcause author 6/24/2013 |
Thanks, but even this is not filling the requirements. |
C
|
cgphp 6/24/2013 |
You are not working with lookup wizard. In the "Process" record values" event of the add page, execute the query to fetch the "Employee" and "Designation" values, based on the SESSION variable. |
A
|
angelcause author 6/24/2013 |
You are not working with lookup wizard. In the "Process" record values" event of the add page, execute the query to fetch the "Employee" and "Designation" values, based on the SESSION variable.
|
C
|
cgphp 6/24/2013 |
$rs = CustomQuery("SELECT EmployeeName, Designation FROM RequestForm WHERE EmployeeLogin = '".$_SESSION["UserID"]."'"); |
A
|
angelcause author 6/25/2013 |
$rs = CustomQuery("SELECT EmployeeName, Designation FROM RequestForm WHERE EmployeeLogin = '".$_SESSION["UserID"]."'");
|
C
|
cgphp 6/25/2013 |
I showed you an example. You have to adjust the query to match your needs. |
A
|
angelcause author 6/25/2013 |
I showed you an example. You have to adjust the query to match your needs.
|
A
|
angelcause author 6/25/2013 |
Thanks Christian I added $_SESSION["UserID"] in both the fields properties and changed them to read only so they worked out. |