Mathilda Posted October 4, 2017 Report Share Posted October 4, 2017 I just wanted to share this solution if you wish to add some text like "Select items" to your list string field, you may use this solution Insert HTML block above the field, disable html editor and insert code: <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script> <script> function placeholders() { document.querySelector("input[type=text][name=ComboBoxInsertRecordField_name]") .setAttribute("placeholder", "Select items"); } $(document).ready(placeholders); </script> Replace Field_name with name of your field. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.