[Seasar-user:8579] Re: 行毎のプロパティ設定方法

[E-MAIL ADDRESS DELETED] [E-MAIL ADDRESS DELETED]
2007年 6月 22日 (金) 09:23:51 JST


小笠原です。
一部提示したソースを修正させて頂きます。
  hrefのとこに入るhttp://mail.yahoo.co.jp/config/login?/は無視願います。
   
  //HTML
<td><a id="goA" href="AAA.html" disabled="false">リンク</a></td>
  
//Page
 private int aIndex;
   public String goAHref() {
  if (aIndex % 2 == 0) {
   return "AAA.html";
  }
  return "BBB.html";
 }
 public boolean goADisabled() {
  if (aIndex % 2 == 0) {
   return true;
  }
  return false;
 }
  goAHrefはreserveMenuIndexがインクリメントされながら複数回呼ばれるますが、
goADisabledはreserveMenuIndex=0の一回しか呼ばれないのですが、
違いはなぜなのでしょうか?
  >小笠原です。
>参考にさせて頂いてaIndexの利用法が分かりました。
>ありがとうございます。
>試してみて気になったのですが、
>HTMLにdisabledプロパティを追加して
> 
>//HTML
><td><a id="goA" href=http://mail.yahoo.co.jp/config/login?/"AAA.html" disabled="false">リンク</a></td>
> 
>//Page
> public String goAHref() {
>  if (reserveMenuIndex % 2 == 0) {
>   return "AAA.html";
>  }
>  return "BBB.html";
> }
> public boolean goADisabled() {
>  if (reserveMenuIndex % 2 == 0) {
>   return true;
>  }
>  return false;
> }
> 
>とした場合に
>goAHrefはreserveMenuIndexがインクリメントされながら複数回呼ばれるますが、
>goADisabledはreserveMenuIndex=0の一回しか呼ばれないのですが、
>違いはなぜなのでしょうか?
>
 

 
---------------------------------
Start Yahoo! Auction now! Check out the cool campaign
-------------- next part --------------
HTMLの添付ファイルを保管しました...
URL: http://ml.seasar.org/archives/seasar-user/attachments/20070622/7b2c457b/attachment.html 


Seasar-user メーリングリストの案内