Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Francisco on Oct 28, 2008 10:11
open dhtmlx forum
Form Integration Does not Work

How do I clear the html cache or something??? It seems to use the old virtual inputs when I send my grid using form integration, therefore it does not use the mygrid.submitOnlyChanged(true); correctly, because is sending everything again with the old virtual inputs as well.

Help please
Cheers
Answer posted by Support on Oct 29, 2008 07:04
If you submit form manually (form.submit()), such an issue can take place. In this case, please, try to use the following approach to submit form:

grid.parentFormOnSubmit();
form.submit();
Answer posted by Francisco on Oct 29, 2008 09:46
I made an ad-hoc code in the php to solve this issue... using hidden columns with state values.