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 */
016 package org.opengion.hayabusa.taglib;
017
018 import org.opengion.hayabusa.common.HybsSystem;
019 import org.opengion.hayabusa.common.HybsSystemException;
020 import org.opengion.fukurou.util.XHTMLTag;
021
022 import 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 * ●形式?lt;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}" >部品?力フィール?lt;/og:input></tr>
121 * <tr><og:input name="CD" value="{@CD}" >コードフィール?lt;/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 */
141 public 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 * ② USE_HTML5_HEADER = "true" に設定する?
373 * ③ IEの??ル⇒互換表示設定で、互換表示に追?たWebサイトから削除する?
374 * ④ 同上?設定で、イントラサイトを互換表示で表示するのチェ?を外す?
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 ???以下?場合とする?
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 * 通常は? を指定して、フィールド?ラベル、フィールド?
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 }