Ajax4JSF « Component « JSF Q&A





1. Get Ajax4JSF (a4j component) running on Glassfish    stackoverflow.com

I'm trying to build an JEE6-application on Glassfish V3, using JSF 2.0, Weld, JPA2 and Maven. Now i'm having trouble getting a simple <a4j:support> running. This is the fragment of my ...

3. How to add Ajax4jsf support to custom JSF component?    coderanch.com

Hi! I just created a new JSF component, which consists of two input fields. One for the date input and one for the time. The Renerer-Class is quite nice: writer.startElement("div", null); writer.writeAttribute("id", clientId, null); writer.startElement("input", calendarVis); writer.writeAttribute("type", "text", null); writer.writeAttribute("name", clientId + DATE, null); writer.writeAttribute("value", calendarVis.getDateConverter().getAsString(context, component, calendarVis.getValue()), "value"); writer.endElement("input"); if ((Boolean)component.getAttributes().get(VisCalendarTag.ATTR_SHOWTIME)) { writer.startElement("input", calendarVis); writer.writeAttribute("type", "text", null); writer.writeAttribute("name", clientId + ...

4. JSF 1.2 Custom Component and ajax4jsf problem    coderanch.com

1) I had made a custom component -- TimeField --> 3 combobox with hour, minute and seconds 2) it is working fine, but when enabling a4j support event(selecting a combo with status details, i need to switch its visibility) for rendering its not working. 3) Actually inside reRendering its not calling the bean setter methods. 4) If i am replacing this ...