"I would like to inquire about how I can implement...
# suitescript
w
"I would like to inquire about how I can implement the functionality to enable and disable columns in a sublist in response to changes in another column. For example, I have a list of items that includes the following columns: 'Item Name,' 'Price Level,' 'Currency Type,' and a field to enter 'Custom Price.' My goal is to achieve that, by selecting certain values in the 'Price Level' column, the 'Custom Price' column is automatically disabled, while choosing 'Default' or 'Custom' in the 'Price Level' enables the 'Custom Price' column. Could you please provide guidance on how to implement this functionality?
b
Use Column.isDisabled in a fieldChanged entry point
w
Thanks👍