[jboss-user] [JBoss Seam] - Re: DataModel and Row Unavailable

ssc_ch do-not-reply at jboss.com
Thu Jun 28 11:33:18 EDT 2007


I found the problem, but didn't solve it yet..
The problem is in the following part and if i comment this part, the thing with de table is working correctly, but now I have to find a solution for my new problem :-)

  | 					<ice:panelGrid columns="3">
  | 
  | 						<ice:outputText value="#{messages['profNewCase.patient']}" />
  | 						<ice:outputText value="#{messages['profNewCase.description']}" />
  | 						<ice:outputText value="#{messages['profNewCase.type']}" />
  | 						
  | 						<h:selectOneMenu id="patientListbox" required="true"
  | 						value="#{patient}" >
  | 							
  | 							
  | 							<s:selectItems value="#{caseAction.myPatients}" var="patient" 
  | 							label="#{patient.firstname} #{patient.lastname}" 
  | 							noSelectionLabel="#{messages['profNewCase.noSelection']}"/>
  | 							<s:convertEntity />
  | 
  | 						</h:selectOneMenu>
  | 						
  | 						<ice:inputText required="true" value="#{caseAction.description}" />
  | 
  | 
  | 						
  | 						<h:selectOneMenu id="typeListbox" required="true"
  | 						value="#{caseType}">
  | 							
  | 							
  | 							<s:selectItems value="#{caseAction.caseTypes}" var="caseType" 
  | 							label="#{caseType.type}" 
  | 							noSelectionLabel="#{messages['profNewCase.noSelection']}"/>
  | 							<s:convertEntity />
  | 
  | 						</h:selectOneMenu>
  | 
  | 
  | 					</ice:panelGrid>
  | 

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

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



More information about the jboss-user mailing list