Bug 32823

Summary: add umc.widgets.ContainerWidget({}).set('visible', false)
Product: UCS Reporter: Florian Best <best>
Component: UMC (Generic)Assignee: Alexander Kläser <klaeser>
Status: CLOSED DUPLICATE QA Contact: Florian Best <best>
Severity: enhancement    
Priority: P5 CC: gohmann, klaeser
Version: UCS 3.1   
Target Milestone: UCS 3.x   
Hardware: Other   
OS: Linux   
See Also: https://forge.univention.org/bugzilla/show_bug.cgi?id=35654
What kind of report is it?: --- What type of bug is this?: ---
Who will be affected by this bug?: --- How will those affected feel about the bug?: ---
User Pain: Enterprise Customer affected?:
School Customer affected?: ISV affected?:
Waiting Support: Flags outvoted (downgraded) after PO Review:
Ticket number: Bug group (optional):
Max CVSS v3 score:

Description Florian Best univentionstaff 2013-10-09 09:13:17 CEST
Would be nice to have!? (is done by hand in umc.widgets.Grid)
_setVisibleAttr: function(visible) {
    var visibility = visible ? 'visible' : 'hidden';
    style.set(this.domNode, 'visibility', visibility);
}
Comment 1 Florian Best univentionstaff 2013-10-11 09:56:52 CEST
also for umc.widgets.Text
Comment 2 Florian Best univentionstaff 2013-10-31 10:27:18 CET
better would probably:
domClass.toggle(this.domNode, 'dijitHidden', true|false)
Comment 3 Florian Best univentionstaff 2014-11-03 20:26:28 CET
fixed for the meantioned widgets in UCS 4.0.

*** This bug has been marked as a duplicate of bug 35654 ***
Comment 4 Florian Best univentionstaff 2014-11-03 20:27:06 CET
was required for the header buttons…