Closed GoogleCodeExporter closed 8 years ago
I was not able to reopen the issue 637 so I opened 638 again
Original comment by dhananja...@clariontechnologies.co.in
on 26 Nov 2012 at 6:22
Following is the fiddler response. Please let me know if you need more than
this.
HTTP/1.1 400 Bad Request
Content-Type: text/html; charset=UTF-8
x-chromium-appcache-fallback-override: disallow-fallback
Date: Mon, 26 Nov 2012 07:00:30 GMT
Expires: Mon, 26 Nov 2012 07:00:30 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Transfer-Encoding: chunked
5f
We're sorry, a server error occurred. Please wait a bit and try reloading your
spreadsheet.
0
Original comment by dhananja...@clariontechnologies.co.in
on 26 Nov 2012 at 7:02
Any ways I have achieved the target by using following code. Of course it is
very basic code I have modify it but it is working I have to just convey you.
The one which I have pasted in my previous comments is not working.
CellFeed cellFeed = worksheet.QueryCellFeed(ReturnEmptyCells.yes);
// Iterate through each cell, updating its value if necessary.
int counter = 0;
foreach (CellEntry cell in cellFeed.Entries)
{
if (cell.Title.Text == "A1")
{
cell.InputValue = Names[counter];
cell.Update();
}
else if (cell.Title.Text == "B1")
{
cell.InputValue = NameList[Names[counter]];
cell.Update();
}
}
Original comment by dhananja...@clariontechnologies.co.in
on 26 Nov 2012 at 9:54
I think "ReturnEmptyCells.yes" is a key thing which I had added and success!!!
Original comment by dhananja...@clariontechnologies.co.in
on 26 Nov 2012 at 9:55
Glad you got it working
Original comment by ccherub...@google.com
on 26 Nov 2012 at 5:07
Original issue reported on code.google.com by
dhananja...@clariontechnologies.co.in
on 26 Nov 2012 at 6:22