public class MyResourceModel extends ResourceModel {
@Override
public Object getObject() {
String lLblValue = (String) super.getObject() + lblTag;
return lLblValue;
}
}
with this model i create my label.
public BLabel(String pId, String pTag) {
super(pId);
...
MyResourceModel lresModel = new
MyResourceModel(lResolver.getI18nKey(), pTag);
setModel(lresModel);
}
but the method 'getObject' is never called.
thanks alex
Jeremy Thomerson-5 wrote:
>
> Please show us the code.
>
> --
> Jeremy Thomerson
> http://www.wickettraining.com
>
>
>
> On Mon, Mar 16, 2009 at 4:17 AM, alexander.elsholz <
> [email protected]> wrote:
>
>>
>> Hi,
>>
>> i want to append some static code, after calling ressourcemodel.getobject
>> to
>> the localized String.
>>
>> so i override this method, but i think this method was never called -
>> why?
>>
>> is there an other opprtunity to append some static code after
>> localization?
>>
>> thanks alex
>> --
>> View this message in context:
>> http://www.nabble.com/Override-ResourceModel-tp22534226p22534226.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]
>>
>>
>
>
--
View this message in context:
http://www.nabble.com/Override-ResourceModel-tp22534226p22548224.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]