the coverphoto entity(generalized over system.image) is not accessible even after the giving Read,Write access

1
The image uploader and other CoverPhoto entity Attributes are read only This is how the form looks:    Domain model: the entity access are as follows
asked
3 answers
3

HI Vickrant Shinde,

As Marius van der Knaap mentioned, The Cover Photo Object is empty . All the association and read/Write access you have given is correct. But when you are showing the Course page , the Course_CoverPhoto is empty . 

You can make it Editable in many ways 

  1. While calling the Edit page, Call a microflow which will have course as parameter then Create a CoverPhoto object and associate with Course entity and then Call your Edit page.
  2.  You can Keep a button On the course edit page (Add Cover Photo). Add a Onclick microflow on the button  and the microflow will have Course a parameter and Create a CoverPhoto object and associate with Course parameter. Create a pop up which has CoverPhoto as parameter where you can upload the image. In the pop up page you can write your logic in save button.

    Hope this Helps !!!!
answered
2

Most likely the image object is still empty, that's why it appears as non-editable. Make sure to create a CoverPhoto entity and associate it to the Course object, for example on creation of the Course object.

answered
1

Give the association Course_CoverPhoto as Read, write not just Read. Also create object for CoverPhoto

answered