• R/O
  • SSH
  • HTTPS

opengion: Commit


Commit MetaInfo

Revision1596 (tree)
Zeit2018-05-18 17:06:08
Autortakahashi_m

Log Message

(empty log message)

Ändern Zusammenfassung

Diff

--- trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/ColumnEditorTag.java (revision 1595)
+++ trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/ColumnEditorTag.java (revision 1596)
@@ -983,8 +983,9 @@
983983 * @param flg リアルタイムチェックを行うかどうか
984984 */
985985 public void setUseRealTimeCheck( final String flg ) {
986+ String rtcf = getRequestParameter( flg );
986987 // optionAttributes扱いで登録します。
987- if( flg != null && flg.length() > 0 ){
988+ if( rtcf != null && rtcf.length() > 0 ){
988989 add( "optionAttributes", " realTimeChk=\""+getRequestParameter( flg )+"\"" );
989990 }
990991 }
--- trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/ColumnTag.java (revision 1595)
+++ trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/ColumnTag.java (revision 1596)
@@ -1139,8 +1139,9 @@
11391139 * @param flg リアルタイムチェックを行うかどうか
11401140 */
11411141 public void setUseRealTimeCheck( final String flg ) {
1142+ String rtcf = getRequestParameter( flg );
11421143 // optionAttributes扱いで登録します。
1143- if( flg != null && flg.length() > 0 ){
1144+ if( rtcf != null && rtcf.length() > 0 ){
11441145 add( "optionAttributes", " realTimeChk=\""+getRequestParameter( flg )+"\"" );
11451146 }
11461147 }
--- trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/InputTag.java (revision 1595)
+++ trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/InputTag.java (revision 1596)
@@ -664,8 +664,9 @@
664664 * @param flg リアルタイムチェックを行うかどうか
665665 */
666666 public void setUseRealTimeCheck( final String flg ) {
667+ String rtcf = getRequestParameter( flg );
667668 // optionAttributes扱いで登録します。
668- if( flg != null && flg.length() > 0 ){
669+ if( rtcf != null && rtcf.length() > 0 ){
669670 add( "optionAttributes", " realTimeChk=\""+getRequestParameter( flg )+"\"" );
670671 }
671672 }
--- trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/SelectTag.java (revision 1595)
+++ trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/SelectTag.java (revision 1596)
@@ -731,8 +731,9 @@
731731 * @param flg リアルタイムチェックを行うかどうか
732732 */
733733 public void setUseRealTimeCheck( final String flg ) {
734+ String rtcf = getRequestParameter( flg );
734735 // optionAttributes扱いで登録します。
735- if( flg != null && flg.length() > 0 ){
736+ if( rtcf != null && rtcf.length() > 0 ){
736737 add( "optionAttributes", " realTimeChk=\""+getRequestParameter( flg )+"\"" );
737738 }
738739 }
--- trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/TextareaTag.java (revision 1595)
+++ trunk/opengionV5/uap/webapps/gf/src/org/opengion/hayabusa/taglib/TextareaTag.java (revision 1596)
@@ -211,8 +211,9 @@
211211 * @param flg リアルタイムチェックを行うかどうか
212212 */
213213 public void setUseRealTimeCheck( final String flg ) {
214+ String rtcf = getRequestParameter( flg );
214215 // optionAttributes扱いで登録します。
215- if( flg != null && flg.length() > 0 ){
216+ if( rtcf != null && rtcf.length() > 0 ){
216217 add( "optionAttributes", " realTimeChk=\""+getRequestParameter( flg )+"\"" );
217218 }
218219 }
Show on old repository browser