CFGrid issue in IE11 - CF2016
We are running Coldfusion 2016, this issue was not present in Coldfusion 9 which we upgraded from.
I am using a basic CFGRID on my page that is getting loaded from a query. I am using the tag based method to code my page.
One item in the query is an HREF link that brings the user to another page with info specific to that row. The dataset being passed to the cfgrid can be large.
My issue is when the CFGrid become longer than the page. The grid displays fine but when I scroll lower than the first row when the row, or link, is clicked the page just jumps to the top of the CFGRID. The selected row is highlighted, but the link isn't activated.
There is nothing special to my cfgrid tag or my gridcolumn tags. My page is not calling any custom javascript files or anything. i just have the grid and some text above it
<cfgrid name="grdSearchResults" format="html" query="qrySearchResults" >
<cfgridcolumn name="ID" header="Banner ID" width="100">
<cfgridcolumn name="EMPLOYEE_ID" header="Employee ID" width="100">
<cfgridcolumn name="NAME" header="Name" width="200">
<cfgridcolumn name="TERM" header="Term" width="100">
<cfgridcolumn name="PROGRAM" header="Program Block" width="100">
<cfgridcolumn name="CURRENT_STATUS" header="Current" width="200">
<cfgridcolumn name="VIEW_PHOTO_LINK" header="View Photo" width="100">
</cfgrid>
I have tried adding the selectOnLoad = false option with no luck.
Has anyone else experienced this, and if you resolved this issue, how?
