Re: AJAX Dropdown Choices cleared on submit

2008-03-24 Thread tdelesio
; + this.leagueType + TAB
>   + "week = " + this.week + TAB
>   + " )";
>   
>   return retValue;
>   }
> 
> 
>   public String getLeagueType() {
>   return leagueType;
>   }
> 
> 
>   public void setLeagueType(String leagueType) {
>   this.leagueType = leagueType;
>   }
> 
> 
>   public int getWeek() {
>   return week;
>   }
> 
> 
>   public void setWeek(int week) {
>   this.week = week;
>   }
>   
>   public boolean isAdminLeagueSet()
>       {
>       if (leagueType==null||leagueType.equalsIgnoreCase(""))
>   {
>   return false;
>   }
>   else
>   {
>   return true;
>   }
>   }
>   
>   public void invailateAdminLeagueType()
>   {
>   leagueType=null;
>   }
> 
> The ObjectModel has null values in the onSubmit().  Any suggestions or
> something that I am doing wrong?
> 

-- 
View this message in context: 
http://www.nabble.com/AJAX-Dropdown-Choices-cleared-on-submit-tp16251739p16253522.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AJAX Dropdown Choices cleared on submit

2008-03-24 Thread James Carman
leagueType;
> }
>
>
> public void setLeagueType(String leagueType) {
> this.leagueType = leagueType;
> }
>
>
> public int getWeek() {
> return week;
> }
>
>
> public void setWeek(int week) {
> this.week = week;
> }
>
> public boolean isAdminLeagueSet()
>     {
>         if (leagueType==null||leagueType.equalsIgnoreCase(""))
> {
> return false;
> }
> else
> {
> return true;
> }
> }
>
> public void invailateAdminLeagueType()
> {
> leagueType=null;
> }
>
>  The ObjectModel has null values in the onSubmit().  Any suggestions or
>  something that I am doing wrong?
>  --
>  View this message in context: 
> http://www.nabble.com/AJAX-Dropdown-Choices-cleared-on-submit-tp16251739p16251739.html
>  Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
>  -
>  To unsubscribe, e-mail: [EMAIL PROTECTED]
>  For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AJAX Dropdown Choices cleared on submit

2008-03-24 Thread tdelesio
   {
return true;
}
}

public void invailateAdminLeagueType()
{
leagueType=null;
    }

The ObjectModel has null values in the onSubmit().  Any suggestions or
something that I am doing wrong?
-- 
View this message in context: 
http://www.nabble.com/AJAX-Dropdown-Choices-cleared-on-submit-tp16251739p16251739.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]