Hi is there a way I can add a help Question marks on create screen for custom fields . so that when users click on the question text popups .
please help
Surender
The only thing that comes to mind is some Atlassian UI html in field's description.
Look at inline dialog example, it looks like something you need.
on one screen if I use it twice the code its not working . only first one on the screen is working . is there any logic for that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess if you are doing something like this twice:
<button data-aui-trigger aria-controls="more-details">
A button as a trigger
</button>
<aui-inline-dialog id="more-details">
<p>Lorem ipsum.</p>
</aui-inline-dialog>
you need to give your inline dialog element different ids. like "more-detail' and "even-more-details" or something
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.