A lotus notes application is using a view with a column which is not categorized but is having the Show twsitie when row is expandalbe
property check and it also is listing some documents.
Column formula:
@If (Form = "fmProiect";
"P: " + txt_Proiect;
Form = "fmDocCRM";
txt_Subiect;
"" )
I'm trying to achieve the same thing in a view panel - having the above view as Data Source Domino View. I tried to add some icons for the expand/collapse property:
<xp:viewColumn columnName="$6" id="viewColumn3"
collapsedImage="/2.png" expandedImage="/1.png">
But still the column isn't categorized. Is there a way I can achieve this?