[jboss-user] [JBoss jBPM] - new to JBPM having a problem examples given by JBPM

dhvravikumar1983 do-not-reply at jboss.com
Mon Nov 3 07:57:44 EST 2008


<!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

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186375#4186375

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4186375



More information about the jboss-user mailing list