Hey Khan,

You can't do this with the Lists feed, but you can do this with the Records
feed on a Table.

Here's an example of inserting an empty row:
POST https://spreadsheets.google.com/feeds/tjiJDJGhWFavHDwW_4-Q/records/0
<entry xmlns="http://www.w3.org/2005/Atom";
    xmlns:gsx="http://schemas.google.com/spreadsheets/2006/extended";>
</entry>

Which inserts an empty row at the end of the table.

Thanks,
-Vic



On Tue, Dec 14, 2010 at 8:00 AM, Khan <[email protected]> wrote:

> String c = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"
>
> + "<entry 
> xmlns=\"http://www.w3.org/2005/Atom\<http://www.w3.org/2005/Atom%5C>"
> "
>
> + 
> "xmlns:gsx=\"http://schemas.google.com/spreadsheets/2006/extended\<http://schemas.google.com/spreadsheets/2006/extended%5C>
> ">"
>
> + "<gsx:hello>1</gsx:hello>"
>
> + "</entry>";
>
>
> Is there a way to insert a new row into the first column of a spreadsheet
>
> without a column name like above
>
>
> I tried <gsx>1</gsx> but this results in bad request.
>
>
>
> thanks
>
>
>
>

Reply via email to