Blame view

samples/schedule-sample/src/main/webapp/pages/sample_10.xhtml 900 Bytes
bernard authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
      xmlns:rich="http://richfaces.org/rich"
      xmlns:schedule="http://richfaces.org/sandbox/schedule">
<ui:composition template="/pages/template.xhtml">
    <ui:define name="body">

        <h:form>
            <a4j:commandButton value="Ajax ReRender" reRender="schedule"/>
        </h:form>
        <ui:include src="schedule.xhtml">
            <ui:param name="mode" value="ajax"/>
        </ui:include>


        <div style="clear:both"></div>
        <rich:insert src="/pages/sample_9.xhtml" highlight="xhtml"/>
    </ui:define>
</ui:composition>
</html>