Hi
i need to achieve below:
- i should be able to see fixed header on popup window
- i should be able to close popup window by just clicking on the X orbutton on popupwindow
To achieve above, i did below on popupwindow screen- on load of the popupwondow event, i added below code:
$('[name=mobileheader50]').attr('data-position','fixed')
i tried below also
$('div[dsid="mobilepanel1"]').attr('data-position','fixed')
every thing works fine but when i scroll text in the popup window, header bar also scrolling.
i want header bar to be fixed.
i checked length of "$('div[dsid="mobilepanel1"]')" and $('[name=mobileheader50]')
it shows as 1. that is correct
but header is staying as fixed on the popup screen
please help on this. do i need to add any other attribute
- on load of the popupwondow event, i added below code: