001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.hayabusa.taglib; 017 018import org.opengion.hayabusa.common.HybsSystem; 019import org.opengion.hayabusa.common.HybsSystemException; 020import org.opengion.fukurou.util.XHTMLTag; 021 022import static org.opengion.fukurou.util.StringUtil.nval ; 023 024/** 025 * 入力フィールドやボタンなどを作成するHTML拡張タグです。 026 * 027 * 簡易的な入力用タグとして、columnタグがありますので、通常は、columnタグをお使い下さい。 028 * name 属性に ラベルリソース のキーを与えることで、ロケールにあわせたリソースを 029 * 使用して、画面に表示します。 030 * ロケールは、session 登録項目の HybsSystem#LANG_KEY を初期値で使用し、 031 * language 属性で定義されている場合は、そちらを優先します。 032 * 033 * @og.formSample 034 * ●形式:<og:input name=… value=… /> 035 * ●body:あり(EVAL_BODY_BUFFERED:BODYを評価し、{@XXXX} を解析します) 036 * 037 * ●Tag定義: 038 * <og:input 039 * type 【HTML】表示形式[text/password/checkbox/radio/submit/reset/button/image/file]を指定します(初期値:text) 040 * HTML5追加分[search/tel/url/email/datetime/date/month/week/time/datetime-local/number/range/color] 041 * name 【HTML】名前を指定します 042 * value 【HTML】このフィールドに設定する値を指定します 043 * caseKey 【TAG】このタグ自体を利用するかどうかの条件キーを指定します(初期値:null) 044 * caseVal 【TAG】このタグ自体を利用するかどうかの条件値を指定します(初期値:null) 045 * caseNN 【TAG】指定の値が、null/ゼロ文字列 でない場合(Not Null=NN)は、このタグは使用されます(初期値:true) 046 * caseNull 【TAG】指定の値が、null/ゼロ文字列 の場合は、このタグは使用されます(初期値:true) 047 * lbl 【TAG】ラベルリソースのラベルIDを指定します 048 * lbls 【TAG】ラベルをCSV形式で複数指定します 049 * td 【TAG】テーブル形式の <td> タグを使用するかどうか[yes/no/false]を指定します(初期値:yes) 050 * colspan 【TAG】フィールド部分の colspan を指定します 051 * nextForm 【TAG】入力カーソルを指定されたname属性のフィールドへ自動的に移動します 052 * optionAttributes 【TAG】JavaScript などの HTML基本タグ以外の属性を、そのままタグとして使用します 053 * must 【TAG】必須入力を表す色に変えるかどうか[true/false]を指定します(初期値:false) 054 * mustAny 【TAG】選択必須入力(どれかひとつ必須)を表す色[true/mustAny/その他]を指定します(初期値:無指定) 055 * aimai 【TAG】曖昧検索可能フィールドとして、曖昧検索方法を指定します(初期値:null) 056 * size 【HTML】横幅を指定します(typeがtextまたはpasswordの場合は文字数で、それ以外はピクセル) 057 * maxlength 【HTML】最大入力文字数を指定します(typeがtextまたはpasswordの場合) 058 * checked 【HTML】type が checkbox か radio のとき、初めから選択された状態で表示します("checked"のみ指定可) 059 * src 【HTML】type が image の場合、送信ボタンとして利用する画像のURLをセットします 060 * alt 【HTML】type が image の場合で、画像が表示できない場合の代替テキストをセットします 061 * accept 【HTML】type が file の場合に、MIMEタイプをCSV形式で複数指定出来ます 062 * usemap 【HTML】type が image の場合、クライアントサイド・イメージマップのURLを指定します 063 * ismap 【HTML】type が image の場合に、サーバーサイド・イメージマップを使用する場合に指定します 064 * id 【HTML】要素に対して固有の名前(id)をつける場合に設定します 065 * lang 【HTML】要素の内容と他の属性値の言語(lang,xml:lang)を指定します 066 * dir 【HTML】文字表記の方向(dir)を指定します 067 * title 【HTML】要素に対する補足的情報(title)を設定します 068 * style 【HTML】この要素に対して適用させるスタイルシート(style)を設定します 069 * readonly 【TAG】その部品に対して変更が出来ないように(readonly)指定します(サーバーに送信される) 070 * disabled 【TAG】その部品に対して、選択や変更が出来ないように(disabled)指定します(サーバーに送信されない) 071 * tabindex 【HTML】タブの移動順(tabindex)を指定します(0 〜 32767) 072 * accesskey 【HTML】アクセスキー(alt+キーで直接指定)を割り当てます 073 * clazz 【HTML】要素に対して class 属性を設定します 074 * language 【TAG】タグ内部で使用する言語コード[ja/en/zh/…]を指定します 075 * onClick 【HTML】JavaScriptのイベント onClick を設定します(例:onClick="renew('query.jsp','QUERY');") 076 * onChange 【HTML】JavaScriptのイベント onChange を設定します(例:onChange="renew('query.jsp','QUERY');") 077 * onBlur 【HTML】JavaScriptのイベント onBlur を設定します(例:onBlur="this.value=value.toUpperCase();") 078 * onFocus 【HTML】JavaScriptのイベント onFocus を設定します 079 * ondblClick 【HTML】JavaScriptのイベント ondblClick を設定します 080 * onMouseDown 【HTML】JavaScriptのイベント onMouseDown を設定します 081 * onMouseUp 【HTML】JavaScriptのイベント onMouseUp を設定します 082 * onMouseMove 【HTML】JavaScriptのイベント onMouseMove を設定します 083 * onMouseOut 【HTML】JavaScriptのイベント onMouseOut を設定します 084 * onMouseOver 【HTML】JavaScriptのイベント onMouseOver を設定します 085 * onSelect 【HTML】JavaScriptのイベント onSelect を設定します 086 * onKeydown 【HTML】JavaScriptのイベント onKeydown を設定します 087 * onKeypress 【HTML】JavaScriptのイベント onKeypress を設定します 088 * onKeyup 【HTML】JavaScriptのイベント onKeyup を設定します 089 * autocomplete 【HTML5】入力候補を提示して入力内容を自動補完する[on/off](初期値はon)。 090 * autofocus 【HTML5】指定した入力欄にカーソルが当たって自動的にフォーカスされます。 091 * pattern 【HTML5】正規表現で入力値のパターンを指定します。 092 * placeholder 【HTML5】入力欄に初期表示する内容を指定します。 093 * required 【HTML5】入力必須を指定します 094 * list 【HTML5】ユーザーに入力候補として提案するデータリストの要素のid属性の値を指定します。 095 * min 【HTML5】入力欄で入力できる最小値を指定します。 096 * max 【HTML5】入力欄で入力できる最大値を指定します。 097 * step 【HTML5】入力欄で刻むステップ値を指定する。 098 * roles 【TAG】ロールをセットします 099 * debug 【TAG】デバッグ情報を出力するかどうか[true/false]を指定します(初期値:false) 100 * > ... Body ... 101 * </og:input> 102 * 103 * ●使用例 104 * <og:input name="OYA" /> lbl属性が指定されていない場合は、name属性をキーにしてLabelResourceを読み取ります。 105 * <og:input name="PN" lbl="KO" /> lbl属性を指定することで、ラベルだけを付替えることができます。 106 * <og:input name="PN" size="13" maxlength="11" /> 強制的にサイズの変更をするときは、size属性、maxlength属性を使用できます。 107 * <og:input name="OYA" td="false" /> 自動作成されるtdタグやラベルを外すときはtd属性を使います。 108 * <og:input name="OYA" td="no" /> 自動作成されるtdタグを外し、ラベルとフィールドは残します。 109 * <og:input name="PN" optionAttributes="onBlur='blr()' 110 * onFocus='fcs()'" /> 111 * JavaScriptのイベントをコーディングするときは、optionAttributes属性を使います。 112 * <og:input type="radio" name="OYA" /> ラベル部分と入力フィールド部分がテーブルタグの<td>により左右に分割されます。 113 * 114 * <table> 115 * <tr><og:input name="PN" value="{@PN}" /></tr> 116 * <tr><og:input name="CD" value="{@CD}" /></tr> 117 * </table> 118 * 119 * <table> 120 * <tr><og:input name="PN" value="{@PN}" >部品入力フィールド</og:input></tr> 121 * <tr><og:input name="CD" value="{@CD}" >コードフィールド</og:input></tr> 122 * </table> 123 * HTML 表示時は、前後に<tr>タグで囲って,整形できます。 124 * 125 * <og:input name="A" nextForm="B" /> 最大桁数入力後、フォーム B にフォーカスが移動します。 126 * <og:input name="B" /> 127 * 128 * BODY 部分に記述した値は、入力フィールドの直後にセットされます。 129 * <og:input name="PN" > 130 * <button type="button" onclick="popup(・・・);return false;"> 131 * <og:message lbl="POPUP" comment="▼" /> 132 * </button> 133 * </og:input> 134 * 135 * @og.group 画面部品 136 * 137 * @version 4.0 138 * @author Kazuhiko Hasegawa 139 * @since JDK5.0, 140 */ 141public class InputTag extends HTMLTagSupport { 142 //* このプログラムのVERSION文字列を設定します。 {@value} */ 143 private static final String VERSION = "5.7.1.0 (2013/12/06)" ; 144 145 private static final long serialVersionUID = 571020131206L ; 146 147 // 5.7.1.0 (2013/12/06) HTML5 で新たに追加された、type を追加 148// private static final String CHECK_TYPE = "|text|password|checkbox|radio|submit|reset|button|image|file|hidden|" ; 149 private static final String CHECK_TYPE = "|text|password|checkbox|radio|submit|reset|button|image|file|hidden|" 150 + "search|tel|url|email|datetime|date|month|week|time|datetime-local|number|range|color|" ; 151 152 // 4.0.0 (2005/01/31) HTML_LABEL_SEPARATOR を boolean 変数として取得します。 153 private final String CLM = ( HybsSystem.sysBool( "HTML_LABEL_SEPARATOR" ) ) ? ":" : "" ; 154 155 private String td_flag = "yes"; // yes:<td> タグを使用 / false:フィールドのみ / no:ラベルとフィールド 156 // 3.0.1.4 (2003/03/17) colspan 属性を追加。 157 private String colspan = ""; 158 // 3.5.4.2 (2003/12/15) nextForm 属性を追加。 159 private String nextForm = null; 160 161 // 4.0.0 (2005/01/31) COLUMNS_MAXSIZE を定義しておきます。 162 private final int COLUMNS_MAXSIZE = HybsSystem.sysInt( "HTML_COLUMNS_MAXSIZE" ) ; // 表示フィールドの大きさ 163 164 // 4.0.0 (2007/05/30) BODY 部分に記述した値は、入力フィールドの直後にセットされます。 165 private String body = null; 166 167 /** 168 * Taglibの開始タグが見つかったときに処理する doStartTag() を オーバーライドします。 169 * 170 * @og.rev 4.0.0.0 (2007/05/30) 新規追加(BODY部の評価) 171 * @og.rev 5.2.2.0 (2010/11/01) caseKey 、caseVal 属性対応 172 * 173 * @return 後続処理の指示( EVAL_BODY_BUFFERED ) 174 */ 175 @Override 176 public int doStartTag() { 177 // 5.2.2.0 (2010/11/01) caseKey 、caseVal 属性対応 178 if( useTag() ) { 179 return( EVAL_BODY_BUFFERED ); // Body を評価する。( extends BodyTagSupport 時) 180 } 181 return ( SKIP_BODY ); // Body を評価しない 182 } 183 184 /** 185 * Taglibのタグ本体を処理する doAfterBody() を オーバーライドします。 186 * 187 * @og.rev 4.0.0.0 (2007/05/30) 新規追加(BODY部の評価) 188 * 189 * @return 後続処理の指示(SKIP_BODY) 190 */ 191 @Override 192 public int doAfterBody() { 193 body = getBodyString(); 194 return(SKIP_BODY); 195 } 196 197 /** 198 * タグリブオブジェクトをリリースします。 199 * キャッシュされて再利用されるので、フィールドの初期設定を行います。 200 * 201 * @og.rev 2.0.0.4 (2002/09/27) カスタムタグの release() メソッドを、追加 202 * @og.rev 2.0.0.8 (2002/10/09) yes/no/false で指定するように変更 203 * @og.rev 3.0.1.4 (2003/03/17) colspan 属性を追加。 204 * @og.rev 3.1.1.2 (2003/04/04) Tomcat4.1 対応。release2() を doEndTag()で呼ぶ。 205 * @og.rev 3.5.4.2 (2003/12/15) nextForm 属性を追加。 206 * @og.rev 5.8.7.1 (2015/05/22) body追加(6.2.4.0対応) 207 */ 208 @Override 209 protected void release2() { 210 super.release2(); 211 td_flag = "yes"; // table形式の <td> タグを使用するかどうか 212 colspan = ""; 213 nextForm = null; // 3.5.4.2 (2003/12/15) 214 body = null; // 5.8.7.1 (2015/05/22) 215 } 216 217 /** 218 * 検索条件の入力用のテキストフィールドを作成します。 219 * 220 * テーブルタグによりフィールドは分割されます。 221 * 使用時は、テーブルタグを前後に使用して下さい。 222 * 223 * @og.rev 2.0.0.8 (2002/10/09) yes/no/false で指定するように変更 224 * @og.rev 2.0.1.0 (2002/10/10) ラベルとフィールドのセパレーターとして、コロン(:)を使用するかどうかを指定できる 225 * @og.rev 3.0.1.2 (2003/03/07) forward.jsp の代替用 CommonForwardTag を新規作成 226 * @og.rev 3.1.0.1 (2003/03/26) キャッシュエントリーは、type="submit" の場合のみ、登録する。 227 * @og.rev 3.1.1.0 (2003/03/28) forward.jsp 関係の処理を削除する。 228 * @og.rev 3.1.1.0 (2003/03/28) radio ボタン等で、ラベルをクリックしても値をセットできるようにする。 229 * @og.rev 3.5.4.2 (2003/12/15) 入力カーソルを自動的に次のフィールドへ移動する機能を追加する。 230 * @og.rev 4.0.0.0 (2007/05/30) BODY 部分に記述した値は、入力フィールドの直後にセットされます。 231 * @og.rev 4.3.7.1 (2009/06/08) id=labelのclass化 232 * @og.rev 5.2.1.0 (2010/10/01) must , mustAny 属性を自動化します。 233 * @og.rev 5.6.2.2 (2013/03/15) 自動must処理の出力位置を変更 234 * @og.rev 5.8.4.1 (2015/02/10) aimai対応 6.2.0.0逆移植 235 * 236 * @return 入力用のテキストフィールドタグ 237 */ 238 @Override 239 protected String makeTag() { 240 if( get( "value" ) == null ) { set( "value","" ); } 241 if( getMsglbl() == null ) { setLbl( get( "name" ) ); } 242 243 // 3.5.4.2 (2003/12/15) 入力カーソルを自動的に次のフィールドへ移動する機能 244 if( nextForm != null ) { 245 String onKeyup = "nextForm(this,'" + nextForm + "'," + get( "maxlength" ) + ");" ; 246 set( "onKeyup",onKeyup ); 247 } 248 249 String type = get( "type" ); 250 StringBuilder rtn = new StringBuilder( HybsSystem.BUFFER_MIDDLE ); 251 // もう少しましな、別の方法を考える必要があります。 252 if( "yes".equals( td_flag ) ) { 253 if( type != null && ( "radio".equals( type ) || "checkbox".equals( type ) )) { 254 if( get( "id" ) == null ) { set( "id",TaglibUtil.getTagId() ); } 255 256 rtn.append( "<td>" ); 257 rtn.append( XHTMLTag.input( getAttributes() ) ); 258 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 259 rtn.append( "</td>" ); 260 rtn.append( "<td " ); 261 rtn.append( colspan ); 262 rtn.append( ">" ); 263 rtn.append( "<label for=\"" ); 264 rtn.append( get( "id" ) ); 265 rtn.append( "\">" ); 266 rtn.append( getLongLabel() ); // 4.0.0 (2005/01/31) 267 rtn.append( "</label>" ); 268// rtn.append( "</td>" ); 269 } 270 else if( type != null && ( "submit".equals( type ) || "reset".equals( type ) || "button".equals( type ) ) ) { 271 set( "value",getMsglbl() ); 272 rtn.append( "<td" ); 273 rtn.append( colspan ); 274 rtn.append( ">" ); 275 rtn.append( XHTMLTag.input( getAttributes() ) ); 276 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 277 rtn.append( "</td>" ); 278// rtn.append( "<td></td>" ); 279 rtn.append( "<td>" ); 280 } 281 else { 282 // 4.3.7.1 (2009/06/08) id=labelのclass化 283 // rtn.append( "<td id=\"label\">" ); 284 rtn.append( "<td class=\"label\">" ); 285 rtn.append( getLongLabel() ); // 4.0.0 (2005/01/31) 286 rtn.append( CLM ); 287 rtn.append( "</td>" ); 288 rtn.append( "<td" ); 289 rtn.append( colspan ); 290 rtn.append( ">" ); 291 rtn.append( XHTMLTag.input( getAttributes() ) ); 292 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 293// rtn.append( "</td>" ); 294 } 295 rtn.append( makeAimaiPicker( get("name") ) ); // 5.8.4.2(2015/02/20) 296 if( getMustType() != null ) { rtn.append( makeMustHidden( get( "name" ) ) ); } // 5.6.2.2 (2013/03/15) 297 rtn.append( "</td>" ); 298 } 299 else if( "no".equals( td_flag ) ) { 300 if( type != null && ( "radio".equals( type ) || "checkbox".equals( type ) )) { 301 rtn.append( "<label>" ); 302 rtn.append( XHTMLTag.input( getAttributes() ) ); 303 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 304 // 4.3.7.1 (2009/06/08) id=labelのclass化 305 // rtn.append( "<span id=\"label\">" ); 306 rtn.append( "<span class=\"label\">" ); 307 rtn.append( getLongLabel() ); // 4.0.0 (2005/01/31) 308 rtn.append( "</span>" ); 309 rtn.append( "</label>" ); 310 } 311 else if( type != null && ( "submit".equals( type ) || "reset".equals( type ) || "button".equals( type ) ) ) { 312 set( "value",getMsglbl() ); 313 rtn.append( XHTMLTag.input( getAttributes() ) ); 314 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 315 } 316 else { 317 // 4.3.7.1 (2009/06/08) id=labelのclass化 318 // rtn.append( "<span id=\"label\">" ); 319 rtn.append( "<span class=\"label\">" ); 320 rtn.append( getLongLabel() ); // 4.0.0 (2005/01/31) 321 rtn.append( CLM ); 322 rtn.append( "</span>" ); 323 rtn.append( XHTMLTag.input( getAttributes() ) ); 324 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 325 } 326 rtn.append( makeAimaiPicker( get("name") ) ); // 5.8.4.2(2015/02/20) 327 if( getMustType() != null ) { rtn.append( makeMustHidden( get( "name" ) ) ); } // 5.6.2.2 (2013/03/15) 328 } 329 else { 330 if( type != null && ( "submit".equals( type ) || "reset".equals( type ) || "button".equals( type ) ) ) { 331 set( "value",getMsglbl() ); 332 rtn.append( XHTMLTag.input( getAttributes() ) ); 333 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 334 } 335 else { 336 rtn.append( XHTMLTag.input( getAttributes() ) ); 337 if( body != null ) { rtn.append( body ); } // 4.0.0 (2007/05/30) BODY部の評価 338 } 339 rtn.append( makeAimaiPicker( get("name") ) ); // 5.8.4.2(2015/02/20) 340 if( getMustType() != null ) { rtn.append( makeMustHidden( get( "name" ) ) ); } // 5.6.2.2 (2013/03/15) 341 } 342 343 // 5.2.1.0 (2010/10/01) must , mustAny 属性を自動化します。 344 // 5.6.2.2 (2013/03/15) tdの外に出力される不正形を正します 345// if( getMustType() != null ) { rtn.append( makeMustHidden( get( "name" ) ) ); } 346 347 return rtn.toString() ; 348 } 349 350 /** 351 * 【HTML】名前を指定します。 352 * 353 * @og.tag 354 * <og:input name="PN" /> 355 * 356 * @param name 名前 357 */ 358 public void setName( final String name ) { 359 set( "name",getRequestParameter( name ) ); 360 } 361 362 /** 363 * 【HTML】表示形式を指定します(初期値:text)。 364 * 365 * @og.tag 366 * 通常は、表示形式[text/password/checkbox/radio/submit/reset/button/image/file]を指定します。 367 * HTML5 で追加された形式[search/tel/url/email/datetime/date/month/week/time/datetime-local/number/range/color] 368 * も、設定できます。 369 * 370 * HTML5 の機能を有効にするには、ネイティブモードで動作させる必要があります。 371 * @ USE_IE7_HEADER = "false" に設定する。 372 * A USE_HTML5_HEADER = "true" に設定する。 373 * B IEのツール⇒互換表示設定で、互換表示に追加したWebサイトから削除する。 374 * C 同上の設定で、イントラサイトを互換表示で表示するのチェックを外す。 375 * 必要があります。 376 * 377 * <og:input type="text" /> テキストボックスを表示 378 * <og:input type="password" /> パスワード専用テキストボックスを表示 379 * <og:input type="checkbox" /> チェックボックスを表示 380 * <og:input type="radio" /> ラジオボタンを表示 381 * <og:input type="submit" /> 送信実行ボタンを表示 382 * <og:input type="reset" /> 入力したフィールド内容を全てリセット 383 * <og:input type="button" /> ボタンを表示 384 * <og:input type="image" /> イメージを表示してクリックした座標を返す 385 * <og:input type="file" /> ファイル名入力ボックスを表示 386 * <og:input type="hidden" /> 表示させずにサーバーに送信するデータ 387 * 388 * HTML5 で追加されたタイプ 389 * <og:input type="search" /> 検索テキストの入力欄を作成する 390 * <og:input type="tel" /> 電話番号の入力欄を作成する 391 * <og:input type="url" /> URLの入力欄を作成する 392 * <og:input type="email" /> メールアドレスの入力欄を作成する 393 * <og:input type="datetime" /> UTC(協定世界時)による日時の入力欄を作成する 394 * <og:input type="date" /> 日付の入力欄を作成する 395 * <og:input type="month" /> 月の入力欄を作成する 396 * <og:input type="week" /> 週の入力欄を作成する 397 * <og:input type="time" /> 時間の入力欄を作成する 398 * <og:input type="datetime-local" /> UTC(協定世界時)によらないローカル日時の入力欄を作成する 399 * <og:input type="number" /> 数値の入力欄を作成する 400 * <og:input type="range" /> レンジの入力欄を作成する 401 * <og:input type="color" /> 色の入力欄を作成する 402 * 403 * @og.rev 5.7.1.0 (2013/12/06) HTML5 対応 404 * 405 * @param type 表示形式[text/password/checkbox/radio/submit/reset/button/image/file]、HTML5用 [search/tel/url/email/datetime/date/month/week/time/datetime-local/number/range/color] 406 */ 407 public void setType( final String type ) { 408 String tp = getRequestParameter( type ); 409 410 if( check( "|" + tp + "|" , CHECK_TYPE ) ) { 411 set( "type",tp ); 412 } 413 else { 414 String errMsg = "type 属性は、下記の中から選択してください。type=[" 415 + tp + " in [" + CHECK_TYPE + "]"; 416 throw new HybsSystemException( errMsg ); 417 } 418 } 419 420 /** 421 * 【HTML】このフィールドに設定する値を指定します。 422 * 423 * @og.tag 424 * type属性の値が"radio"か"checkbox"以外の場合、この属性は省略可能です。 425 *<og:input name="PN" value="syokichi" /> 426 * 427 * @param value 初期値 428 */ 429 public void setValue( final String value ) { 430 set( "value",getRequestParameter( value ) ); 431 } 432 433 /** 434 * 【HTML】横幅を指定します(typeがtextまたはpasswordの場合は文字数で、それ以外はピクセル)。 435 * 436 * @og.tag 437 * <og:input name="PN" size="20" /> 438 * 439 * @param size 横幅 440 */ 441 public void setSize( final String size ) { 442 set( "size",getRequestParameter( size ) ); 443 } 444 445 /** 446 * 【HTML】最大入力文字数を指定します(typeがtextまたはpasswordの場合)。 447 * 448 * @og.tag 449 * 最大文字数はsize指定を超え得るが、超えた場合ユーザエージェントはスクロール機構を提供する必要があります。 450 *この属性の初期値は「無制限」です。 451 *<og:input name="PN" maxlength="20" /> 452 * 453 * @og.rev 3.5.4.2 (2003/12/15) 最大入力制限数に応じたサイズ自動生成を入れます。 454 * @og.rev 3.5.4.5 (2004/01/23) CSSで処理する場合のクラス属性は、maxlength が 5 以下の場合とする。 455 * @og.rev 4.0.0.0 (2005/01/31) getFieldSize メソッドを XHTMLTag から DBColumn へ移動 456 * 457 * @param maxlength 最大入力文字数 458 */ 459 public void setMaxlength( final String maxlength ) { 460 String mlen = nval( getRequestParameter( maxlength ),null ) ; 461 set( "maxlength",mlen ); 462 if( get( "size" ) == null && mlen != null ) { 463 // 4.0.0 (2005/01/31) getFieldSize メソッドを XHTMLTag から DBColumn へ移動 464 int size = Integer.parseInt( mlen ); 465 if( size > COLUMNS_MAXSIZE ) { size = COLUMNS_MAXSIZE; } 466 set( "size",String.valueOf( size ) ); 467 } 468 469 // 3.5.4.5 (2004/01/23) 追加 470 if( mlen != null && mlen.length() == 1 ) { 471 char ch = mlen.charAt(0); 472 if( ch >= '1' && ch <= '5' ) { 473 add( "class", "S0" + ch ); // 3.5.5.9 (2004/06/07) セパレータ引数付きのメソッドに変更 474 } 475 } 476 } 477 478 /** 479 * 【HTML】type が checkbox か radio のとき、初めから選択された状態で表示します("checked"のみ指定可)。 480 * 481 * @og.tag 482 * 483 * <og:input name="PN" type="checkbox" checked="checked" /> 484 * 485 * @param ch 選択された状態にするかどうか[checked:選択状態/そのた:なにもしない] 486 */ 487 public void setChecked( final String ch ) { 488 String checked = getRequestParameter( ch ); 489 if( "checked".equals( checked )) { 490 set( "checked","checked" ); 491 } 492 } 493 494 /** 495 * 【HTML】type が image の場合、送信ボタンとして利用する画像のURLをセットします。 496 * 497 * @og.tag src セット 498 * 499 * @param src 画像のURL 500 */ 501 public void setSrc( final String src ) { 502 set( "src",getRequestParameter( src ) ); 503 } 504 505 /** 506 * 【HTML】type が image の場合で、画像が表示できない場合の代替テキストをセットします。 507 * 508 * @og.tag alt セット 509 * 510 * @param alt 代替テキスト 511 */ 512 public void setAlt( final String alt ) { 513 set( "alt",getRequestParameter( alt ) ); 514 } 515 516 /** 517 * 【HTML】type が file の場合に、MIMEタイプをCSV形式で複数指定出来ます。 518 * 519 * @og.tag accept セット 520 * 521 * @param accept MIMEタイプ(CSV形式) 522 */ 523 public void setAccept( final String accept ) { 524 set( "accept",getRequestParameter( accept ) ); 525 } 526 527 /** 528 * 【HTML】type が image の場合、クライアントサイド・イメージマップのURLを指定します。 529 * 530 * @og.tag usemap セット 531 * 532 * @param usemap クライアントサイド・イメージマップのURL 533 */ 534 public void setUsemap( final String usemap ) { 535 set( "usemap",getRequestParameter( usemap ) ); 536 } 537 538 /** 539 * 【HTML】type が image の場合に、サーバーサイド・イメージマップを使用する場合に指定します。 540 * 541 * @og.tag ismap セット 542 * 543 * @param ismap サーバーサイド・イメージマップを使用する場合に指定 544 */ 545 public void setIsmap( final String ismap ) { 546 set( "ismap",getRequestParameter( ismap ) ); 547 } 548 549 /** 550 * 【TAG】テーブル形式の <td> タグを使用するかどうか[yes/no/false]を指定します(初期値:yes)。 551 * 552 * @og.tag 553 * 通常(初期値:yes)は、テーブル形式の<td> タグを使用して、ラベルとフィールドを整列させます。 554 * no の場合は、tdタグを使用せず、ラベルとフィールドを連続して出力します。 555 * false は、ラベルを出力せず、フィールドのみ出力します。 556 * <og:input name="PN" td="false" /> 557 * 558 * @og.rev 2.0.0.8 (2002/10/09) yes/no/false で指定するように変更 559 * 560 * @param flag [yes:tdタグを使用/no:ラベルとフィールド/false:フィールドのみ] 561 */ 562 public void setTd( final String flag ) { 563 String td = nval( getRequestParameter( flag ),td_flag ); 564 565 if( check( "|" + td + "|" , "|yes|no|false|" ) ) { 566 td_flag = td; 567 } 568 else { 569 String errMsg = "td 属性は、下記の中から選択してください。td=[" 570 + td + " in [|true|false|label|]"; 571 throw new HybsSystemException( errMsg ); 572 } 573 } 574 575 /** 576 * 【TAG】ラベルをCSV形式で複数指定します。 577 * 578 * @og.tag 579 * シングルラベルの lbl 属性との違いは,ここではラベルを複数 カンマ区切りで 580 * 渡すことが可能であることです。これにより、"A,B,C" という値に対して、 581 * "Aのラベル表示,Bのラベル表示,Cのラベル表示" という具合に文字列を 582 * 再合成します。 583 * これは、SQL文のOrder By 句で、ソート順を指定する場合などに便利です。 584 * 585 * <og:orderBy columns="MKNMJP,MKCD,MKNMEN" lbls="MKNMJP,MKCD,MKNMEN" /> 586 * 587 * @og.rev 3.5.6.2 (2004/07/05) 先に配列に分解してからリクエスト変数の値を取得 588 * @og.rev 5.2.2.0 (2010/11/01) setMsglbl 廃止 ⇒ setLbl に置換え 589 * 590 * @param lbls 複数ラベルID(カンマ区切り) 591 */ 592 public void setLbls( final String lbls ) { 593 594 String[] array = getCSVParameter( lbls ); 595 596 StringBuilder buf = new StringBuilder( HybsSystem.BUFFER_MIDDLE ); 597 598 buf.append( getLabel( array[0] ) ); 599 for( int i=1; i<array.length; i++ ) { 600 buf.append( "," ); 601 buf.append( getLabel( array[i] ) ); 602 } 603// setMsglbl( buf.toString() ); 604 setLbl( buf.toString() ); // 5.2.2.0 (2010/11/01) setMsglbl 廃止 ⇒ setLbl に置換え 605 } 606 607 /** 608 * 【TAG】フィールド部分の colspan を指定します。 609 * 610 * @og.tag 611 * 通常は、ラベルとフィールドが、別のtdで囲われます。しかし、場合によっては、 612 * フィールド部の長いカラムがある場合、上下のカラムとの位置関係がおかしくなり、 613 * ラベルとフィールドが離れて表示されるケースがあります。 614 * この場合、長いフィールド部を持つカラムに、colspan 属性を指定すると、 615 * その分のカラムを割り当てることにより、上下のカラムとの位置関係を 616 * 調節することが可能になります。 617 * 通常は、3 を指定して、フィールド、ラベル、フィールドの 618 * 組み合わせ部分に、長いフィールドが適用されるように使用します。 619 * 620 * <og:input name="PN" colspan="3" /> 621 * 622 * @og.rev 3.0.1.4 (2003/03/17) colspan 属性を追加。 623 * 624 * @param sp フィールド部分のcolspan 625 */ 626 public void setColspan( final String sp ) { 627 colspan = nval( getRequestParameter( sp ),colspan ); 628 if( colspan.length() > 0 ) { 629 colspan = " colspan=\"" + colspan + "\" "; 630 } 631 } 632 633 /** 634 * 【TAG】入力カーソルを指定されたname属性のフィールドへ自動的に移動します。 635 * 636 * @og.tag 637 * JavaScript の onKeyup イベントを利用して、最大桁数まで入力すると、 638 * 次のフィールドに、自動的に飛ぶように設定します。 639 * 引数は、次に飛ばすフィールドの name 属性です。 640 * 実行するには、JavaScript の nextForm ファンクションが必要です。(default.js で指定) 641 * 642 * @og.rev 3.5.4.2 (2003/12/15) 新規追加 643 * 644 * @param name 次にフォーカスを移すタグのname属性 645 */ 646 public void setNextForm( final String name ) { 647 nextForm = nval( getRequestParameter( name ),nextForm ); 648 } 649 650 /** 651 * このオブジェクトの文字列表現を返します。 652 * 基本的にデバッグ目的に使用します。 653 * 654 * @return このクラスの文字列表現 655 */ 656 @Override 657 public String toString() { 658 return org.opengion.fukurou.util.ToString.title( this.getClass().getName() ) 659 .println( "VERSION" ,VERSION ) 660 .println( "td_flag" ,td_flag ) 661 .println( "colspan" ,colspan ) 662 .println( "nextForm" ,nextForm ) 663 .println( "CHECK_TYPE" ,CHECK_TYPE ) 664 .println( "HTML_LABEL_SEPARATOR" ,CLM ) 665 .println( "HTML_COLUMNS_MAXSIZE" ,COLUMNS_MAXSIZE ) 666 .println( "Other..." ,getAttributes().getAttribute() ) 667 .fixForm().toString() ; 668 } 669}