diff --git a/web/CXM_form.anubis b/web/CXM_form.anubis
index 57fce35..02b0858 100644
--- a/web/CXM_form.anubis
+++ b/web/CXM_form.anubis
@@ -750,6 +750,23 @@ public define HTML_In_Form
to_HTML_In_Form(fields, lwa, "", true)
.
+public define HTML_In_Form
+ to_HTML_In_Form
+ (
+ CXM_Form_Field field,
+ List(Web_arg) lwa
+ )=
+ to_HTML_In_Form([field], lwa, "", true)
+.
+
+public define HTML_In_Form
+ to_HTML_In_Form
+ (
+ List(CXM_Form_Field) fields
+ )=
+ to_HTML_In_Form(fields, [], "", true)
+.
+
public define HTML_Off_Form
cxm_form
(
diff --git a/web/CXM_jquery.anubis b/web/CXM_jquery.anubis
index ea2da90..3ec4e22 100644
--- a/web/CXM_jquery.anubis
+++ b/web/CXM_jquery.anubis
@@ -20,6 +20,7 @@ public type JQuery_Actioner_type:
public define JQuery_Actioner_type jqlink(WEB_Action_Name name) = jqlink(name, []).
public define JQuery_Actioner_type jqlink(String name) = jqlink(action_name(name), []).
+public define JQuery_Actioner_type jqform(String form) = jqform(form, no_action, []).
/* jQuery Actioner */
public type JQuery_Actioner:
diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis
index a4ed6b8..8f6f1a7 100644
--- a/web/CXM_making_a_web_site.anubis
+++ b/web/CXM_making_a_web_site.anubis
@@ -5371,15 +5371,15 @@ public define Printable_tree
if tooltip is
{
html_tooltip(title, keyword, width) then
- [" 0 then ["&width=",width,"\""] else ["\""]), ">"],
+ [" 0 then ["&width=",width,"\""] else ["\""]), ">"],
html_tooltip_ext(title, extend_type, class_suffix, ext_args) then
with extra_args = format_extra_operands(ext_args),
- [""]
+ [""]
html_tooltip_ext(title, extend_type, ext_args) then
with extra_args = format_extra_operands(ext_args),
- [""]
+ [""]
}.
public define HTML_Off_Form
diff --git a/web/jQuery/CXM_jquery_tiptip.anubis b/web/jQuery/CXM_jquery_tiptip.anubis
index 9427d9e..f7ea5c4 100644
--- a/web/jQuery/CXM_jquery_tiptip.anubis
+++ b/web/jQuery/CXM_jquery_tiptip.anubis
@@ -72,13 +72,13 @@ public define HTML_Partial_Content
JQ_tiptip_position position
)
=
- with uid = tooltip_id+"-"+(Int)now,
+ with uid = tooltip_id+"_"+(Int)now,
if tooltip_partial_content is partial_content(head, body) then
partial_content(
[
js_inline(jquery_ready("
var tooltip_"+uid+"=$('#"+uid+"').html();
- $('#"+rollovered_id+"').tipTip({maxWidth: 'auto', edgeOffset: 10, defaultPosition: \""+jq_tiptip_position_to_string(position)+"\", content: tooltip_"+now+"});
+ $('#"+rollovered_id+"').tipTip({maxWidth: 'auto', edgeOffset: 10, defaultPosition: \""+jq_tiptip_position_to_string(position)+"\", content: tooltip_"+uid+"});
"))
.
head
--
libgit2 0.21.4