mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
. More progress on Define Web Content Forms dialog
- ad-hoc workflow selection screen (as per new wireframes) - fixed selection bug on Form Details screen (and in UISelectList component) . Invite Users step of Create Web Project wizard now has email notification as optional . Fixed issue to restrict the selection of the same authority only allowed once in the Invite Users step git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4296 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -441,17 +441,20 @@ public class UISelectList extends UIInput implements NamingContainer
|
||||
*/
|
||||
public void setRowIndex(int rowIndex)
|
||||
{
|
||||
this.rowIndex = rowIndex;
|
||||
for (Iterator itr=getChildren().iterator(); itr.hasNext(); /**/)
|
||||
if (isActiveSelect())
|
||||
{
|
||||
UIComponent child = (UIComponent)itr.next();
|
||||
if (child instanceof UIListItem == false && child instanceof UIListItems == false)
|
||||
this.rowIndex = rowIndex;
|
||||
for (Iterator itr=getChildren().iterator(); itr.hasNext(); /**/)
|
||||
{
|
||||
// forces a reset of the clientId for the component
|
||||
// This is then regenerated - relative to this naming container which itself uses the
|
||||
// current row index as part of the Id. This is what facilities the correct component
|
||||
// rendering submit script and then identified during the decode() phase.
|
||||
child.setId(child.getId());
|
||||
UIComponent child = (UIComponent)itr.next();
|
||||
if (child instanceof UIListItem == false && child instanceof UIListItems == false)
|
||||
{
|
||||
// forces a reset of the clientId for the component
|
||||
// This is then regenerated - relative to this naming container which itself uses the
|
||||
// current row index as part of the Id. This is what facilities the correct component
|
||||
// rendering submit script and then identified during the decode() phase.
|
||||
child.setId(child.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user