Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Concatenation in CellHandle
PraveenRaj
Hi ....
I need to concatenate String and DataItemHandle into cell.
CellHandle headerCell=null;
headerCell = (CellHandle) headerRow.getCells( ).get( 0 );
String DivLabel = "Division:"
DataItemHandle data = elementFactory.newDataItem( null );
data.setResultSetColumn("params["division"]");
headerCell.getContent().add(data);
Here i need to add "DivLabel" prior to "data"
i.e. i need output in this format..
Division:Div001
How can i do this? How can i concatenate within cell?
Can anybody help?
Find more posts tagged with
Comments
There are no comments yet