I have a datatable which provides objects from a list. Within this data table I would like to use a tag like p:columns(primefaces) which provides strings from a list that represent the name of a field.

I will now need a subexpression to be able to use the dynamic field name like:

#{entry.#[column.fieldName}}

Is there any possibility to do this in JSF2?

link|improve this question

55% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If entry has get/set accessors for columns values, you could use this syntax :

#{entry[column.fieldName]}

In EL you can use two syntaxes to access to the value of the "lastname" property of an object :

#{myObject.lastname}
#{myObject["lastname"]}

You can take a look to JSPIntro at oracle.com

link|improve this answer
I have just though of something like that and it worked, i was just not sure, because nowhere the term subexpression is mentioned in the reference and before i have never used this kind of feature in production. – Christian Beikov May 28 '11 at 15:55
feedback

No, EL doesn't work like that.

What you could do to achieve the desired functionality would be this:

#{entry.getField(column.fieldName)}

where getField() is a method that uses reflection (perhaps via PropertyDescriptor) to access the field with the given name. However, this is an EL 2.2 feature, so you'll need a pretty recent EL implemetation, such as provided by Tomcat 7.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.