0 Replies Latest reply on Nov 3, 2008 7:57 AM by dhvravikumar1983

    new to JBPM having a problem examples given by JBPM

    dhvravikumar1983

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      Hai to all .Iam new to JBPM i modified websale project given by JBPM examples like below to achive the tab concept but it is not working and also it is not giving the tab ....


      Please help me to solve this problem :-- its very urgent.

      <html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:yui="http://yui4jsf.sourceforge.net"
      xmlns:jbpm="http://jbpm.org/jsf"
      xmlns:tf="http://jbpm.org/jsf/tf"
      >

      <yui:tabView>
      <yui:tab title="First Title">
      <jbpm:dataform>

      <f:facet name="header">
      <h:outputText value="#{taskName}"/>
      </f:facet>

      <!-- TASKFORM ROWS -->
      <jbpm:datacell>
      <f:facet name="header">
      <h:outputText value="Item:"/>
      </f:facet>
      <h:inputText value="#{var['item']}" />
      </jbpm:datacell>
      <jbpm:datacell>
      <f:facet name="header">
      <h:outputText value="Quantity:"/>
      </f:facet>
      <h:inputText
      value="#{var['quantity']}"
      converter="javax.faces.Integer"
      converterMessage="The quantity must be numeric."
      validatorMessage="The quantity must be at least 1.">
      <f:validateLongRange minimum="1"/>
      </h:inputText>
      </jbpm:datacell>
      <jbpm:datacell>
      <f:facet name="header">
      <h:outputText value="MyAddress:"/>
      </f:facet>
      <h:inputText value="#{var['address']}" />
      </jbpm:datacell>
      <jbpm:datacell>
      <f:facet name="header">
      <h:outputText value="Actions:"/>
      </f:facet>
      <!-- TASKFORM BUTTONS -->
      <tf:saveButton value="Save"/>
      <tf:transitionButton value="Evaluate"/>
      </jbpm:datacell>

      </jbpm:dataform>

      </yui:tab>
      <yui:tab title="Second Tab Title">
      any components
      </yui:tab>
      </yui:tabView>








      Thx

      Ravikumar