Zend框架 - JQuery的 - 日期选择器 - 图片不显示(Zend Framework -

2019-10-19 14:31发布

我正在开发与Zend框架的Web应用程序,而我使用JQuery我的形式。 我有一个形式的DatePicker问题。 当我点击了文字输入时,出现的DatePicker,但没有主题图片...

在我的引导:

 $view->addHelperPath('ZendX/JQuery/View/Helper/', 'ZendX_JQuery_View_Helper');
                $viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer();
                $viewRenderer->setView($view);
                Zend_Controller_Action_HelperBroker::addHelper($viewRenderer);

在我的应用程序/布局/脚本/ layout.phtml:

    <?php echo $this->headLink()->appendStylesheet('http://localhost:10089/css/global.css') ?>

    <?php $this->jQuery()->setLocalPath('http://localhost:10089/js/jquery/jquery-1.3.2.js')
          ->addStylesheet('http://localhost:10089/js/jquery/themes/base/ui.datepicker.css');
      echo $this->jQuery();
    ?>

我想这是一个路径问题莫名其妙,但我看不出有什么错在这里......我看看ui.datepicker.css,并没有对图片文件夹没有联系,但是当我运行演示与交付JQuery的,在日期选择器上显示其图像...

请帮我!

Answer 1:

好吧发现了什么是错误的...

在layout.phtml:

  <?php $this->jQuery()->setLocalPath('http://localhost:10089/js/jquery/jquery-1.3.2.js')
               ->addStylesheet('http://localhost:10089/js/jquery/themes/base/ui.all.css')
               ->addStylesheet('http://localhost:10089/js/jquery/themes/base/ui.datepicker.css')
               ->addStylesheet('http://localhost:10089/js/jquery/themes/base/ui.core.css');
        echo $this->jQuery();
    ?>

在ui.all.css和核心失踪....



文章来源: Zend Framework - JQuery - Date Picker - Images not displayed