Problem using paging in sheet under IE --------------------------------------
Key: TOBAGO-1079 URL: https://issues.apache.org/jira/browse/TOBAGO-1079 Project: MyFaces Tobago Issue Type: Bug Affects Versions: 1.0.38 Environment: IE Reporter: hani abushammala Problem while using paging in sheet with defined defaultCommand in the page under IE. By entering a row or page number for jumping to certain row or page in the sheet using the "row range" and "page range" in the sheet footer, the defined defaultCommand will be automatically performed after sheet paging. Example: <%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %> <%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %> <%@ page pageEncoding="UTF-8" %> <layout:overview> <jsp:body> <tc:box id="sheetBox"> <f:facet name="layout"> <tc:gridLayout rows="*;fixed"/> </f:facet> <tc:sheet id="sheet" value="#{demo.solarList}" columns="*;*" var="luminary" rows="20" showPageRange="right" showDirectLinks="center" showRowRange="left" selectable="none"> <tc:column label="column 1" id="name" > <tc:out value="#{luminary.name}" id="t_name"/> </tc:column> <tc:column label="column" id="number"> <tc:out value="#{luminary.number}" id="t_number"/> </tc:column> </tc:sheet> <tc:button label="click" action="#{overviewController.performAction}" defaultCommand="true" /> </tc:box> </jsp:body> </layout:overview> -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira