1.Can i use my jqgrid as a html form and i want a xml(output) as we give input to that after updating updated values are in xml with same signature as we give input.
2.it is possible to use lov inside the table.
1.Can i use my jqgrid as a html form and i want a xml(output) as we give input to that after updating updated values are in xml with same signature as we give input.
2.it is possible to use lov inside the table.
You can get the data from the grid for example with respect of getRowData. If you would use the method without additional parameters (see the documentation) the whole grid data will be returned. In case of the usage of local data or loadonce:true
the usage of getGridParam
with the 'data' parameter will be even better.
After you will have the data in an an JavaScript object you can use xmlJsonClass.json2xml
to convert the data to XML. (see this answer for the code example). See additionally this and this another answers which questions I can't currently find.