I also encounter such a problem. Here is my solution: add the following javascript to your header:
$(document).on("pagebeforeshow", function( event, data ) { $('#my-panel').panel("open"); })
and in the panel add two attributes: data-swipe-close = "false", data-dismissible = "false"
then the panel will always be displayed in your html
source share