How do I render custom picklist values?

It works!

Hi,

I have a picklist with 4 values, i would like to remove 2 values. I  am following the below code, but it is not removing those values.

skuid&#46;ui&#46;fieldRenderers[field&#46;metadata&#46;displaytype][field&#46;mode](field,value);<br /><br />var select = field&#46;element&#46;find('select'); if (select&#46;length) {<br /> &#47;&#47; Remove unwanted entries<br /> $&#46;each(select&#46;children('option'),function(){<br /> if ($(this)&#46;val()==='BA') $(this)&#46;remove(); &nbsp; if ($(this)&#46;val()==='UA') $(this)&#46;remove(); }); } 

Thank you!
I was beating my head against the wall trying to figure out why overriding the skuid.metamodel.picklistEntries was not working.

I get an errror saying “TypeError: field.metadata is undefined” am I missing something here?

var field = arguments[0], value = skuid&#46;utils&#46;decodeHTML(arguments[1]); skuid&#46;ui&#46;fieldRenderers[field&#46;metadata&#46;displaytype][field&#46;mode](field,value); var select = field&#46;element&#46;find('select'); if (select&#46;length) { &#47;&#47; Remove unwanted entries $&#46;each(select&#46;children('option'),function(){ if ($(this)&#46;val() === 'Below Expectation'){ $(this)&#46;remove(); } }); select&#46;append($('<option value="cheese">Cheese</option>')); }

Hasantha,

It sounds like your snippet isn’t getting passed the field as arguments[0]. How are you launching you snippet? This code will only work if you’re running it as a custom field renderer.

oops, my bad thanks for pointing it out Matt :)

You guys rock! Thanks, this really helped :slight_smile:

Hey team, just wondering how I would modify this snippet to render radio buttons instead of the picklist dropdown?

Seems so simple but I haven’t been able to figure it out :slight_smile:

Thank you in advance!

I asked this in a comment above, though have not found a reply and am still stuck with it. How do I modify the snippet to render radio buttons instead of the standard picklist dropdown?

Thank you!

var $ = skuid.$; var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); var select = field.element.find('select'); if (select.length) { $.each(select.children('option'),function(){ if ($(this).val() === 'Survey Complete - Qualified' || $(this).val() === 'Sent' || $(this).val() === 'Responded' || $(this).val() === 'Survey Complete - DNQ' || $(this).val() === 'Appointment Booked'){ $(this).remove(); } }); }<br>

I’m also trying to figure out how to render a picklist created by a custom field renderer snippet as Radio Buttons. 

I know based on this post: http://help.skuidify.com/m/11720/l/214170-skuid-ui-basic-renderers that I need to use renderas ‘RADIO_BUTTONS’ in some way, but not sure how. 

my snippet:

var field = arguments[0], row = field.row, // set the render condition isPercentage = (row.Indicator__r.Benchmark_Type__c == 'Percentage') ? true : false; value = skuid.utils.decodeHTML(arguments[1]), metadata = field.metadata, element = field.item.element, $ = skuid.$; if (isPercentage &amp;&amp; field.mode =='edit'){ //create a blank variable for picklist entries var picklistEntries = []; // set the picklist entries. note defaultValue doesn't matter, the first one will be default picklistEntries.push( { value: '0', label: 'No', defaultValue: true, active: true }, { value: '1', label: 'Yes', defaultValue: false, active: true } ); field.metadata.picklistEntries = picklistEntries; // render the field as a picklist skuid.ui.fieldRenderers.PICKLIST.edit(field,value); } else{ //use the default renderer skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); }<br>

ask and ye shall receive, h/t to https://community.skuid.com/t/readonly-picklist-radio-buttons-can-still-be-changed-on-…

add a line 

field.options.type = 'RADIO_BUTTONS';

before your skuid.ui.fieldRenderers

So Robin you might try

value = skuid.utils.decodeHTML(arguments[1]); field.options.type = 'RADIO_BUTTONS'; skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode]

Thanks Jack! 

Hi Jack and Rob, 

Amazing, thank you for the help! I can now render the options as radio buttons (YAY!). As an added challenge, I would still like to remove unwanted entries. The existing script as suggested earlier does not seem to do the trick any more once the list is rendered as radio buttons. How would I have to modify this code to remove them?

Thank you in advance!


if (select&#46;length) { &nbsp;<br />&nbsp; &nbsp;$&#46;each(select&#46;children('option'),function(){<br />&nbsp; &nbsp; &nbsp; &nbsp; if ($(this)&#46;val() === 'Survey Complete - Qualified' || $(this)&#46;val() === 'Sent' || $(this)&#46;val() === 'Responded' || $(this)&#46;val() === 'Survey Complete - DNQ' || $(this)&#46;val() === 'Appointment Booked'){<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(this)&#46;remove();<br />&nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp;});

I am trying to render a custom picklist but the picklist is just rendering as normal and there are no errors in the console. Can some one point in the right 

Objective:
If the running user has a sales category of “Retail Sales” then only show the “Retail Sales” option in the picklist. Otherwise render as usual.

Notes:
This is a dependent picklist.

Code:

var $ = skuid.$; var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); var isRetailSales = []; var userModel = skuid.model.getModel('RunningUser'), quoteModel = skuid.model.getModel('QuoteDetail'), userRow = userModel.getFirstRow(), userSalesCategory = userModel.getFieldValue(userRow,'AC_Sales_Category__c'), isRetailSales = (userSalesCategory == "Retail Sales"); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); var select = field.element.find('select'); if (isRetailSales &amp;&amp; field.mode == 'edit') { if (select.length) { // Remove unwanted entries $.each(select.children('option'),function(){ if ($(this).val() === 'Retail Sales'){ $(this).remove(); } }); } }<br>

Tami,

It looks like your code is removing the value is the value === ‘Retail Sales’, but from your description, you’re looking to do the opposite. Try changing === to !==

if (isRetailSales &amp;&amp; field&#46;mode == 'edit') {<br /> if (select&#46;length) { &#47;&#47; Remove unwanted entries $&#46;each(select&#46;children('option'),function(){ if ($(this)&#46;val() <b>!==</b> 'Retail Sales'){ $(this)&#46;remove(); } }); } }

Thanks for that catch Matt, but it still is not working. Even when it was “===Retail Sales”, retail sales was not removed. 

^bump^

have you tried triple === in the lines

isRetailSales = (userSalesCategory == "Retail Sales"); 

and/or 

if (isRetailSales &amp;&amp; field.mode == 'edit') {

I’m no JS whiz but I think that first one might need ===

Also you might try inserting some console.log lines at various junctures. Like after isRetailSales definition, console.log('Is Retail Sales? '+isRetailSales), and maybe also after select.length to get the length of your picklist and make sure that is coming in right, and maybe also in the $.each loop, log the value of each picklist value so you can see what it’s capturing. That might help you find an error somewhere. 

Hope that helps!


Jack,

THANK YOU! the issue was with the “==” was why the picklist was not rendering properly. When I changed to “===” the rendering is honored. I will remember this going forward with JS!

However now, the value is not saved. ‘Retail Sales’ is the only option therefore chosen by default (I assume). I checked the object data in the console and the value indeed is not saving.

I tried adding this line with no success. Any idea why the value is not being accepted?

select.append($('<option value="Retail Sales">Retail Sales</option>'));

You said it’s a dependent picklist, is the controlling picklist value set correctly? Is there a record type issue, with Retail Sales not valid for the particular record type you’re using? What error are you getting that it won’t save? I wouldn’t think your custom field renderer snippet would need to handle saving