After including the snadbox-snapshot-1.5 the pop-up alway throws errors.
I wrote that yesterday, I think.
The Tomahawk inputDate component doesn't function properly with Ajax4jsf :-(
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<%@ taglib uri="https://ajax4jsf.dev.java.net/ajax" prefix="a4j"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Report Builder</title>
</head>
<body>
<f:view>
<h:form id="reportBuilderForm">
<a4j:commandButton reRender="startDate" value="ReRender" />
<t:inputDate id="startDate" type="both" popupCalendar="true" />
</h:form>
</f:view>
</body>
</html>
If you click on the "ReRender" button, the refreshed page is a button with "..." and it never finishes.If you change "popupCalendar to "false" it works beautifully. I really want the pop up! What can I do?
Mike Margozzi

