Avoid workaround to not allow select rows in calendars tree.

Finally using nonselectableTags="*", it works properly in ZK 5.0.7.

This fix the workaround from commit:
adf65e08bf

FEA: ItEr75S05CalendarAdminInterfaceItEr74S06
This commit is contained in:
Manuel Rego Casasnovas 2011-07-22 19:25:33 +02:00
parent 3cc756bbc3
commit ed79e453f6

View file

@ -23,7 +23,7 @@
<tree id="tree" model="@{calendarController.baseCalendarsTreeModel}"
treeitemRenderer="@{calendarController.baseCalendarsTreeitemRenderer}"
zclass="z-dottree"
nonselectableTags="div,span,img">
nonselectableTags="*">
<treecols sizable="true">
<treecol label="${i18n:_('Name')}" />
<treecol label="${i18n:_('Inherits from date')}" width="150px" align="center"/>
@ -34,4 +34,4 @@
<button id="show_create_form" onClick="calendarController.goToCreateForm();"
label="${i18n:_('Create')}" sclass="create-button global-action">
</button>
</window>
</window>