4 Replies Latest reply on Aug 18, 2008 4:31 AM by sportsbaby1980

    using ext js in JBP

       

      <body>
      </body>
      <script type=text/javascript>
      var test="test";
      Ext.onReady(
       function(){
       var lo = Layout.init();
       WfQuery<%=request.getAttribute("moduleCode")%>.init();
       Ext.QuickTips.init();
       lo.on("layout",function(o){
       WfQuery<%=request.getAttribute("moduleCode")%>.autoSize();
       }
       );
       }
      );
      </script>
      



      HTML and js code IE generated run without an error.
      But nothing is displayed.

      any advice?
      thanks a lot.

        • 1. Re:  using ext js in JBP

          The version of ext js is 1.11.

          I have done a test:
          1.take ext js 1.11's example with other necessary resource ,for example:ext-all.js, ext-base.js in my web application. and modify the menus example(especially the url of the needed resource in menus.html),so I can access it from web.
          but in the portal page,it doest not run as html mode.
          there is an error:syntax error line 6 char 1.

          2.do the same thing like ext js 1.11 with ext js 2.2.
          it runs well.
          directly open with IE and access from the web site, runs the same.

          • 2. Re:  using ext js in JBP

            I have done a more clear test.

            ext js 1.11 and ext js 2.2 run very well .

            • 3. Re:  using ext js in JBP

              But if put 2 same portlet window in the same portal page which return the same jsp page using extjs ,there will be display error occured.

              • 4. Re:  using ext js in JBP

                now ,I have found the problem.
                The reason is:
                our jsp page contains a body tag,but the css effect is load on the portal page's body.
                so after deleting the body tag,and modifing the div's class ,it runs well.