Skip to content

Commit

Permalink
visitschedule - filter+sort start/stop tags by title (not fieldname)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Nov 19, 2024
1 parent ddcd50e commit ef1ce50
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@
</p:column>

<p:column
sortBy="#{visitScheduleItem.vo.startTag.field.nameL10nKey}"
filterBy="#{visitScheduleItem.vo.startTag.field.nameL10nKey}">
sortBy="#{visitScheduleItem.vo.startTag.titleL10nKey}"
filterBy="#{visitScheduleItem.vo.startTag.titleL10nKey}">
<f:attribute name="visibleDefault" value="false" />
<f:facet name="header">
<h:outputText
Expand All @@ -149,8 +149,8 @@
value="#{visitScheduleBean.getProbandListEntryTagName(visitScheduleItem.vo.startTag)}" />
</p:column>
<p:column
sortBy="#{visitScheduleItem.vo.stopTag.field.nameL10nKey}"
filterBy="#{visitScheduleItem.vo.stopTag.field.nameL10nKey}">
sortBy="#{visitScheduleItem.vo.stopTag.titleL10nKey}"
filterBy="#{visitScheduleItem.vo.stopTag.titleL10nKey}">
<f:attribute name="visibleDefault" value="false" />
<f:facet name="header">
<h:outputText
Expand Down

0 comments on commit ef1ce50

Please sign in to comment.