Unread marks in Xpages views are indented ? Any fix -
put in unread marks in view in xpages , column indented very oddly. searched google , found document:
http://www-01.ibm.com/support/docview.wss?crawler=1&uid=swg1lo78976
however, when try log in , see document, can never document open. ibm doesn't have unreads working in xpages???
my apologies.
code here:
<xp:viewpanel rows="99" id="projectsworking" viewstyle="width:99.0%" rowclasses="oddrow, evenrow" var="viewentry" showunreadmarks="true"> <xp:this.facets> <xp:pager partialrefresh="true" layout="previous group next" xp:key="headerpager" id="pager1"> </xp:pager> </xp:this.facets> <xp:this.data> <xp:dominoview var="projectsworking" viewname="projectsworking"> </xp:dominoview> </xp:this.data> <xp:viewcolumn id="viewcolumn26" style="width:15.00px" rendered="false"> <xp:this.facets> <xp:viewcolumnheader xp:key="header" id="viewcolumnheader26" style="width:15.00px" rendered="false"> </xp:viewcolumnheader> </xp:this.facets> <xp:this.iconsrc><![cdata[#{javascript:var unr = viewentry.getread(); if (unr) {return ""} else {"/unread.gif"}}]]></xp:this.iconsrc> <xp:this.value><![cdata[#{javascript:""}]]></xp:this.value> </xp:viewcolumn> <xp:viewcolumn columnname="priority" id="viewcolumn1" style="width:15.00px" showcheckbox="true"> <xp:viewcolumnheader value="priority" id="viewcolumnheader1" style="font-weight:bold;text-decoration:underline;width:15.00px" sortable="true" showcheckbox="true"> </xp:viewcolumnheader> </xp:viewcolumn> <xp:viewcolumn columnname="projectname" id="viewcolumn2" displayas="link" style="width:150.00px"> <xp:viewcolumnheader value="project" id="viewcolumnheader2" style="font-weight:bold;text-decoration:underline" sortable="true"> </xp:viewcolumnheader> </xp:viewcolumn> <xp:viewcolumn id="viewcolumn19" columnname="projectcoordinator" style="width:50.00px"> <xp:this.facets> <xp:viewcolumnheader xp:key="header" id="viewcolumnheader19" value="project manager" sortable="true" style="font-weight:bold"> </xp:viewcolumnheader> </xp:this.facets> </xp:viewcolumn> <xp:viewcolumn id="viewcolumn18" columnname="itcoordinator" style="width:50.00px"> <xp:this.facets> <xp:viewcolumnheader xp:key="header" id="viewcolumnheader18" sortable="true" style="font-weight:bold" value="it lead"> </xp:viewcolumnheader> </xp:this.facets> </xp:viewcolumn> <xp:viewcolumn columnname="scope" id="viewcolumn3" style="width:35.00px"> <xp:viewcolumnheader value="scope" id="viewcolumnheader3" style="font-weight:bold;text-decoration:underline" sortable="true"> </xp:viewcolumnheader> </xp:viewcolumn> <xp:viewcolumn id="viewcolumn12" columnname="isworking" style="width:35.00px"> <xp:this.facets> <xp:viewcolumnheader xp:key="header" id="viewcolumnheader12" value="working?" style="font-weight:bold" sortable="true"> </xp:viewcolumnheader> </xp:this.facets> </xp:viewcolumn> <xp:viewcolumn columnname="desiredcompletiondate" id="viewcolumn4" style="width:50.00px"> <xp:this.converter> <xp:convertdatetime pattern="mm/dd/yyyy"></xp:convertdatetime> </xp:this.converter> <xp:viewcolumnheader value="desired completion date" id="viewcolumnheader4" style="font-weight:bold;text-decoration:underline" sortable="true"> </xp:viewcolumnheader> </xp:viewcolumn> <xp:viewcolumn id="viewcolumn5" columnname="projectstatus" style="width:75px"> <xp:this.facets> <xp:viewcolumnheader xp:key="header" id="viewcolumnheader5" value="status" style="font-weight:bold;text-decoration:underline" sortable="true"> </xp:viewcolumnheader> </xp:this.facets> </xp:viewcolumn> </xp:viewpanel>
the indentation caused
.xspdatatablerowread td:first-child { padding-left: 30px; }
use application theme oneui v3.0.2
instead of oneui v2.1
(or earlier). there no indentation anymore.
if can't change application theme overwrite css setting
.xspdatatablerowread td:first-child { padding-left: 2px; }
Comments
Post a Comment