Very useful information. Could you also post a complete example on this issue? For example, showing an alert box with the user information after he/she logs in.
I was planning some weeks ago to write an article about POI integration in JRapid applications. Perhaps this can be a good moment to write it.
Sooner or later we will integrate POI to JRapid, I think it will be a great feature as it is a common…
Hi Jose, you can also enable your JRapid application to import data from Excel using Apache POI, a Java library to deal with MS Office documents.
http://poi.apache.org/spreadsheet/index.html
Bye !
Congrats Nicolas, nice article!
check out that your first example's method signature says:
public void pokeUser (User toUser, User toUser) {
Surely you meant
public void pokeUser (User fromUser, User toUser) {
(like in the last one)
Hi ! In this post I'll explain the Singleton Pattern and how you can use it to increase the performance of your web applications, specially in JRapid's.There is no need to use a Profiler to know that the Java 'new' operator increases the memory allocation in the heap. The JVM's heap stores all objects created by an executing Java program. Objects are created by Java's "new" operator, and memory for new objects is allocated on the heap…See More
In this post you will learn all about the JRapid's Eclipse Plugin.IntroductionJRapid developed an Eclipse Plugin for developers to manage their JRapid projects from a powerful and tested desktop IDE.Despite the JRapid's web IDE counts with all the necessary tools for developing any kind of web applications you will find it is more comfortable to work with the Eclipse IDE in cases like writing Java, JavaScript, CSS, etc code.The plugin allows developers to develop application sources locally and…See More
Nice to hear that ;). We always welcome users feedback.
You can try adding widgets and views to your app. From the IDE go to the Community menu > Import Widget or Import View.
Hi sat, I added myself to your project as developer ;)
The problem you were having was the '_' character of your "Time_tracking" entity name. I changed it to "TimeTracking" and the subset worked. Besides it's a bug…
Hi ! In this post I'll explain the Singleton Pattern and how you can use it to increase the performance of your web applications, specially in JRapid's.
There is no need to use a Profiler to know that the Java 'new' operator increases the memory allocation in the heap. The JVM's heap stores all objects created by an executing Java program. Objects are created by Java's "new" operator, and memory for new…
Hi. In this post I'll briefly explain how to throw JRapid Exceptions.
JRapid offers you two different Runtime Exceptions in the com.jrapid.exception package. These are:
ServiceException
ConfirmationException
Like all Runtime Exceptions, they can be thrown from any part of your Java code. Commonly you will want to log all the exceptions of your application in a txt file…
Hi ! In the first part of this post I introduced JRapid WebForms which, synthetically speaking, allows non-programmer users to embed and manage web forms in their websites.
In this post I will explain you how to embed a WebForm in aNingnetwork as a Ning…