HelpIcon method
See original GitHub issueYou have a HelpText method, can you also add a HelpIcon method that produces the below HTML after the label?
<a title="" role="button" data-original-title="" data-toggle="popover" data-placement="auto" data-content="Help text description here, with support of <strong>html content.</strong>" data-trigger="focus"><span class="fa fa-info-circle"></span></a>
Issue Analytics
- State:
- Created 7 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
HELPICON
Application Designer 8.3.8 · Layout Elements; HELPICON. HELPICON. For detailed information on the HELPICON control, see Online Help Management.
Read more >org.pdfsam.ui.help.HelpUtils.helpIcon java code examples
HelpPopup popup = new HelpPopup(content); return helpIcon(popup); ... How to use. helpIcon. method. in. org.pdfsam.ui.help.HelpUtils ...
Read more >zombie.ui Class HelpIcon
Method Summary. void, ButtonClicked(java.lang.String name). boolean, onMouseDown(int x, int y). boolean, onMouseMove(int dx, int dy).
Read more >Class HelpIcon
Modifier and Type, Method, Description. void, ButtonClicked(java.lang.String string). java.lang.Boolean, onMouseDown(double double1, double double2).
Read more >How to use Material Icon Help Icon
Material Icon Help Icon. Last update on August 19 2022 21:50:32 (UTC/GMT +8 hours) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You should not be doing anything with the label in the method. You can use this extension that I created to accomplish this. You can remove the ShowRequiredStar call if you want, I did not want it to be there if there was a help icon.
I tried using the new AppendHtml function to add an icon with popover. The problem is that it will be rendered outside the label, so it will ruin the form layout.
I also tried this, which works fine, except when the “required star” is shown, then the icon is rendered between the label and the “required star” instead of after the “required star”.
Is it possible to make sure it is rendered as the last element within the label always?