Row action confirmation message is blank
I have a row action to send email, and I need the user to confirm. I have user the ->requiresCofirmation() but the message is blank. Only the two buttons for cancel or proceed are seen with NO TEXT
It does not admit ->confirmationMessage()
If I establish a label (which I do not want, because only icon must be seen) then it asks "Are you sure you want to do this?" + label message
Any ideas of how to establish the text for the confirmation message without a label?
Thank you
4 Replies
what is the issue?
Id I do not include a label, no message is shown as in image 01
Solution
@Albert Lens use
->hiddenLabel()
instead of ->label('')
Thank you.
When using ->hiddenLabel('some text label') it shows the message, but not the some text label in hiddenLabel. It shows the text inside the make.
Now I can achieve what I wanted. Thank you.