Categories | Question details Back To List | ||
dhtmlxDataProcessor - which sync grid with DB by AJAX calls; I am trying your grid. It works fine, but now I want to save the modified data to database table through the ... I am trying your grid. It works fine, but now I want to save the modified data to database table through the ‘SUBMIT' button of JSP. How do I do that? Can u explain how this dataprocessor works in case of JSP and MySQL. I contain the grid in a form, and when i click 'submit' button, the form data gets submitted. But how do I access the post data and update my DB Please Send me the Details ASAP Regards Udhayabalachandar Answer posted by Support on Mar 27, 2008 05:19 If you preffer to use form submit, you can check form integration extension , it allows to process data as result of normal form submit. http://dhtmlx.com/docs/products/dhtmlxGrid/samples/interaction_other_components/pro_form.html?un=1206617541000 The DataProcessor library uses different way to save data, it not uses direct form submit, but generates its own ajax request to server side script with all necessary data. So instead of submiting data, you need to call something siilar to next dataproc.sendData(); The JSP based sample was sent to you by email. Answer posted by Udhaya on Mar 27, 2008 05:31 Hi Dude... We are working in Struts application.... We want to save the Edited Grid Data in the database if we use dhtmlDataProcessor it is very easy to update in Database... We have the license version. But in the sample the Language is PHP.. When we implement in JSP it doesnt work...We want the simillar sample in jsp... Thank you for your reply.... Regards Udhayabalachandar Answer posted by Support on Mar 27, 2008 06:36 >>When we implement in JSP it doesnt work.. The structure of process is the same for any server side scripting platform. Please check your email - we send you a sample of dataprocessor usage with JSP server side code. |