Change none label on picklist created by custom field renderer?

Hey @Jack_Sanford , i found another thread that could help with your use case:

If you see Zach’s solution, it provides a good example that is (or close to) what you’re trying to achieve.

skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value);
var select = field.element.find('select');
if (select.length) {
    // Remove unwanted entries
    $.each(select.children('option'),function(){
         if ($(this).val()==='blah')) $(this).remove();
    });
    // Add new entries
    select.append($('<option value="cheese">Cheese</option>'));
 }

you can add or remove or add the value of what you are trying to change.

I hope this helps!