How to Set item at right of APEX interactive Report search bar?
we can set position of any item at right of interactive search bar by using simple JavaScript code.
Steps :
1. Interactive Report Region Static ID : emp_region
2. Page Item: P15_NEW_POS
3. Create a Dynamic Action on page load
Create DA: Name = Change Item Position
Event = Page Load
Condition = -Select- IF Apex version 5.1 then Client-side Condition = -Select-
Action = Execute JavaScript Code
Settings : Code
$('#emp_region_toolbar').append($('#P15_NEW_POS_CONTAINER')); // to set position
$('#P15_NEW_POS_LABEL').css('display', 'block'); // make item label as block
$('#P15_NEW_POS_LABEL').css('white-space', 'nowrap'); // disable wrapping
No comments:
Post a Comment
Please do not add any spam links or abusive comments.