Bug 32823 - add umc.widgets.ContainerWidget({}).set('visible', false)
add umc.widgets.ContainerWidget({}).set('visible', false)
Status: CLOSED DUPLICATE of bug 35654
Product: UCS
Classification: Unclassified
Component: UMC (Generic)
UCS 3.1
Other Linux
: P5 enhancement (vote)
: UCS 3.x
Assigned To: Alexander Kläser
Florian Best
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2013-10-09 09:13 CEST by Florian Best
Modified: 2023-03-25 06:48 CET (History)
2 users (show)

See Also:
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:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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…