nijogeorgep / smartgwt

Automatically exported from code.google.com/p/smartgwt
0 stars 0 forks source link

wrong xml remove reponse format? #594

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
on the http://www.smartclient.com/smartgwt/showcase/#featured_restfulds, the 
remove xml response seems be inconsistent with update/add responses.

What is the expected output? What do you see instead?
It looks like:
<response>  
    <data>  <------------------------- this line should be moved down
    <status>0</status>  
    <record>  
        <countryCode>UK</countryCode>  
    </record>  
    </data>  
</response>

It should be:
<response>  
    <status>0</status>  
    <data>  
    <record>  
        <countryCode>UK</countryCode>  
    </record>  
    </data>  
</response>

Original issue reported on code.google.com by derek.li...@gmail.com on 3 Jun 2011 at 11:29

GoogleCodeExporter commented 8 years ago
Fixed, thanks.

Original comment by sanjiv.j...@gmail.com on 21 Jun 2011 at 10:46