<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆-40  評論-66  文章-0  trackbacks-0

    eXtremeComponents FAQ

    eXtremeComponents FAQ(中文版)

    Jeff Johnston

    Lucky

    冷月宮主

    版本0.1.0

    本文檔允許在遵守以下兩條原則的條件下被使用和傳播: 1)不能憑借本文檔索取任何費用 2)以任何方式(印刷物或電子版)使用和傳播時本文檔時,必須包含本版權(quán)申明

    (更新中...)


    eXtremeComponents FAQ(中文)


    1.?如何使用導出功能

    Q: 如何使用導出功能

    A: 為了使用導出功能,只需要在web.xml文件中加入eXtremeComponents的導出過濾器的配置,內(nèi)容如下:

    <filter>
    <filter-name>eXtremeExport</filter-name>
    <filter-class>org.extremecomponents.table.filter.ExportFilter</filter-class>
    <init-param>
    <param-name>responseHeadersSetBeforeDoFilter</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>eXtremeExport</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>

    2.?傳入中文參數(shù)亂碼

    Q: 傳入中文參數(shù)亂碼,如下頁面:

    		<form id="form1" name="form1" method="post" action="應用eXtremeTable的action或是結(jié)果頁面名">
    <select name="selecttype" size="6">
    <option value="第一個">第一個</option>
    <option value="第二個">第二個</option>
    <option value="第三個">第三個</option>
    </select>
    <input type="text" name="username" />
    <input type="submit" name="Submit" value="提交" />
    </form>

    當你提交時含有eXtremeTable的結(jié)果頁面會自動取得頁面上的表單參數(shù),那怕是經(jīng)過了action的mapping.findForward("forward"),在我的試用過程中到頁面上會出現(xiàn)傳遞過去的參數(shù),但出現(xiàn)了亂碼問題,使用查詢(filter)功能是的中文參數(shù)問題類似。

    A:

    1. 確認服務器的參數(shù)是否設(shè)置了正確的編碼,如果使用Tomcat請確認Server.xml:

       <Connector port="80" URIEncoding="UTF-8" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false"
      redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" />
    2. 添加編碼過濾器到你的應用工程:

      /*
      * Copyright 1999-2001,2004 The Apache Software Foundation.
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
      * You may obtain a copy of the License at
      *
      * http://www.apache.org/licenses/LICENSE-2.0
      *
      * Unless required by applicable law or agreed to in writing, software
      * distributed under the License is distributed on an "AS IS" BASIS,
      * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      * See the License for the specific language governing permissions and
      * limitations under the License.
      */


      package filters;


      import java.io.IOException;
      import javax.servlet.Filter;
      import javax.servlet.FilterChain;
      import javax.servlet.FilterConfig;
      import javax.servlet.ServletException;
      import javax.servlet.ServletRequest;
      import javax.servlet.ServletResponse;
      import javax.servlet.UnavailableException;


      /**
      * <p>Example filter that sets the character encoding to be used in parsing the
      * incoming request, either unconditionally or only if the client did not
      * specify a character encoding. Configuration of this filter is based on
      * the following initialization parameters:</p>
      * <ul>
      * <li><strong>encoding</strong> - The character encoding to be configured
      * for this request, either conditionally or unconditionally based on
      * the <code>ignore</code> initialization parameter. This parameter
      * is required, so there is no default.</li>
      * <li><strong>ignore</strong> - If set to "true", any character encoding
      * specified by the client is ignored, and the value returned by the
      * <code>selectEncoding()</code> method is set. If set to "false,
      * <code>selectEncoding()</code> is called <strong>only</strong> if the
      * client has not already specified an encoding. By default, this
      * parameter is set to "true".</li>
      * </ul>
      *
      * <p>Although this filter can be used unchanged, it is also easy to
      * subclass it and make the <code>selectEncoding()</code> method more
      * intelligent about what encoding to choose, based on characteristics of
      * the incoming request (such as the values of the <code>Accept-Language</code>
      * and <code>User-Agent</code> headers, or a value stashed in the current
      * user's session.</p>
      *
      * @author Craig McClanahan
      * @version $Revision: 1.3 $ $Date: 2004/02/28 03:35:22 $
      */

      public class SetCharacterEncodingFilter implements Filter {


      // ----------------------------------------------------- Instance Variables


      /**
      * The default character encoding to set for requests that pass through
      * this filter.
      */
      protected String encoding = null;


      /**
      * The filter configuration object we are associated with. If this value
      * is null, this filter instance is not currently configured.
      */
      protected FilterConfig filterConfig = null;


      /**
      * Should a character encoding specified by the client be ignored?
      */
      protected boolean ignore = true;


      // --------------------------------------------------------- Public Methods


      /**
      * Take this filter out of service.
      */
      public void destroy() {

      this.encoding = null;
      this.filterConfig = null;

      }


      /**
      * Select and set (if specified) the character encoding to be used to
      * interpret request parameters for this request.
      *
      * @param request The servlet request we are processing
      * @param result The servlet response we are creating
      * @param chain The filter chain we are processing
      *
      * @exception IOException if an input/output error occurs
      * @exception ServletException if a servlet error occurs
      */
      public void doFilter(ServletRequest request, ServletResponse response,
      FilterChain chain)
      throws IOException, ServletException {

      // Conditionally select and set the character encoding to be used
      if (ignore || (request.getCharacterEncoding() == null)) {
      String encoding = selectEncoding(request);
      if (encoding != null)
      request.setCharacterEncoding(encoding);
      }

      // Pass control on to the next filter
      chain.doFilter(request, response);

      }


      /**
      * Place this filter into service.
      *
      * @param filterConfig The filter configuration object
      */
      public void init(FilterConfig filterConfig) throws ServletException {

      this.filterConfig = filterConfig;
      this.encoding = filterConfig.getInitParameter("encoding");
      String value = filterConfig.getInitParameter("ignore");
      if (value == null)
      this.ignore = true;
      else if (value.equalsIgnoreCase("true"))
      this.ignore = true;
      else if (value.equalsIgnoreCase("yes"))
      this.ignore = true;
      else
      this.ignore = false;

      }


      // ------------------------------------------------------ Protected Methods


      /**
      * Select an appropriate character encoding to be used, based on the
      * characteristics of the current request and/or filter initialization
      * parameters. If no character encoding should be set, return
      * <code>null</code>.
      * <p>
      * The default implementation unconditionally returns the value configured
      * by the <strong>encoding</strong> initialization parameter for this
      * filter.
      *
      * @param request The servlet request we are processing
      */
      protected String selectEncoding(ServletRequest request) {

      return (this.encoding);

      }


      }
    3. 在web.xml中添加編碼過濾器配置:

       <filter>
      <filter-name>Set Character Encoding</filter-name>
      <filter-class>filters.SetCharacterEncodingFilter</filter-class>
      <init-param>
      <param-name>encoding</param-name>
      <param-value>gb2312</param-value>
      </init-param>
      </filter>
      <filter-mapping>
      <filter-name>Set Character Encoding</filter-name>
      <url-pattern>/*</url-pattern>
      </filter-mapping>

    3.?導出時中文文件名亂碼

    Q:關(guān)于導出時中文文件名為亂碼的問題

    A: 這是個bug,建議使用英文文件名,主要原因還是編碼問題。我們現(xiàn)在正在想辦法解決。

    4.?導出時文件內(nèi)容亂碼

    Q:導出時文件內(nèi)容亂碼

    A:首先請確認使用的是extremecomponents-1.0.1-M5-A4版以后的版本

    1. Excle: 導出為Excle的中文問題已經(jīng)修正,默認的情況下支持導出中文,用戶不需要任何改動
    2. PDF : 由于extremecomponents使用了FOP來生成PDF文件,F(xiàn)OP在導出中文內(nèi)容時會產(chǎn)生亂碼。具體的解決方案 大家可以參考最新eXtremeComponents包:支持 PDF中文導出

    5.?變量命名問題

    Q:當變量名為"action",在IE下執(zhí)行產(chǎn)生javascript錯誤

    A: 內(nèi)部使用了一些關(guān)鍵字,就目前我所知的為"action"、"submit"。建議大家命名時盡量避免,如果大家必須使用,則可以使用table標簽的autoIncludeParameters參數(shù)設(shè)置為"false":

    autoIncludeParameters="false"

    6.?格式化輸出表單中的數(shù)據(jù)

    Q:怎么樣格式化輸出表單中的數(shù)據(jù)

    A: 你可以設(shè)置列的cell:

    1. 日期格式化: cell = " date " format = " yyyy-MM-dd "
    2. 數(shù)字格式化: cell="currency" format="###,###,##0.00"

    詳細信息請參考指南

    7.?加入鏈接

    Q:怎么樣加入鏈接

    A: 你可以參考下例:

                <ec:table
    var="pres"
    items="presidents"
    action="${pageContext.request.contextPath}/compact.run"
    imagePath="${pageContext.request.contextPath}/images/table/compact/*.gif"
    view="compact"
    title="Compact Toolbar View"
    showTooltips="false"
    >
    <ec:exportPdf
    fileName="output.pdf"
    tooltip="Export PDF"
    headerColor="black"
    headerBackgroundColor="#b6c2da"
    headerTitle="Presidents"
    text="PDF"
    />
    <ec:exportXls
    fileName="output.xls"
    tooltip="Export Excel"
    text="XLS"
    />
    <ec:row>
    <ec:column property="fullName" title="Name">
    <a >${pres.fullName}</a>
    </ec:column>
    <ec:column property="nickName"/>
    <ec:column property="term"/>
    <ec:column property="born" cell="date"/>
    <ec:column property="died" cell="date"/>
    <ec:column property="career"/>
    </ec:row>
    </ec:table>

    8.?行高亮顯示

    Q: 我想使用行的高亮顯示如何設(shè)置

    A: 你只需要設(shè)置行標簽的highlightRow屬性: highlightRow="true"。eXtremeComponents提供了很多接口允許用戶按照自己的習慣來進行定制,包括:CSS、CELL、View。相關(guān)信息請參考指南。



    by lucky
    posted on 2007-01-26 16:04 Super·shen BLOG 閱讀(280) 評論(0)  編輯  收藏

    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導航:
     
    主站蜘蛛池模板: 少妇高潮太爽了在线观看免费| 永久在线免费观看| 亚洲第一视频在线观看免费| 日韩a毛片免费观看| 在线涩涩免费观看国产精品| 人人揉揉香蕉大免费不卡| 永久免费在线观看视频| 亚洲一区影音先锋色资源| 亚洲sss综合天堂久久久| 日本高清免费中文在线看| 亚洲精品和日本精品| 亚洲天天在线日亚洲洲精| 精品久久亚洲一级α| 国产偷伦视频免费观看| 免费人成年激情视频在线观看| 亚洲av无码无在线观看红杏| 亚洲va中文字幕| 嫩草成人永久免费观看| 91精品国产亚洲爽啪在线影院| 人人爽人人爽人人片av免费| 无人在线观看完整免费版视频| 亚洲一级特黄特黄的大片| 免费被黄网站在观看| 精品亚洲成a人片在线观看| 国产男女爽爽爽爽爽免费视频| 亚洲人成图片小说网站| 亚洲国产精品ⅴa在线观看| 四虎影视永久免费观看地址| 国产精品亚洲精品观看不卡| 在线日韩av永久免费观看| 亚洲免费观看网站| 国内精品99亚洲免费高清| 国产精品国产自线拍免费软件| 亚洲大尺码专区影院| 91制片厂制作传媒免费版樱花| 国产亚洲成人久久| 免费人成视频在线观看免费| 久久精品亚洲综合| 四虎影院免费在线播放| 亚洲无人区码一二三码区别图片| 国产精品免费网站|