Re: Sub columns in datatable

2007-02-26 Thread Werner Punz
[EMAIL PROTECTED] schrieb: > Hi all, > > How to include sub columns in datatable. > It has three columns Ssn,Names,profession. > As illustrated in the fig below for Names (first names,middle names,last > names). > How to get the sub columns in the datatable. Try to nest a datalist into the colum

Re: Sub columns in datatable

2007-02-26 Thread Amit Jain
You can do it by using datatable inside a datatable. So basically inside second column there will be datatable and you have to change value to the datatable accordingly. [EMAIL PROTECTED] wrote: Hi all, How to include sub columns in datatable. It has three columns Ssn,Names,profession. As

RE: Re: Sub columns in datatable

2007-02-27 Thread pallavi.roy
- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Werner Punz Sent: Monday, February 26, 2007 6:04 PM To: users@myfaces.apache.org Subject: Re: Sub columns in datatable [EMAIL PROTECTED] schrieb: > Hi all, > > How to include sub columns in datatable. > It has three columns Ssn,Names,prof

RE: Re: Sub columns in datatable

2007-02-28 Thread pallavi.roy
b1.setProfession("Mechanical Engineer"); dataList.add(b1); } Best Regards, Pallavi From: Werner Punz [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 5:48 PM To: Pallavi Roy(WT01 - HLS) Subject: Re: Re: Sub columns

Re: Re: Sub columns in datatable

2007-02-28 Thread Mike Kienenberger
ards, Pallavi -- *From:* Werner Punz [mailto:[EMAIL PROTECTED] *Sent:* Tuesday, February 27, 2007 5:48 PM *To:* Pallavi Roy(WT01 - HLS) *Subject:* Re: Re: Sub columns in datatable otherwise you will not have a reference to the current row... On 2/27/07, [EMAIL PROTEC

Re: Re: Sub columns in datatable

2007-02-28 Thread Martin Marinschek
neer"); > >dataList.add(b1); > > } > > > > > > > var="demoBean" rows="2" cellspacing="0" styleClass="dataTable" > columnClasses="firstColumn,secondColumn,thirdColumn"> > > > &

RE: Re: Sub columns in datatable

2007-03-07 Thread pallavi.roy
heive this: Best Regards, Pallavi From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 8:58 PM To: MyFaces Discussion Subject: Re: Re: Sub columns in datatable myBean.setFName() and myBean.getFName() in the source

Re: [Solved] Re: Sub columns in datatable

2007-03-06 Thread pals
NamesVO t1 = new NamesVO(); >> >List x1 = new ArrayList(); >> >b1.setSsn(10); >> >t1.setFName("Pabitra"); >> >t1.setMName("Kumar"); >> >t1.setLName("Roy"); >> >x1.add(t1); >> > b1.setMyNam