Home > OS >  add multiple images on frappe doctype field
add multiple images on frappe doctype field

Time:07-13

I want to add multiple images on the Frappe doctype field. I have made a doctype and have a field name image. In this field, I want to add multiple images from users. I don't know how to implement it.

CodePudding user response:

The image filed will have only one image at a time you cannot upload multiple images to the image filed. Instead, create a child doctype with an image field and you can create multiple rows to upload an image.

Or else you can use Attachments which appears on the left sidebar to upload multiple images

enter image description here

  • Related