Announcement
Collapse
No announcement yet.
Star Rating Field !!!
Collapse
X
-
- Likes 1
-
Great feature!
Is this a standard or an extra feature?
I couldn't find it in EspoCRM 5.7.4
How can we integrate this?
Thanks.
Comment
-
sorry because I didn't notice your comment, if you still interested in this just email me on eymen@eblasoft.com.trLast edited by eymen.elkum; 02-14-2024, 06:20 AM.
-
-
abidoss I'd like to only allow a user to vote once. Right now they can vote as many times as they want on a single record. Have you tried any fixes here? I sent a message to Elba Soft and they suggested using a dynamic formula to make it read only after a user has voted. I'm not sure how to do this. Thanks.
Comment
-
Hi harrytruman,
Try this workaround:
Add a new bool field named "Rate locked" for example.
On formula u can use this:
Code:if (rateField > 0) { rateLocked = true; }
- Likes 2
Comment
-
Originally posted by eymen-elkum View PostHi harrytruman,
Try this workaround:
Add a new bool field named "Rate locked" for example.
On formula u can use this:
Code:if (rateField > 0) { rateLocked = true; }
Hi, thanks for your help here. I tried as you suggested but it's still allowing multiple submissions. Please see attached screen shots. My "rateField" is called "rateHospital"
Even if this works, it looks like your formula would make the rate field read only for all other users after the initial user submission. I would like each user to be able to submit a rating, but only once. Not allow users to submit multiple ratings. Does that make sense? Thanks again for your help. I really appreciate it.1 Photo
Comment
-
Originally posted by harrytruman View Post
Hi, thanks for your help here. I tried as you suggested but it's still allowing multiple submissions. Please see attached screen shots. My "rateField" is called "rateHospital"
Even if this works, it looks like your formula would make the rate field read only for all other users after the initial user submission. I would like each user to be able to submit a rating, but only once. Not allow users to submit multiple ratings. Does that make sense? Thanks again for your help. I really appreciate it.
Comment
Comment