<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<rss version="0.92">
<channel>
	<title>doOriented.com</title>
	<link>http://www.dooriented.com/blog</link>
	<description>Less words, more code</description>
	<lastBuildDate>Fri, 09 May 2008 17:52:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Wicketing Javascript through AJAX</title>
		<description>Communication between Java and Javascript cannot be done easier than with Wicket framework, by far the best helper if you're in Java based web development. 

html

[sourcecode language='html']




function callWicket() {
	wicketAjaxGet(callback + '&parameter=value', function() {}, function() {});
}




	
	[]


[/sourcecode]


Java - or should I say the magic of Wicket?

[sourcecode language='java']
package com.somepackage;

import org.apache.wicket.PageParameters;
import org.apache.wicket.ajax.AbstractDefaultAjaxBehavior;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.AjaxSelfUpdatingTimerBehavior;
import ...</description>
		<link>http://www.dooriented.com/blog/2008/05/09/wicketing-javascript-through-ajax/</link>
			</item>
	<item>
		<title>Javascript inheritance</title>
		<description>When it comes to web development, Javascript is the best client-side programming language. It has come a long way in the last years. It's no longer just a simple scripting language. These days a lot of Javascript libraries are available to be used freely and they are incredibly powerful: Script.aculo.us, ...</description>
		<link>http://www.dooriented.com/blog/2008/05/09/javascript-inheritance/</link>
			</item>
	<item>
		<title>Using a static image map with Wicket</title>
		<description>On one of my projects I had to implement an image and link the image area to wicket.

This is how I did it:

html

[sourcecode language='html']

   
       
       
   
   
   Some ...</description>
		<link>http://www.dooriented.com/blog/2008/05/09/using-a-static-image-map-with-wicket/</link>
			</item>
	<item>
		<title>Javascript - how to make something happen after some time</title>
		<description>I'm writing this post because I've been asked a million times about this and it's easier to point someone to a link than to explain it again :-) .

In Javascript, executing something after a specified time couldn't be easier - you've got the setTimeout method. Just be careful to call ...</description>
		<link>http://www.dooriented.com/blog/2008/05/09/javascript-how-to-make-something-happen-after-some-time/</link>
			</item>
	<item>
		<title>Javascript variables scope</title>
		<description>A variable can be defined as a segment of memory which holds some kind of value. The programmer can reference that segment of memory by using the name of the variable in order to assign it a value or to read it and use it.

In Javascript, the scope of the ...</description>
		<link>http://www.dooriented.com/blog/2008/04/27/javascript-variables-scope/</link>
			</item>
	<item>
		<title>Wicket - Ajax like file upload on a modal window</title>
		<description>A lot of people seem to be asking how to do a file upload using AJAX. The short answer to this is that it cannot be done! That's because it is not supported by today's HTML / browser specs.

What you can do is just fake it :-) .

I've been using ...</description>
		<link>http://www.dooriented.com/blog/2008/04/23/wicket-ajax-like-file-upload-on-a-modal-window/</link>
			</item>
</channel>
</rss>
