How could I insert or add a record to a joined file in DataTable Editor.
As an example, I have 2 files Payroll and Stock Contribution file.
The Payroll file would be used as the main driver file, it contains all employees.
The Stock Contribution file contains records only if an employee has made a dollar amount contribution. (joined file)
The front-end DataTable would contain data from both files.
If the employee does not have a record in Stock Contribution file the column for dollar amount would be 0.00 (this column would be available for inline editing).
If dollar amount is entered, I would need to insert the record into the Stock Contribution file.
If the employee does have a record in Stock Contribution file and the column for dollar amount was changed, I would need to update the dollar amount field in the Stock Contribution file.
I would use an Ajax call from the front-end script to call a server-side script (SSP) which would perform this function.
Are there any examples of this architecture I can refer to?