如何将 DataTables jQuery 对象与 ZendX_jQuery 一起使用
我正在尝试在项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须自己启用它,否则这是在内部完成的。
Source
这是指 jQuery 的视图助手,所以它是
$this->view->jQuery()->enable()控制器操作中的
或视图中的$this->jQuery()->enable()
。You have to enable it yourself, which is otherwise done internally.
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.