Well… what if you have a group of two (or more) radio buttons and want to use the onchange event like this:
<input type=”radio” name=”xpto” value=”One” onchange=”onChangeHandler()” checked/>
<input type=”radio” name=”xpto” value=”Two” onchange=”onChangeHandler()”/>
When the onChangeHandler is fired up, which value is on our radio button form parameter “xpto” ? The old one? Or the new one?
It’s Just [...]
Rui Alves on Tuesday, February 27th, 2007 | Posted in Software Development | No Comments
Setting up a project with Hibernate Annotations using Maven2 is quite simple… or at least it should be. You should just have to set up your pom.xml file with the following dependencies:
<project>
…
<dependencies>
<dependency>
<groupid>hibernate</groupid>
<artifactid>hibernate-annotations</artifactid>
<version>3.2.1ga</version>
</dependency>
</dependencies>
…
</project>
And this is what I expected to start using Hibernate Annotations on my project. But if you try to compile [...]
Rui Alves on Wednesday, February 14th, 2007 | Posted in Software Development | 2 Comments
Setting up a web project using Maven 2 is the simplest thing in the world. You just have to type in:
mvn archetype:create -DgroupId=groupId -DartifactId=TestWebapp -Dpackagename=your.package.name
Rui Alves on Tuesday, February 13th, 2007 | Posted in Software Development | 1 Comment
This is the weblog for my company: RUPEAL
RUPEAL is a startup company who’s purpose is to develop software and human resources that bring innovation and excelence to the business of our clients.
We’ve just started our journey, and this blog is meant to share our experience on creating a company from scratch.
Hope you enjoy!
Rui Alves on Friday, February 9th, 2007 | Posted in Business | No Comments