Does anyone see anything wrong with this?
Renderer isn’t working. No console errors other than ‘Refused to set unsafe header agent’
Seems like somehow the field metadata isn’t getting overwritten? I’m just getting the standard values for the picklist. I’ve watched the rendering in the console, and the picklistEntries array is definitely getting populated with the right values.
'renderPRLLists': function(field,value){ value = skuid.utils.decodeHTML(value);<br>var listModel = skuid.$M('CreatePRL_Lists'),<br>picklistEntries = s];<br>$.each(listModel.getRows(),function(i,row) {<br>picklistEntries.push(<br> { value: row.Name, label: row.Name, defaultValue: false, active: true }<br>);<br>}); <br>field.metadata.picklistEntries = picklistEntries;<br>skuid.ui.fieldRenderers.MULTIPICKLIST.edit(field,value);<br>field.model.updateRow(field.row, field.id, value, {initiatorId: field._GUID});<br>}