mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix to issue with style class output in MultiValueEditor Renderer
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7489 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -120,7 +120,7 @@ public abstract class BaseMultiValueRenderer extends BaseRenderer
|
||||
UIMultiValueEditor editor = (UIMultiValueEditor)component;
|
||||
|
||||
// start outer table
|
||||
out.write("<table border='0' cellspacing='3' cellpadding='3' class='selector'");
|
||||
out.write("<table border='0' cellspacing='3' cellpadding='3'");
|
||||
this.outputAttribute(out, attrs.get("style"), "style");
|
||||
this.outputAttribute(out, attrs.get("styleClass"), "class");
|
||||
out.write(">");
|
||||
|
@@ -418,6 +418,12 @@ a.topToolbarLinkHighlight, a.topToolbarLinkHighlight:link, a.topToolbarLinkHighl
|
||||
color: #93a8b2;
|
||||
}
|
||||
|
||||
.multiValueSelector
|
||||
{
|
||||
border: 1px dashed #cccccc;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.selector
|
||||
{
|
||||
border: 1px dashed #cccccc;
|
||||
|
@@ -42,7 +42,7 @@
|
||||
selectItemMsg="#{msg.select_category}"
|
||||
selectedItemsMsg="#{msg.selected_categories}"
|
||||
noSelectedItemsMsg="#{msg.no_selected_categories}"
|
||||
styleClass="selector">
|
||||
styleClass="multiValueSelector">
|
||||
<f:subview id="categorySelector">
|
||||
<r:ajaxCategorySelector id="catSelector" styleClass="selector"
|
||||
value="#{DialogManager.bean.addedCategory}"
|
||||
|
Reference in New Issue
Block a user