I didn't notice IPrimaryKeyConvertEr (T4) and IPrimaryKeyConvertOr (T3), bah!


----- Original Message ----- From: "Daniel Lydiard" <[EMAIL PROTECTED]>
To: "Tapestry users" <[email protected]>
Sent: Tuesday, February 07, 2006 2:25 AM
Subject: [T4] No type converter for type org.apache.tapestry.components.IPrimaryKeyConverter is available.


324 <component id="forEachWorkflowRecord" type="For">
325 <binding name="source" value="workflow"/>
326 <binding name="value" value="currentWorkflowRecord"/>
327 <binding name="converter" value="workflowConverter"/>
328 <binding name="element" value="literal:tr"/>
329 </component>


My java class has a
import org.apache.tapestry.contrib.table.model.IPrimaryKeyConvertor; but eclipse can't find org.apache.tapestry.components.IPrimaryKeyConverter.

Along with
@Persist
 public abstract IPrimaryKeyConvertor getWorkflowConverter();

public abstract void setWorkflowConverter(IPrimaryKeyConvertor primaryKeyConvertor);

and
setWorkflowConverter(new IPrimaryKeyConvertor() {
     public Object getPrimaryKey(Object objValue) {
      ...
     }

     public Object getValue(Object objPrimaryKey) {
      ...
     }
   });



I have tapestry-4.0.jar, tapestry-contrib-4.0.jar, tapestry-annotations-4.0.jar, tapestry-portlet-4.0.jar in my web context lib directory along with spring/hibernate jars etc...


What am i missing? :(


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to