Hi all,
I have a dropdown field and have a condition for disbaled, based on that it will be disabled or not.--> if it's not null or empty it's working fine
--> if it's null or empty, the dropdown is not disabled and I'm able to select a value for first time. Once I select the value, the dropdown gets disabled. ( since it considers that the field is not null and it's disabled. But I want the field to be editable) Can someone please help here.
disabled: { if(a!isnullormepty(ri!record[my dropdown field])false, true ), },
Discussion posts and replies are publicly visible
This is confusing me! Why do you want to disable the field based on whether the selected value is null?
not based on the selected value. sometimes the field will be populated will a record is created and sometimes not.
Can you share the code snippet of that dropdown?
disabled: { if(and( a!isNullOrEmpty( ri!record[] ),
local!isvalueavailable), false, true ), },
Please share your code for the entire dropdown. And as Stefan mentioned, please use a Code Box to enable us to see proper formatting and indentation.
a!dropdownField( label: "dropdown", choiceLabels: {}, choiceValues: {}, value: ri!record[fieldname], saveInto: ri!record[fieldname], disabled: { if( and( a!isNullOrEmpty( ri!record[], ), local!isValueAvailable ), false, true ), }, required: true )
Is that the real code? Line 11 does not look correct.
I didn;t mention the exact field here. But in my code I am referring to the dropdown field
OK. Then I need to repeat my question. Why do you make disabled depending on whether a value is selected?
Unknown said:Is that the real code?
consider that Record Type code (when copied/pasted to plaintext) looks like incomprehensible gobbledygook - so most folks understandably obfuscate that stuff out. Sad that we have to resort to such measures just to post code here, but meh...