Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix radio button problem in Role Editor
Browse files Browse the repository at this point in the history
(cherry picked from commit cdcc459)
  • Loading branch information
cdujeu committed Oct 17, 2014
1 parent e0f7194 commit 69965d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/plugins/editor.ajxp_role/class.RoleEditor.js
Expand Up @@ -723,7 +723,9 @@ Class.create("RoleEditor", AbstractEditor, {
h.set("label", '<span class="inherited">' + h.get("label") + ' ('+ MessageHash["ajxp_role_editor.38"] +')' + '</span>');
}
}
formManager.createParametersInputs(pane, formParams, true, null, false, false, false);
var formElement = new Element('form', {style:'display:inline;'});
pane.insert(formElement);
formManager.createParametersInputs(formElement, formParams, true, null, false, false, false);
if(pane.SF_accordion){
pane.SF_accordion.openAll();
}
Expand Down

0 comments on commit 69965d9

Please sign in to comment.