Hi guys,
I'm trying to add an Rich Text Editor control into a gallery, which allows the user enter text for different items.
It's work fine with normal text input, but when I try add the RTE control. it doesn't work, it stays out of the gallery. Is that possible add into a gallery?
Solved! Go to Solution.
Hi @Ftorres90 ,
It is not possible to insert the rich text editor into a gallery but you can try to use it in the Form control instead. For more detailed information about how to achieve this, please refer to below thread:
Regards,
Mona
Hi @Ftorres90
Hi @Ftorres90 ,
It is not possible to insert the rich text editor into a gallery but you can try to use it in the Form control instead. For more detailed information about how to achieve this, please refer to below thread:
Regards,
Mona
I added to idea list if anyone else who searches for this and is need of it please vote
https://powerusers.microsoft.com/t5/Power-Apps-Ideas/Rich-text-editor-in-Gallery/idi-p/880135
Hi @Ftorres90 ,
I have found a workaround for the same, we cannot add a rich text Input field inside a gallery. but there is one way around that is, we can enclose the gallery control inside 2 Container fields ( outer is a horizontal container and inner is a normal container), such that the scrolling functionality of the gallery should be taken control by the outer container(when scrolled, only the outer container should scroll accordingly, not the gallery control or inner container)
then calculate the height of the template, and assign it into a label inside the gallery and make it invisible.
Inside the gallery control, give some space( any label or something invisible, has height of 400- 500) for the Rich text field, because the rich text field is not inside the gallery but is tracking the y property of the space
Now we can create a RichText field in the inner container as given in image and specify the Y property of the RichText field to the space's Y field(the control we created inside the gallery)
so that when scrolled the RichText field also scrolls and looks like it is inside the gallery, but not.
so we can utilise the richtext field.
Happy if accepted as solution.
Thanks