Anthony,
I observe one more thing, as I have launched record Info page from other page using below statement:
<Button type="button" name ="setting_button" id="setting" disabled="disabled"
onClick = 'window.location="{{=URL('default', 'record_config', args=[row.record_id])}}";'>
So upon clicking on button , it is launching record_config page , first it will call record_config() function and I am passing record_id to fetch the data about the record and display on the record_config page , so record_config page will display all data about the record( for e.g record_id, record_name etc...)
Now what is my observation is : the URL of record_config page, it is showing like:
http://127.0.0.1:8000/record_App/default/record_config/45326699
where the number (45326699) indicates the record_id.
One test i have done :
I have written one javascript function with alert message and calling from onclick of the save button on the record_config page, but it is not invoking the javascript function so I am suspecting the above URL is different from record_config page, may be some temporary page is getting created with these values.
what I understood is this page is not record_config page that's why it is not calling onclick of the button , hence not calling javascript, JQuery stuffs also.
Please provide your inputs on this.
Regards,
Amit