05-22-2007 01:41 AM
String val = (String) context.getExternalContext().getRequestParameterMap().get("the_field");
but it doesn't work !int i=0;
for (Iterator it=context.getExternalContext().getRequestParameterMap().keySet().iterator(); it.hasNext(); i++) {
Object key = it.next();
Object value = context.getExternalContext().getRequestParameterMap().get(key);
System.out.println("\nkey["+i+"]: "+key+" = value["+i+"]: "+value);
}
05-24-2007 05:06 AM
<h:inputText value="#{MyBean.name}" />
public class MyBean
{
private String name;
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return this.name;
}
}
05-24-2007 05:41 AM
<h:inputText value="#{MyBean.name}" />
<constraint name="custom:Continent" type="org.alfresco.repo.dictionary.constraint.ListOfCategoriesConstraint">
<parameter name="allowedValues">
<list>
</list>
</parameter>
<parameter name="caseSensitive"><value>true</value></parameter>
<parameter name="rootCategory"><value>Regions</value></parameter>
<parameter name="fatherFields"><value></value></parameter>
</constraint>
<property name="custom:Continent" component-generator="TextFieldCategoryGenerator">
<title>Continent</title>
<type>d:text</type>
<constraints>
<constraint ref="custom:Continent" />
</constraints>
</property>
05-25-2007 03:51 AM
<property-sheet>
<show-property name="custom:Contient"/>
</property-sheet>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.