CakePHP:在灯箱中显示视图?

发布于 2024-11-18 00:54:59 字数 77 浏览 1 评论 0原文

我正在寻找一种在 Cakephp 中的灯箱或厚箱中显示视图的方法。

有什么办法我可以做到这一点吗?

提前致谢

I am looking for a way to display a view in a lightbox or thickbox in Cakephp.

Is there a way how I could do this?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇年纸鸢 2024-11-25 00:54:59

像这样的事情应该可以做到~

您将需要创建一个新的布局,其中仅包含灯箱视图所需的 CSS 和格式。

function show_lightbox($id) {
    $this->layout = 'lightbox';
    $this->set('page_content', $this->Model->read(null, $id));
}

并创建指向此内容的链接,就像您通常在另一个视图中使用适当的灯箱 relclass 一样,不要忘记包含灯箱的 JS/CSS。

<?php echo $this->Html->link('View in lightbox', 
                               array('action'=>'show_lightbox', 1),     
                               array('class'=>'lightbox-link', 'rel'=>'lightbox')
                             );  
/* <a href="controller/show_lightbox/1" 
    class="lightbox-link" rel="lightbox">View in lightbox</a>*/
?>

Something like this should do it ~

You'll want to create a new layout, that only includes the CSS and formatting required for the lightbox view.

function show_lightbox($id) {
    $this->layout = 'lightbox';
    $this->set('page_content', $this->Model->read(null, $id));
}

and create links to this content, as you normally would in another view with the appropriate lightbox rel or class, not forgetting to include the JS/CSS for the lightbox.

<?php echo $this->Html->link('View in lightbox', 
                               array('action'=>'show_lightbox', 1),     
                               array('class'=>'lightbox-link', 'rel'=>'lightbox')
                             );  
/* <a href="controller/show_lightbox/1" 
    class="lightbox-link" rel="lightbox">View in lightbox</a>*/
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文