hi team,
I am working on interface, i wanna delete one text field but mistakly it goes in "viewing read only"mode. how do i remove it and make text editable.
thanks,
kiran
Discussion posts and replies are publicly visible
=a!localVariables( local!selectedCategory: null, local!selectedItem: null,
/* Define options for the first dropdown */ local!categoryOptions: { { label: "Fruits", value: "fruits" }, { label: "Vegetables", value: "vegetables" } },
/* Define options for the second dropdown based on the selected category */ local!itemOptions: a!match( value: local!selectedCategory, equals: "fruits", then: { { label: "Apple", value: "apple" }, { label: "Banana", value: "banana" } }, equals: "vegetables", then: { { label: "Carrot", value: "carrot" }, { label: "Broccoli", value: "broccoli" } }, default: {} ),