Hello mrf,

I believe the only official reference to create gadgets is the site Gadget
API Reference:
http://code.google.com/apis/desktop/docs/gadget_apiref.html

And tutorials are the articles:
http://code.google.com/apis/desktop/articles/



About the DetailsView, you can use the example of releasesnotes (
http://code.google.com/apis/desktop/docs/releasenotes-2007-03.html ):

/******************************************************/

New Feature: XML-Specified Details View

The DetailsView class, which was previously undocumented, now supports
creating a details view using an XML file to specify the view's content. The
following example illustrates how you can use this new feature.

function button_onclick() {
  var details = new DetailsView();
  details.SetContent(undefined, undefined, "details_view.xml", false, 0);
  plugin.showDetailsView(details, "", 0, onDetailsViewFeedback);
}
function onDetailsViewFeedback() {
  //Optionally respond to details view's closure.
}

We plan to add documentation for DetailsView. Until then, you can find an
example of using DetailsView by looking at the HtmlDetailsView SDK sample.

/******************************************************/

And the article of Yannick Stucki, "Details Views and YouTube Videos in
Desktop Gadgets":
http://code.google.com/apis/desktop/articles/e12.html



About the doubts of JSON, I'm researching and as soon as possible I tell you
if I have any news.

Best Regards,
Wagner Nitsch Bressan.

On Thu, Feb 18, 2010 at 1:09 PM, mrf <[email protected]> wrote:

>
> Anyhow  thanks Mr. Wagner. Actually where I hav strucked is, in
> passing list item values to database., my problem not yet been
> solved... in most scenarios i read to use JSON obj only but I'm unable
> to create those values(list items ) into JSON string. In our gadget
> code how do we convert any values to JSON string...?? IS any tutorial
> u hav in preparing of gadgets.?? Frankly speaking I dnt find any
> standard books on our gadgets., am asking you tutorial link because i
> need to prepare documentation for my project too.. so., till now i
> have extracted the code FROM (already available gadgets) developed
> gadgets and used in my gadget
> but now i hav to prepare documentation.. so i need any standard
> referal to read and prepare documentation..
>
> ALSO., i'm unable to find about Details view in our API... How to know
> the details view methods,properties and events (if any)...
>
> On Feb 18, 5:43 am, mrf <[email protected]> wrote:
> > Anyhow  thanks Mr. Wagner. Actually where I hav strucked is, in
> > passinglistitem values to database., my problem not yet been
> > solved... in most scenarios i read to use JSON obj only but I'm unable
> > to create those values(listitems) into JSON string. In our gadget
> > code how do we convert any values to JSON string...?? IS any tutorial
> > u hav in preparing of gadgets.?? Frankly speaking I dnt find any
> > standard books on our gadgets., am asking you tutorial link because i
> > need to prepare documentation for my project too.. so., till now i
> > have extracted the code FROM(already) developed gadgets and used in my
> gadgets
> > but now i hav to prepare documentation.. so i need any standard
> > referal to read and prepare documentation..
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Desktop Developer Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-desktop-developer?hl=en.

Reply via email to