When I trying to change value of Department using combobox (http://theformspider.com/learningcenter/tutorial-4-how-to-build-a-combobox/) it update all rows this the value I choose before. I put a 'save' button assained to save procedure: procedure save is begin api_application.doCommit; end; How can solve this problem and update only 1 row that I choose? |
Hi Emil, In Formspider, there is not a built-in API committing changes in a single row existing in a datasource, you can either commit all rows in a single datasource or in a group datasources using In your case, you can create a new datasource definition based on Employees table retrieving data for a single employee. You can reflect the changes made on the grid row to be committed to this single row datasource and commit it through the If it doesn't help, can you please give details about your usecase? Regards, Ibrahim Can I do this with setValue and getValue in sql update command and then commit this change? if yes then how must I code it?
(04 Dec '12, 06:10)
Emil
Hi Emil, Committing the changes in sql update is doable but we strongly do not recommend this implementation. You can achieve your goal with the following;
Regards, Ibrahim
(04 Dec '12, 10:27)
Ibrahim Sand... ♦♦
|