Management Panel renderPanel core script question

I am adding to my community site a dynamic header and this header has a "form" where we do a AJAX call to another site request from my company.

There is this RenderPanel JS script from the "core" functionality which seems to not be accesible through widgets or anything and is appending the "dynamic" visible manage panel to the left side on the "first" form.

This is causing issues because I am applying some custom CSS to the content on this form and is hiding the panel and not showing it on the page anymore.

core Script sample from the community "hidden" js:

function renderPanel(context, options) {

		// init container if not inited
		if(!context.container) {
			context.container = $($.telligent.evolution.template.compile(context.panelContainerTemplateId)()).appendTo('form').first();
			handleSearching(context);
			handlePanelFilterLinks(context);
		}
		
		.....
}

EDIT: is there anyway to change this script? and update the "form" to a more specific telligent one?

Parents Reply Children