Hello,
I'm trying to set a custom drag tracker for column dragging (reposition) and I noticed it is forcefully applied to column resizing as well.
In the following example, I'm setting dragAppearance to "tracker" and dragResizeAppearance to "target", but the tracker still appears also when I'm resizing columns.
I am on "v12.1p_2020-06-09"
Thanks for looking into this.
Gil
I'm trying to set a custom drag tracker for column dragging (reposition) and I noticed it is forcefully applied to column resizing as well.
In the following example, I'm setting dragAppearance to "tracker" and dragResizeAppearance to "target", but the tracker still appears also when I'm resizing columns.
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:224, alternateRecordStyles:true, data: countryData, fields:[ {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"}, {name:"continent", title:"Continent"} ], canResizeFields: true, headerButtonProperties: { dragResizeAppearance: "target", dragAppearance: "tracker" } })
I am on "v12.1p_2020-06-09"
Thanks for looking into this.
Gil
Comment