There was an error while loading. Please reload this page.
[v18.1] Filters allowed StringList options in MobileCRM.UI.DetailViewItems.LinkItem.
This example demonstrates how to change a set of allowed options in StringList field implemented as LinkItem.
function updateCustomComboboxSource(name) { MobileCRM.UI.EntityForm.requestObject(entityForm => { const detailView = entityForm.getDetailView("General"); const index = detailView.getItemIndex("status"); detailView.filterStringListOptions(index, ["New", "Canceled", "Closed"], "New"); }); }
Links: