when i do console im able to see the values but in the page of underwriter im not able to see any value in the ui
Hi @Aswin ,
Can you share a screenshot of how you have binded your values.
this is a global page and im re using this in the underwriter page for showing the details of the user and this is how im binded the value
@Aswin ,
From your console of alpha.co.get() I can see policyDetails instead of policy_details and can’t see end_date inside it aswell.
Can you confirm that.
Oh so when we are passing the data while creating the case should match the format of our data model right ?
Your models make it easy for values to appear in the dropdown when binding. However, if they don’t align with how the data is structured in the case object, a mismatch will occur.
Example:
If your dropdown is expecting a value like "policyType": "Comprehensive" but the case object stores it as "policyType": { "id": 1, "name": "Comprehensive" }, the binding won’t work correctly and the wrong value may appear or fail to display.


