i have a problem to get data using list feed in android device plz tell me what is problem?
On Thu, Sep 8, 2011 at 4:15 AM, <[email protected]>wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/google-spreadsheets-api/topics > > - listFeed.getEntries() returns only the rows before the first empty > row <#13249d24ef66199c_group_thread_0> [1 Update] > - Turn api code into gadget for google > sites<#13249d24ef66199c_group_thread_1>[1 Update] > - Adding header line in spreadsheet <#13249d24ef66199c_group_thread_2>[1 > Update] > - Requiring SSL for Documents List, Spreadsheets and Sites > APIs<#13249d24ef66199c_group_thread_3>[1 Update] > > Topic: listFeed.getEntries() returns only the rows before the first > empty > row<http://groups.google.com/group/google-spreadsheets-api/t/224c5e7843f551bf> > > David Bullock <[email protected]> Sep 08 09:43PM +1000 > ^<#13249d24ef66199c_digest_top> > > I believe that's just how it works. It is presumed that a list is a > solid > block with some empty rows at the end. If that doesn't suit, you would > have > to use the cell feed. > > cheers, > David. > > > > > Topic: Turn api code into gadget for google > sites<http://groups.google.com/group/google-spreadsheets-api/t/123774484d043a8a> > > Matt Walker <[email protected]> Sep 08 03:25AM -0700 > ^<#13249d24ef66199c_digest_top> > > Hi, > > I'm new to creating gadgets and want to display a combo chart in a > google > site. I've done some homework and have manipulated the example given in > the > guidance to produce the chart in a web page. > > I'm struggling with the next step. > > How do I use the code I've manipulated in the 'google code playground' > in my > google site? I'd like to reuse this code several times in different > places > and thought a gadget would be the solution. > > Any help would be greatly appreciated! > > > > Topic: Adding header line in > spreadsheet<http://groups.google.com/group/google-spreadsheets-api/t/3a146b8b19cab51b> > > Maxime Mularz <[email protected]> Sep 08 01:21AM -0700 > ^<#13249d24ef66199c_digest_top> > > Hi, > > I had the same problem, to solve it I add the first row with CellEntry > : > > ArrayList<ArrayList<String>> listString; > > // The Headers > for (int j = 0; j < listString.get(0).size(); j++) { > int row = j + 1; > CellEntry newCellEntry = new CellEntry(1, row, > listString > .get(0).get(j)); > spreadsheetService.insert(cellUrl, newCellEntry); > } > //The List > > for (int row = 1; row < listString.size(); row++) { > ListEntry listEntry = new ListEntry(); > for (int col = 0; col < listString.get(0).size(); col++) { > > > > listEntry.getCustomElements().setValueLocal(listString.get(0).get(col),listString.get(row).get(col)); > } > spreadsheetService.insert(listURL, listEntry); > } > > But I marked that it's very long, about 1 min for 100 rows et 5 col. Is > > there an other solution ? > > Maxime > > > > Topic: Requiring SSL for Documents List, Spreadsheets and Sites > APIs<http://groups.google.com/group/google-spreadsheets-api/t/62d05223c2d97d02> > > Vic Fryzel <[email protected]> Sep 07 01:44PM -0400 > ^<#13249d24ef66199c_digest_top> > > Hello, > > We're announcing the implementation of our requirement to use SSL when > interacting with the Documents List, Spreadsheets and Sites APIs. > Please > see the recent blog post for more information. > > > > http://googleappsdeveloper.blogspot.com/2011/09/requiring-ssl-for-documents-list.html > > Thanks, > -Vic > > > >
