[
http://issues.apache.org/jira/browse/TAPESTRY-958?page=comments#action_12427737
]
Mind Bridge commented on TAPESTRY-958:
--------------------------------------
I would also suggest to define the link yourself in the template and to tie the
link to a method that does the following:
ITableSortingState sortingState = tableModel.getSortingState();
if (columnName.equals(sortingState.getSortColumn()))
sortingState.setSortColumn(columnName,
!sortingState.getSortOrder());
else sortingState.setSortColumn(columnName,
ITableSortingState.SORT_ASCENDING);
This will duplicate the functionality of the standard column implementation.
> Table column headers with a custom render block cannot be sorted
> ----------------------------------------------------------------
>
> Key: TAPESTRY-958
> URL: http://issues.apache.org/jira/browse/TAPESTRY-958
> Project: Tapestry
> Issue Type: Bug
> Components: Contrib
> Affects Versions: 4.0.2
> Reporter: Mathijs den Burger
> Priority: Minor
>
> With contrib:Table, a custom Block can be used to render a table column
> header (in my case, I'd like to render an Image in the header instead of the
> column name). However, the link in the header to sort the column is not
> rendered anymore when a custom block is used for the column header. This
> makes the column effectively unsortable, which I would not expect to be
> desired behavior...
> I guess this can simply be fixed in SimpleTableColumnComponent by rendering
> the supplied custom Block inside a copy of the "linkColumn" component, so
> clicking somewhere on content in the custom supplied block (in my case: an
> image) also sorts the column.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]