Sadly, to do this using the standard FeedControl is a significant hassle 
because the code is obfuscated. Really, you have two choices. First, you can 
override the control's default createHtml method with a custom method that 
would generate the html node the way you want. Or second, you can write your 
own control completely. Honestly, by the time you override the method, you're 
getting dangerously close to having re-written the control completely anyway, 
so I would probably suggest going that route. At any rate, you're going to need 
to know about document.createElement, document.createTextNode, and the 
appendChild method of elements so you can build the results html on the fly. If 
I get a chance today, I'll whip something up in the Playground to show.

Jeremy R. Geerdes
Effective website design & development
Des Moines, IA

For more information or a project quote:
http://jgeerdes.home.mchsi.com
[email protected]

If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church!

On May 27, 2010, at 10:54 PM, Mavix wrote:

> Hi Everybody! Well I am using the FeedControl I would like to know if
> there is a posibility for it to load all of the content instead of
> some few lines as it works normally with just the title and entry.
> I am trying a system to get posts from a blog into the site.
> 
> My code is here:
> 
> <script type="text/javascript">
> 
>      google.load("feeds", "1");
> 
>      function initialize() {
>        var feedControl = new google.feeds.FeedControl();
>        feedControl.addFeed("http://feeds.feedburner.com/DjIncidental?
> format=xml", "DjIncidental");
>        //feedControl.addFeed("http://
> incidentalolindastyle.blogspot.com/feeds/posts/default?alt=rss",
> "DjIncidental");
>        feedControl.draw(document.getElementById("feedControl"));
>      }
>      google.setOnLoadCallback(initialize);
> 
>    </script>
> 
> Could anybody help me?
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google AJAX APIs" 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-ajax-search-api?hl=en.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" 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-ajax-search-api?hl=en.

Reply via email to