How can I make a property editable in embedded read only mode section
Hello,
1. Requirement:
I have three stages - Create, Stage2, and Stage3. Also let's assume I have many properties. All of properties should be editable in Create stage. In Stage 2, only one property ("MyProperty4") should be editable. In Stage 3, all properties should be read only. I do not want to build multiple sections for better maintenabilities. Rather, I want to create only one section and reuse it across stages. The work status gets changed in each stage - "New" in Create stage, "Pending-Stage2" in Stage 2, and "Pending-Stage3" in Stage 3. So, I want to use these status for read only / editable conditioning.
2. What I tried:
I have created a "Create" section. I configured MyProperty4 to be read only with condition - .pyStatusWork=="Pending-Stage3" because in other stages this property should be editable. I was expecting if false it gets editable.
Then I included this "Create" section into Stage2 and Stage3 with read only (I do not want to set conditions for each property, and I want to apply read only mode entirely on a section. I was expecting above condition takes precedence and only MyProperty4 gets editable in Stage 2.
Hello,
1. Requirement:
I have three stages - Create, Stage2, and Stage3. Also let's assume I have many properties. All of properties should be editable in Create stage. In Stage 2, only one property ("MyProperty4") should be editable. In Stage 3, all properties should be read only. I do not want to build multiple sections for better maintenabilities. Rather, I want to create only one section and reuse it across stages. The work status gets changed in each stage - "New" in Create stage, "Pending-Stage2" in Stage 2, and "Pending-Stage3" in Stage 3. So, I want to use these status for read only / editable conditioning.
2. What I tried:
I have created a "Create" section. I configured MyProperty4 to be read only with condition - .pyStatusWork=="Pending-Stage3" because in other stages this property should be editable. I was expecting if false it gets editable.
Then I included this "Create" section into Stage2 and Stage3 with read only (I do not want to set conditions for each property, and I want to apply read only mode entirely on a section. I was expecting above condition takes precedence and only MyProperty4 gets editable in Stage 2.
However, against my expectation, MyProperty4 was editable in Create stage and read only in both Stage 2 & Stage3. If I want to control read only / editable mode using a single section, how can I achieve it?
Regards,