Usage of <tc:columnEvent before <tc:columnSelector forces a JavaScript Error ----------------------------------------------------------------------------
Key: TOBAGO-679
URL: https://issues.apache.org/jira/browse/TOBAGO-679
Project: MyFaces Tobago
Issue Type: Bug
Components: Core
Affects Versions: 1.0.17
Reporter: Rainer Rohloff
Assuming follwing code
<tc:sheet ... >
<tc:columnEvent
event="click">
<tc:command
actionListener="...">
</tc:command>
</tc:columnEvent>
<tc:columnSelector/>
<tc:column label="Date"
id="Date">
forces a JavaScript Error (see Picture)
Workaround:
modify order of <tc:columnSelector and <tc:columnEvent
<tc:sheet ... >
<tc:columnSelector/>
<tc:columnEvent
event="click">
<tc:command
actionListener="...">
</tc:command>
</tc:columnEvent>
<tc:column label="Date"
id="Date">
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
