I'm creating a small program that will continuously add information to a 
spreadsheet and create several other new spreadsheet based on a set of user 
inputs.  When the user add information it creates a new row and propagated 
the fields with the respective data.  Much like a form but lacks some 
features that I need.

So my question is after creating a blank new row using the following code
   
    selectedWorksheets.setRowCount(selectedWorksheets.getRowCount() + 1);

    selectedWorksheets.update();

I then fetch the row with the following code

     //Fetch newly created row.      

     URL cellFeedUrl = new 
URL(selectedWorksheets.getCellFeedUrl().toString() + "?min-row=" + 
selectedWorksheets.getRowCount());

     CellFeed cellFeed = service.getFeed(cellFeedUrl, CellFeed.class);

I then I want to propagate the row with the users input but the cellFeed is 
empty because the cells in the new row are all null. I've tried playing with

https://spreadsheets.google.com/feeds/cells/tP3Xim7h**********7utDA/od7/private/full?min-row=30

but cant seem to get it to return all cells so that I can edit them.

Thank You.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to