C
|
cgphp 8/9/2011 |
In the "Process record values" event of the edit page enter this code: $_SESSION['language'] = $values['name_of_the_language_field_in_the_table']; |
![]() |
Sergey Kornilov admin 8/10/2011 |
I would also recommend to check Localizing PHPRunner/ASPRunnerPro applications article for more info and code. |
A
|
arjan author 8/11/2011 |
In the "Process record values" event of the edit page enter this code: $_SESSION['language'] = $values['name_of_the_language_field_in_the_table'];
|
C
|
cgphp 8/11/2011 |
Enter the following code in the Javascript OnLoad event of the edit/add page: this.on('afterSave', function(formObj, fieldControlsArr, pageObj){ |
A
|
arjan author 8/11/2011 |
Enter the following code in the Javascript onload event of the edit/add page: this.on('afterSave', function(formObj, fieldControlsArr, pageObj){
|
C
|
cgphp 8/11/2011 |
Please, could you post a demo link ? |
A
|
arjan author 8/11/2011 |
Please, could you post a demo link ?
|
C
|
cgphp 8/11/2011 |
When you change the language in the dropdown, you should set the language session var. if(isset($_GET['language']) AND ($_GET['language'] == 'English' OR $_GET['language'] == 'Dutch(Standard)')) |