Thanks for your input @ben,
My problem is on the select’s option setup ( dmx-bind:disabled). What condition should I use in order to check if the selectedValue of my select is disabled if its value exists in the prod_vars data store…
<select id="selectVars" class="form-select fw-bold" required="" dmx-bind:value="prod_vars.data[variationIndex.value.toNumber()-1].var_id">
<option value="" dmx-repeat:repeatvars="srvc_getVar_OptionList.data.query" dmx-bind:value="var_id" dmx-text="var_Name" dmx-bind:disabled="prod_vars.data.where(`var_id`, var_id, 'inArray')">option</option>
</select>
Which formatter should I use and how?
I have already tried ‘inArray’ , ‘contains’, ‘==’ but no luck… I don’t know if my syntax is wrong
I am talking about this solution that @mebeingken gave a few days ago on Paul’s question…
How can I accomplish that in my case?