-
Just one prediction for next year: JavaFX
Read more: Just one prediction for next year: JavaFXAs we are closing this year, people tend to write predications for the next year. Usually you see something like “Top 10 predications for next year”. I will offer you just one prediction. My predication is that JavaFX will start to emerge as a technology for building Rich Internet Applications. JavaFX Script is a declarative […]
-
AT&T Wireless
Read more: AT&T WirelessI recently got a new BlackBerry Pearl with service from AT&T. As I was driving to South Lake Tahoe last Saturday morning I was on the phone with my wife. As I was passing a large AT&T Wireless billboard, the call was dropped. I thought it was funny that a call would be dropped right […]
-
I'm going there tomorrow
Read more: I'm going there tomorrowThe picture was taken in 2003, but Heavenly got a few snow storms in the past two weeks so skiing should be excellent.
-
Using rich:orderingList and rich:listShuttle components
Read more: Using rich:orderingList and rich:listShuttle componentsrich:orderingList lets you arrange values by moving them up or down. It’s based on a data table component, so you can put any object inside with any number of “columns” or attributes shown. Code: <rich:orderingList value=”#{carsBean.allCars}” var=”car” converter=”carConverter”> <rich:column> <h:facet name=”header”>Make</f:facet> <h:outputText value=”#{car.make}”/> </rich:column> <rich:column> <f:facet name=”header”>Model</f:facet> <h:outputText value=”#{car.model}”/> </rich:column> </rich:orderingList> The other component is […]
-
New JSF UI component library from Mojjara (JSF RI) sandbox
Read more: New JSF UI component library from Mojjara (JSF RI) sandboxMojjara Scales is a new JSF component library released out of Mojarra (JSF RI) sandbox. Mojarra is a new name for JSF RI implementation. According to the project page, most components wrap Yahoo! User Interface (YUI) JavaScript widgets while documentation is still missing in action.
-
How fast can you type on your BlackBerry?
Read more: How fast can you type on your BlackBerry?Last night I had dinner with friends from college. We try to get together once every month or two. One of them got out his BlackBerry device and told us how he was typing an email at a stop light. The light turned green but he didn’t finish typing the email and finished it as […]
-
RichFaces 3.1.3 GA released
Read more: RichFaces 3.1.3 GA releasedRichFaces 3.1.3 GA was released this week. I will post examples of new components later but for now here is the list of the new components with links to the demo site: rich:calendar with time picker rich:listShuttle rich:orderingList rich:componentControl rich:contextMenu For the rest of what’s new in 3.1.3: http://labs.jboss.com/auth/wiki/RichFacesWhatIsNewIn3_1_3
-
Quick start with RichFaces
Read more: Quick start with RichFacesDuring our webinar today a question was asked how to configure RichFaces in web.xml? Well, it’s very simple, you basically have to register a filter and add three RichFaces Jar files. The filter is described here and the Jar files can be downloaded here. I decided to provide a sample project template with RichFaces (version […]
-
RichFaces data table with paginator under 2 minutes
Read more: RichFaces data table with paginator under 2 minutesHere is a super quick way to have a data table with a paginator. I’m assuming here that you already have a project setup with RichFaces support: Of course you get full AJAX support out-of-the-box. Just don’t forget to set rows, that determines how many records to show per “page”.
-
Hello World with modal panel
Read more: Hello World with modal panelThis examples shows you quickly how to get started with using modal panel component in RichFaces (rich:modalPanel). Modal panel control really improves user experience. How many times have you opened a regular browser popup and then by mistake clicked the parent window or even somewhere else? If you do that, the popup window will disappear. […]