AjaxPro for Java Developers?
I have started to create a AjaxPro Java Edition which will be 100% code compatible on the client-side. That means there is no change of JavaScript and HTML when moving around, no code change when developing JavaScript controls. Look at the following code:
import java.text.*;
import java.util.*;
public class AjaxMethods
{
@AjaxPro.AjaxMethod
public String SayHello(String name)
{
return "Hello " + name + "!";
}
@AjaxPro.AjaxMethod
public boolean IsTrue(boolean b)
{
return b;
}
}
I will offer a first alpha version the next days.
2 Comments
Comments have been disabled for this content.
Fabio said
Michael...you never stop impressing us, "100% code compatible on the client-side" this is great! Regards
Carlos Ortiz said
Can be use with JSF ¿? and how