I want to customise the text in one column of each row of the table component based on the text returned from the database
The syntax should be
text="#{el expression}"
How do I write an el expression that handles string length
example
text="#{ length('mystring') = 0 > ? 'Empty' : 'somevalue'}"
Obviously in the above expression, there is no function called length and hence it wont work....what is the function for string length?