tracker issue : CF-3741324

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

cfgrid with a boolean type gridcolumn, displays dropdown listbox outside the confines of the grid control.

| View in Tracker

Status/Resolution/Reason: Closed/Fixed/

Reporter/Name(from Bugbase): / ext-user (Piyush Kumar Nayak)

Created: 04/11/2014

Components: AJAX, UI Components

Versions: 11.0

Failure Type:

Found In Build/Fixed In Build: 289739 / CF11 Update7

Priority/Frequency: Normal / Few users will encounter

Locale/System: English / Windows 7 SP1 64-bit

Vote Count: 0

Listed in the version 11.0.07.296330 Issues Fixed doc
Problem:
cfgrid: with a boolean type gridcolumn, displays dropdown listbox outside the confines of the grid control when a check box is selected cell is selected with page load.
has some similarity with bug #3630024.

Method:

simplified test case:
<cfset emps = querynew("firstname, department, salary, Contract")>
<cfset queryaddrow(emps, 3)>

<cfset querysetcell(emps,"firstname","Debra",1)>
<cfset querysetcell(emps,"department","Accounting",1)>
<cfset querysetcell(emps,"salary","1000",1)>
<cfset querysetcell(emps,"Contract","false",1)>

<cfset querysetcell(emps,"firstname","Doherty",2)>
<cfset querysetcell(emps,"department","Finance",2)>
<cfset querysetcell(emps,"salary","2000",2)>
<cfset querysetcell(emps,"Contract","false",2)>

<cfset querysetcell(emps,"firstname","Aaron",3)>
<cfset querysetcell(emps,"department","Accounting",3)>
<cfset querysetcell(emps,"salary","3000",3)>
<cfset querysetcell(emps,"Contract","false",3)>

<cfform>
	<cfgrid format="html" name="grid01"	query="emps" selectmode="edit">
		<cfgridcolumn name="FirstName" header="FirstName"/>
		<cfgridcolumn name="Department" header="Department" />
		<cfgridcolumn name="salary" header="salary" type="numeric" display=true values="1000,2000,3000" valuesdisplay="100000,200000,300000">
		<cfgridcolumn name="Contract"  display=true header="Contract" type="boolean" />
	</cfgrid>
</cfform>

select any of the cells in the "Contracts" column, as soon as the page loads.

Result:
The drop-down binded to the "salary" column appears at the bottom left corner of the grid. It does not appear if any drop-downs under the Salary column is clicked first on page load.

Expected:

Workaround:

----------------------------- Additional Watson Details -----------------------------

Watson Bug ID:	3741324

External Customer Info:
External Company:  
External Customer Name:  
External Customer Email:

Attachments:

Comments:

we plan on releasing the fix for this bug in the the upcoming CF 11 update.
Comment by Piyush K.
12686 | October 23, 2015 05:52:45 AM GMT
Verified this is fixed in CF11 Update 7 (build 11,0,07,296330). Thanks!, -Aaron
Comment by External U.
12687 | December 03, 2015 01:55:25 AM GMT