Oracle APEX 中隐藏项的 class apex_disabled 的类似物
The analogue of the class apex_disabled for hide item in Oracle APEX
如果我需要禁用我使用的项目 apex_disabled class.
例如:$('#myitem').addClass('apex_disabled')
我需要使用什么 class 来隐藏元素? apex_hide 或 apex_hided 不起作用。
只需使用JQuery:
$('#myitem').hide();
// revert
$('#myitem').show();
或者用 CSS class
$('#myitem').addClass('hidden-lg-down');
//revert
$('#myitem').removeClass('hidden-lg-down');
如果我需要禁用我使用的项目 apex_disabled class.
例如:$('#myitem').addClass('apex_disabled')
我需要使用什么 class 来隐藏元素? apex_hide 或 apex_hided 不起作用。
只需使用JQuery:
$('#myitem').hide();
// revert
$('#myitem').show();
或者用 CSS class
$('#myitem').addClass('hidden-lg-down');
//revert
$('#myitem').removeClass('hidden-lg-down');