Author: wesleyhales
Date: 2010-01-13 23:27:54 -0500 (Wed, 13 Jan 2010)
New Revision: 1276
Modified:
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/wsrp/webui/component/UIWsrpRegistrationDetails.java
Log:
Small tweak so proper error can be seen
Modified:
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/wsrp/webui/component/UIWsrpRegistrationDetails.java
===================================================================
---
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/wsrp/webui/component/UIWsrpRegistrationDetails.java 2010-01-14
04:20:29 UTC (rev 1275)
+++
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/wsrp/webui/component/UIWsrpRegistrationDetails.java 2010-01-14
04:27:54 UTC (rev 1276)
@@ -80,7 +80,7 @@
private UIFormInputBase<String> validator;
private UIGrid registrationProperties;
private static final String NAME = "name";
- static String[] FIELDS = {NAME, "description", "label",
"hint"};
+ static String[] FIELDS = {"key", NAME, "description",
"label", "hint"};
static String[] SELECT_ACTIONS = {"EditProperty",
"DeleteProperty"};
static final String POLICY_CLASS = "policyClassName";
static final String VALIDATOR_CLASS = "validatorClassName";
@@ -114,7 +114,7 @@
registrationProperties.registerRendererFor(renderer, LocalizedString.class);
//configure the edit and delete buttons based on an id from the data list - this
will also be passed as param to listener
- registrationProperties.configure(NAME, FIELDS, SELECT_ACTIONS);
+ registrationProperties.configure("key", FIELDS, SELECT_ACTIONS);
registrationProperties.getUIPageIterator().setId(REGISTRATION_PROPERTIES_ITERATOR);
registrationProperties.getUIPageIterator().setRendered(false);
addChild(registrationProperties.getUIPageIterator());
Show replies by date