[TIMOB-5526] MobileWeb: pressing hide more than once prevents object from being shown again
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2011-05-18T01:54:40.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | n/a |
Reporter | Kincy Clark |
Assignee | Maxim Negadaylov |
Created | 2011-05-16T23:34:45.000+0000 |
Updated | 2017-03-09T20:04:46.000+0000 |
Description
when the hide button was pressed twice various kitchen sinks, the hidden object could not be shown. We implemented workarounds, but this should be fixed in the SDK. See ui_methods, textfield, textarea
here is the workaround we implemented (in textarea)
showHide.addEventListener('click', function(){
if (ta1.isvisible){
ta1.hide();
ta1.isvisible = false;
}else{
ta1.show();
ta1.isvisible = true;
}
})
Closing ticket as fixed.