I'm using editable drop downs inside of a gallery control (uses SQL On Prem db through gateway). The drop down displays the existing data in the db with the usual syntax in the default property (thisitem.fieldname). However, when there is a value in the first row and not in subsequent rows, the value from the first row gets *repeated* for rows having a blank (null) value for that field. I have the Advanced Feature Formula Level Error management enabled. My workaround is this: I added a timer control (duration: 1) having a start property of timerstart; a context variable updated to true in the OnChange event in the search textbox. In the OnTimeEnd event, it updates a context variable (timerend) to true. I changed the Default property of the drop down to use this context varirable.
If(timerend,ThisItem.'Proposal Coordinator',"")
#bug #gallery #dropdown #editable