tracker issue : CF-4199234

select a category, or use search below
(searches all categories and all time range)
Title:

[ANeff] Bug for: 4113472 regression partially hides grid calendar icon

| View in Tracker

Status/Resolution/Reason: Closed/Withdrawn/NotABug

Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff ()

Created: 07/23/2017

Components: CFForm, HTML

Versions: 2016

Failure Type: Cosmetic Issue

Found In Build/Fixed In Build: 2016.0.01.298513 /

Priority/Frequency: Normal / Some users will encounter

Locale/System: English / Win All

Vote Count: 0

4113472's fix introduced a regression that partially hides grid calendar icon

Repro:

<cfscript>
  q = queryNew("id,myDate", "integer,timestamp");
  q.addRow(2);//Because array notation, and implicit query row, fails at enforcing query column data type - sigh
  q.setCell("id", 1, 1);
  q.setCell("myDate", createDate(2017,7,22), 1);
  q.setCell("id", 2, 2);
  q.setCell("myDate", createDate(2017,7,23), 2);
</cfscript>
<cfform>
  <cfgrid name="myGrid" format="html" selectmode="edit" query="q" width="360">
    <cfgridcolumn name="id"> 
    <cfgridcolumn name="myDate" type="date" mask="m/d/y">
  </cfgrid>
</cfform>

Actual Result: CF11 displays full calendar icon (good), but CF2016 hides part of the calendar icon (bad). See attached 20170723_4113472Regression_before.jpg and 20170723_4113472Regression_after.jpg.

Expected Result: CF2016 should also display the full calendar icon.

Attachments:

  1. July 23, 2017 00:00:00: 20170723_4113472Regression_after.jpg
  2. July 23, 2017 00:00:00: 20170723_4113472Regression_before.jpg

Comments:

Hi Aaron, Looks like the issue got fixed in Update 2. Can you please try any of Update 2/3/4 and let me know. Works for me.
Comment by Manas M.
494 | July 31, 2017 10:20:09 AM GMT
Hi Manas, You are right :) CF2016 Update 4 shows correct behavior in Chrome/FF/Edge. This can be closed as NotABug :) Thanks very much!, -Aaron
Comment by Aaron N.
495 | August 03, 2017 08:02:38 AM GMT