css - How To Shrink Categorized Column on xPage -


here simple xpage (bootstrap theme) view control

my code:

<xp:viewpanel rows="30" id="viewpanelfileresource" viewstyle="width:100%" var="rowdata">     <xp:this.data>         <xp:dominoview var="view1" viewname="file resources"></xp:dominoview>     </xp:this.data>     <xp:viewcolumn id="viewcolumn1" columnname="fileentrycategory">         <xp:viewcolumnheader id="viewcolumnheader1" value="file entry category"></xp:viewcolumnheader>     </xp:viewcolumn>     <xp:viewcolumn columnname="fileentrytitle" id="viewcolumn2">         <xp:viewcolumnheader id="viewcolumnheader2" value="title"></xp:viewcolumnheader>     </xp:viewcolumn> </xp:viewpanel> 

and first column categorized. how shrink (see picture above)? setting column width doesn't help. wraps category name. , how add padding category icon , name. don't wanna use formula " " + columnvalue

screenshoot:

enter image description here

remove column header categorized column 1 easy fix.

howard


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -