Commit 2d88dd67a62c569b61d02c8d3b49ae8668d1fb53
1 parent
2221e69b
dojo tooltip with text
Showing
1 changed file
with
14 additions
and
0 deletions
Show diff stats
calexium_lib/web/CXM_dojo.anubis
| @@ -447,6 +447,20 @@ public define HTML_Off_Form | @@ -447,6 +447,20 @@ public define HTML_Off_Form | ||
| 447 | div([attr("dojoType", "dijit.Toolbar") . attributes ], | 447 | div([attr("dojoType", "dijit.Toolbar") . attributes ], |
| 448 | content). | 448 | content). |
| 449 | 449 | ||
| 450 | + | ||
| 451 | +public define HTML_Off_Form | ||
| 452 | + dojo_tooltip | ||
| 453 | + ( | ||
| 454 | + List(CoreAttrs) attributes, | ||
| 455 | + List(Text_Option) txt_attr, | ||
| 456 | + HtmlId html_id, | ||
| 457 | + String label, | ||
| 458 | + HTML_Off_Form tooltip_content, | ||
| 459 | + )= | ||
| 460 | + sequence([ | ||
| 461 | + text([id(html_id.id) . txt_attr], label), | ||
| 462 | + div([id(html_id.id + "_tt"), attr("connectId", html_id.id), attr("dojoType", "dijit.Tooltip") . attributes], tooltip_content) | ||
| 463 | + ]). | ||
| 450 | 464 | ||
| 451 | 465 | ||
| 452 | public define HTML_Off_Form | 466 | public define HTML_Off_Form |