Hi there!
We have a custom field renderer on a picklist field that will highlight the row’s background in a nice green color when the picklist value says “Completed”
However, when that custom field renderer is on, the picklist values available to the user include all picklist values, regardless of record type. So we are getting some wonky data with users selecting picklist values that they shouldn’t be able to select for that record type.
Is there an easy fix? Or even a kind of easy fix? Here’s the custom field renderer:
// requiredQuantityRenderer.js
var $ = skuid.$;
var field = arguments[0];
var value = arguments[1];
var row = field.row;
if (value === ‘Completed’) {
field.item.element.addClass(“highlight-row”);
}
skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value);
Question
custom field renderer causes record type related picklist value issue
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
