Hi Dan,
Thanks for the response, I do have setters/getters , please check below.
private String firstName="Anju";
@MemberOrder(sequence = "2")
@Property(editing=Editing.ENABLED,maxLength=9,notPersisted=true)
@PropertyLayout(named="Enter First Name")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
Thanks & Regards
Anju
On Tue, Nov 3, 2015 at 11:28 AM, Dan Haywood <[email protected]>
wrote:
> I've raised ISIS-1238 for this; we ought to be able to detect this issue
> using a metamodel validation rule.
>
>
> https://issues.apache.org/jira/browse/ISIS-1238
>
> On 3 November 2015 at 08:20, Dan Haywood <[email protected]>
> wrote:
>
> > Hi Anju,
> >
> > Is there a setter as well? If not, then the property is implicitly
> > read-only.
> >
> > Cheers
> > Dan
> >
> > PS: could you subscribe to the mailing list ... otherwise I have to
> > manually approve your posts. See [1]
> >
> > [1] http://isis.apache.org/support.html#how-to-subscribe
> >
> >
> > On 3 November 2015 at 08:17, Anjaneyulu Bikka <[email protected]>
> wrote:
> >
> >> Hi
> >>
> >> Could you please help me .
> >>
> >> I am trying to display the text box in UI.
> >>
> >> private String firstName="Anju";
> >> @MemberOrder(sequence = "2")
> >> @Property(editing=Editing.ENABLED,maxLength=9,notPersisted=true)
> >> @PropertyLayout(named="Enter First Name")
> >> public String getFirstName() {
> >> return firstName;
> >> }
> >>
> >> While rendering it is ignoring the ENABLED property,
> >>
> >> Regards
> >> Anju
> >>
> >
> >
>