Text box retrieved using association is coming as disabled on form

0
I have a table AssetDetails which has a 1-1 association with AssetUser and AssetTransfer table. I am trying to get the fields from all these 3 tables in a page however fields of AssetTransfer table are always disabled. I have also given read write rights. Can someone help how to make this enable to user?   Why is comments textbox disabled?  
asked
3 answers
1

What you can do is call this page through a microflow. You can first create an object of AssetTransfer (GiftImage), Then create an object of AssetDetails(Gift).

While creating AssetDetails assign AssetTransfer object to it

 

This should make your your comments editable.

If you are already having an AssetDetails object, just pass that as parameter to microflow and create AssetDetails object and add to AssetDetails object

answered
1

First thing to check would be access rights, but you have already checked it. 

Check the editability of AssetTransfer data view, it might be set to No.

 

 

**** EDIT ****

It is possible that the AssetTransfer object is not created and not associated with Asset. Can you check this?

answered
0

I tried to do the same earlier but the mistake was that I had the existing assetdetails object and I was creating AssetDetails again in the microflow which was causing problem. Below is the modified microflow that worked. Thanks for the help :)

 

answered