Hi,
I am looking to add a text placeholder in a Model driven App from. Any advice?
Thanks
Solved! Go to Solution.
Hi @msomani,
If you want to add a text field to a form in a Modern Driven app you can use this guide here:
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/add-field-form
You'll have to edit the form belonging to the respective entity and add the field:
Thank you,
Ovidiu
Hi @msomani,
If you want to add a text field to a form in a Modern Driven app you can use this guide here:
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/add-field-form
You'll have to edit the form belonging to the respective entity and add the field:
Thank you,
Ovidiu
Thanks @a-ovbord
But, I am looking for placeholder in a text box that I have in the model driven app form.
Hi,
Why was this marked as solved?
@msomani is asking about placeholder in the textbox.
By the way, do we have solution for this?
Thanks,
Binh.
Hi even I am trying to add a placeholder to an input field in Model driven App like the below one . can anyone help me with this??
Thanks in advance
Add the following syntax in using JQuery
$("#fieldname").attr("placeholder", "Provide an email" );
or
$("#fieldname").prop("placeholder", "Provide an email" );