23
2008
Gravl: Autocompleting and Funky Timelines
If you haven’t had a chance to play with the RichUI plugin, you’ve got to take it for a spin – it’s just fantastic. I’ve been meaning to implement autocomplete for Gravl tags on new blog entries, and with the RichUI plugin (which uses Yahoo Autocomplete under the hood) it’s a total snack.
First you declare the RichUI taglibs in your gsp file (note: I’m using the undocumented delimChar setting so that I separate multiple tags with a space):
<resource:autoComplete skin="default" />
<richui:autoComplete name="tagList" delimChar=" " style="width: 100%"
action="${createLinkTo(dir: params.blog+ '/blog/tagcomplete')}"/>
Then you add yourself a backend action that returns some xml representing the items for the list. I filter the tags by hand because I want to keep everything case insensitive, but your might be able to do the lot in a dynamic finder.
def tagcomplete = {
Blog blogObj = Blog.findByBlogid(params.blog)
def queryRegex = "(?i)${params.query}" // case insensitive...
def tags = blogObj.tags.findAll { tag -> tag.name =~ queryRegex }
render(contentType: "text/xml") {
results() {
tags.each {t ->
result() {
name(t.name)
}
}
}
}
}
And you’ve got yourself an autocomplete for tags…
Not that we’ve got a nifty tag autocomplete, it’s time to take the timeline virtualisation tag for a spin… One the way into the timeline populate the start date for your entries…
def timeline = {
Blog blogObj = Blog.findByBlogid(params.blog)
def entries = BlogEntry.findAllByBlogAndStatus(blogObj, "published", [ sort: 'created', order: 'asc'])
return [ blogObj: blogObj, startDate: entries[0]?.created ]
}
Then create the tags in your page to kick things off..
<resource:timeline />
<richui:timeline style="height: 500px; border: 1px solid #aaa" startDate="${startDate}" datasource="${createLinkTo(dir: params.blog+ '/timelineData')}" />
<g:javascript>
initTimeline();
</g:javascript>
Which will callback to render the data on a timeline…
def timelineData = {
def baseUri = request.scheme + "://" + request.serverName +
(request.serverPort != 80 ? ":" + request.serverPort : "") +
grailsAttributes.getApplicationUri(request)
Blog blogObj = Blog.findByBlogid(params.blog)
def entries = BlogEntry.findAllByBlogAndStatus(blogObj, "published", [ sort: 'created', order: 'asc'])
println "Timeline rendering for ${entries.size()} entries"
render(contentType: "text/xml") {
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd yyyy HH:mm:ss", Locale.US)
data() {
entries.each { entry ->
event(start: sdf.format(entry.created),
title: entry.title,
link: baseUri + entry.toPermalink(),
"" )
}
}
}
}
And you have one funky looking timeline… (click on the Timeline link on the right gutter if you want to play with the live one)
Well thats enough UI work for one day… Huge props to Andreas for an outstanding plugin!
7 Comments + Add Comment
Leave a comment
Glen Smith
Archives
- April 2012
- March 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003

An article by Glen





Hi Glen!
I like the timeline a lot. How about displaying a thumbnail of the blog post in the popup?
wonder why the delimChar is not documented, seems like something that could be useful for us developers
Man, your posts are always interesting … is it the aussie climate?
Keep up. All of the Grails community owe you for evangelizing al of the great features there are in Grails.
- a faithful reader.
Nice job Glen!
But you have too many entries on Gravl recently to fit on your timeline!
Well, it seems I forgot to document the delimChar attribute. I updated the wiki, so it’s now there. Thanks for your praise and keep up your excellent work.
Hello Glen!
Lots of funky looking widgets you show us! Thanks!
But would you have some architecting tips on how to have a library of ajax widgets used by an application..?
My concern is to decouple (if possible) my viewing code from these ajax add ons.
Sepcially as the ajax species are sprouting up from every where.
I would like a way to make sure my application design can take in newer ajax stuff.
Cheers
I’m late to this party but just had my first crack at using the timeline plugin (RichUI). I love it, wasn’t hard to implement. Now if I could get it to display the dates in the popup in PDT rather than GMT….