Posted by:
Max Katz
on 07/06/2010
We very close to moving Flamingo and Fiji to exadel.org. It will probably (finally) happen next week. I just wanted to show how simple it is to call a Seam component from JavaFX using Flamingo:
Seam component (server):
@Name ("currentTime")
public class CurrentTime {
public Date currentTime () {
return (new java.util.Date());
}
}
Service interface (client):
public interface CurrentTime {
... more »
Posted by:
Max Katz
on 07/06/2010
I will be presenting Enterprise JavaFX at the Silicon Valley JavaFX User Group on Wednesday, July 14, 2010.
The event starts at 7pm (PT) and is broadcast live here. To sign for the event (even if attending remotely), please click here.
more »
Posted by:
Lincoln Baxter III
on 07/06/2010
The PrettyFaces team is currently working on an alternative way to configure URL mappings. PrettyFaces will soon allow to use annotations instead of the classic XML configuration file to declare mappings. We encourage everyone interested in PrettyFaces to take a look at this new way of configuration and share his or her opinion with us. ExamplesThis section shows some simple examples for the annotation support of PrettyFaces. For details refer to the Annotation-based configuration chapter... more »
Posted by:
Max Katz
on 07/01/2010
Exadel JavaFX Plug-in for Eclipse version 1.3.3 introduced a handy feature which lets you quickly navigate to any part of JavaFX script. It works like an Outline view in a popup. The feature is invoked when in JavaFX editor by pressing Ctrl-O.
Pressing Ctrl-O and navigating through the outline using up and down arrows:
Pressing Ctrl-O and typing the name of a variable:
more »
Posted by:
Max Katz
on 07/01/2010
Thoughts on M-Commerce article series via blog.exadel.com:
Part 1: Using the Power of Influence in M-Commerce
Part 2: The MUST HAVE List of Features for B2B M-Commerce
Part 3: Is M-Commerce Just an Extension of E-Commerce?
more »
Posted by:
Max Katz
on 06/29/2010
I knew these existed but somehow forgot to post them. These are videos of my presentations at JBoss booth at JavaOne 2009 in San Francisco. I think it would be more useful if the videos would switch more often to the slides I’m showing, but in case, enjoy!
RichFaces presentation
Part 1
Part 2
Part 3
Part 4
JavaFX with Seam presentation
Part 1
Part 2
Part 3
more »
Posted by:
Max Katz
on 06/29/2010
Starting with JSF 2? Check out my Learning JSF 2 series. A new article on using page parameters and page actions is coming up soon.
more »
Posted by:
Max Katz
on 06/28/2010
Another small update to Exadel JavaFX Plug-in for Eclipse.
Product info, download and Eclipse update: http://exadel.org/javafxplugin
Release notes, what’s new in this version: http://exadel.org/javafxplugin-releasenotes
Updated user guide: http://download.exadel.org/javafx_plugin/docs/guide/
As always, let us know what features you would like to see added. You can post them on the forum or add directly to Jira.
more »
Posted by:
Max Katz
on 06/28/2010
Learn how to use RichFaces a4j:queue tag to control traffic to the server from my article published on JSFCentral.
more »
Posted by:
Max Katz
on 06/25/2010
I will be talking about Enterprise JavaFX with Exadel Flamingo at Silicon Valley JavaFX User Group on Wednesday, July 14th, 2010. More info and registration.
more »
Posted by:
Max Katz
on 06/25/2010
Two greats posts by Felipe Wasserman (Exadel marketing intern):
Using the Power of Influence in M-Commerce
The MUST HAVE List of Features for B2B M-??Commerce
RichFaces 4
RichFaces 4 Overview. Part I – Ajax Request Queuing
Exadel Flamingo:
The “Mobilization” of Enterprise Applications with Exadel Flamingo
Flamingo Q&A with James Sugrue
more »
Posted by:
Max Katz
on 06/24/2010
The Mobilization of Enterprise Applications with Exadel Flamingo article on JavaLobby.com. Also check out Flamingo Q&A.
more »
Posted by:
Max Katz
on 06/22/2010
As we continue to develop Exadel JavaFX Plug-in for Eclipse, we have added a Preference page where you can configure a number of things such as script coloring and JavaFX SDKs. In Eclipse, go to Window/Preferences/JavaFX.
Code style:
Edit JavaFX SDK:
Script editor:
Syntax coloring:
more »
Posted by:
Max Katz
on 06/21/2010
The RichFaces team has made a major step toward RichFaces 4 by releasing Alpha 2 version. I’m hoping to see GA in September. Keep in mind that not all components have been migrated to version 4 yet. The components that are available right now are listed below.
Some highlights in RichFaces 4 Alpha 2:
Redesigned and improved Component Development Kit
Ajax core components set almost completely migrated.
Ajax request smart Queuing mechanism implemented
Rich Data Iteration... more »
Posted by:
Max Katz
on 06/17/2010
Q&A with James Sugrue from DZone on using Exadel Flamingo to build mobile applications for iPhone and Android.
more »
Posted by:
Max Katz
on 06/16/2010
Check out this project, it’s very cool. dynaWidgets created by Top 21 GmbH, are a set of JSF components for rendering portlet like elements (called widgets) in your JSF application. The Ajax functionality is powered by RichFaces. Implementing widgets is just like implementing normal JSF facelets pages. Check out the examples section to see an example usage.
more »
Posted by:
Max Katz
on 06/14/2010
There was a last minute change and I will be doing tomorrow’s webinar on Flamingo and its new mobile features. There is still time to register. The webinar it tomorrow, June 15th at 11am PT/2pm ET.
Exadel Flamingo, an open source Java EE development framework, enables the “mobilization” of existing e-commerce applications by seamlessly encapsulating existing server-side functionality to be used by mobile devices. Flamingo establishes a lightweight abstract layer... more »
Posted by:
Max Katz
on 06/11/2010
Exadel JavaFX Plug-in for Eclipse version 1.3.2 is now available.
Product info, download and Eclipse update: http://exadel.org/javafxplugin
Release notes, what’s new in this version: http://exadel.org/javafxplugin-releasenotes
Updated user guide: http://download.exadel.org/javafx_plugin/docs/guide/
As always, let us know what features you would like to see added. You can post them on the forum or add directly to Jira.
more »
Posted by:
Max Katz
on 06/10/2010
This is a 5-minute guide to creating a wizard inside a modal panel. We are going to use a4j:include together with rich:modalPanel.
Start page (start.xhtml):
<h:form>
<a4j:commandLink oncomplete="#{rich:component('panel')}.show();"
value="Open"
reRender="panel"/>
</h:form>
<h:panelGrid id="result">
<h:outputText value="#{bean.color}" />
<h:outputText... more »
Posted by:
Max Katz
on 06/10/2010
More Tiggr features in images.
Click image to view details
Project menu:
Stage menu:
Layout containers palette:
more »
Items: 41 to 60 of 716
« Previous
|
Next »
NFJS, the Magazine
August Issue Now Available- Google Your Persistent Domain Model
by John Griffin - Get Cooking in the Cloud with Chef, Part 2
by Michael Nygard - Making Java Bearable with Guava
by Daniel Hinojosa - HTML 5 Update
by Brian Sletten