PageSelect widget in popover

Permalink
Hello. I'm trying to add SelectPage widget in bootstrap popover. Here is code:
$page_selector = $app->make('helper/form/page_selector');

$(document).ready( function() {
     $(document).popover({
      selector:'i.properties',
      html: 'true',
      placement: 'top',
      title: 'Title',
      content: "<?php $page_selector->selectPage('chart_href', 1) ?>" 
     });


Php code adds markup and script for the widget and it's work well on normal page. But not on popover window. Is there any way to add page select widget in popover?

vr5