protected function renderQtipForPreviewImage()
 {
     $qtipOptions = array('position' => array('my' => 'center left', 'at' => 'top right', 'target' => 'mouse', 'adjust' => array('x' => 10)), 'show' => array('solo' => true, 'modal' => false, 'ready' => true, 'effect' => 'js:function(offset){$(this).fadeIn(200);}'), 'hide' => array('effect' => 'js:function(offset){$(this).fadeOut(200);}'), 'style' => array('classes' => 'builder-image-element-qtip'), 'overwrite' => false, 'content' => array('text' => "js:function(event, api) {\n                                \$.ajax({\n                                    url: \$(this).data('url')\n                                })\n                                .then(function(content) {\n                                    api.set('content.text', content);\n                                }, function(xhr, status, error) {\n                                    api.set('content.text', status + ': ' + error);\n                                });\n                            }"));
     ZurmoTip::qtip2('.builder-uploaded-image-thumb > img', $qtipOptions, true, true);
 }