如何将 DataTables jQuery 对象与 ZendX_jQuery 一起使用

发布于 2024-09-16 19:06:35 字数 1375 浏览 4 评论 0原文

我正在尝试在项目中使用 ZendX_jQuery 和 Datatables。在我的布局文件中,我有:

  if($this->jQuery()->isEnabled()){
   $this->jQuery()->setLocalPath('/js/jquery/js/jquery-1.4.2.min.js')
    ->setUiLocalPath('/js/jquery/js/jquery-ui-1.8.4.custom.min.js')
    ->addStylesheet('/css/smoothness/custom.css')
    ->addJavascriptFile('/js/jquery.dataTables.js');
   echo $this->jQuery();
  }

每当我渲染使用 ZendX 帮助器的对象时,数据表对象都会渲染得很好。但是,如果我没有对象,那么表格将不会呈现。

示例:

由于日期选择器,数据表工作:

<link rel="stylesheet" href="/css/smoothness/custom.css" type="text/css" media="screen" />
<script type="text/javascript" src="/js/jquery/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/js/jquery/js/jquery-ui-1.8.4.custom.min.js"></script> 
<script type="text/javascript" src="/js/jquery.dataTables.js"></script>

由于没有日期选择器,数据表损坏:

<link rel="stylesheet" href="/css/smoothness/custom.css" type="text/css" media="screen" /> 
<script type="text/javascript" src="/js/jquery/js/jquery-1.4.2.min.js"></script> 
<script type="text/javascript" src="/js/jquery.dataTables.js"></script> 

这里明显的区别是,如果没有其他 jQuery 对象,ZendX 不会将 jQuery UI 文件放在标头中。有没有办法强制它这样做?我不喜欢必须声明 UI 脚本文件两次才能确保每个页面都能获取它。

谢谢,

乔钦

I am trying to use ZendX_jQuery and Datatables for a project. In my layout file I have:

  if($this->jQuery()->isEnabled()){
   $this->jQuery()->setLocalPath('/js/jquery/js/jquery-1.4.2.min.js')
    ->setUiLocalPath('/js/jquery/js/jquery-ui-1.8.4.custom.min.js')
    ->addStylesheet('/css/smoothness/custom.css')
    ->addJavascriptFile('/js/jquery.dataTables.js');
   echo $this->jQuery();
  }

Whenever I have object being rendered that use the ZendX helper, the datatables object renders fine. However, if I dont have an object then the table wont render.

Examples:

Datatables working because of datepicker:

<link rel="stylesheet" href="/css/smoothness/custom.css" type="text/css" media="screen" />
<script type="text/javascript" src="/js/jquery/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/js/jquery/js/jquery-ui-1.8.4.custom.min.js"></script> 
<script type="text/javascript" src="/js/jquery.dataTables.js"></script>

Datatables broken because no datepicker:

<link rel="stylesheet" href="/css/smoothness/custom.css" type="text/css" media="screen" /> 
<script type="text/javascript" src="/js/jquery/js/jquery-1.4.2.min.js"></script> 
<script type="text/javascript" src="/js/jquery.dataTables.js"></script> 

The obvious difference here is that without other jQuery objects, ZendX won't place the jQuery UI file in the header. Is there a way to force it to do so? I dont like having to declare the UI script file twice to make sure every page gets it.

Thanks,

Joe Chin

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

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

发布评论

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

评论(1

半暖夏伤 2024-09-23 19:06:35

您必须自己启用它,否则这是在内部完成的。

要访问 javascript,我们必须
利用 jQuery() 功能。
两个助手都已经激活了他们的
他们调用的依赖项
jQuery()->enable()
jQuery()->uiEnable() [...]

Source

这是指 jQuery 的视图助手,所以它是 $this->view->jQuery()->enable()控制器操作中的 或视图中的 $this->jQuery()->enable()

You have to enable it yourself, which is otherwise done internally.

To access the javascript we have to
utilize the jQuery() functionality.
Both helpers already activated their
dependencies that is they have called
jQuery()->enable() and
jQuery()->uiEnable() [...]

Source

That's referring to the view helper for jQuery, so it's $this->view->jQuery()->enable() within a controllers action or $this->jQuery()->enable() within a view.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文