diff --git a/calexium_lib/web/CXM_dojo.anubis b/calexium_lib/web/CXM_dojo.anubis index 99a51f4..bb773ef 100644 --- a/calexium_lib/web/CXM_dojo.anubis +++ b/calexium_lib/web/CXM_dojo.anubis @@ -429,13 +429,24 @@ public define HTML_Off_Form dojo_button ( HtmlId html_id, + Maybe(String) class, String name, - String iconclass, + Maybe(String) iconclass, Maybe(String) tip_msg, String execute, )= literal(" - " + - if tip_msg is - { - failure then "", - success(tip) then - "" + tip + "" - }). + literal(" + " + + if tip_msg is + { + failure then "", + success(tip) then + "" + tip + "" + }). public define HTML_Off_Form @@ -576,3 +598,17 @@ public define HTML_Off_Form . attributes ]), literal("")). +public define HTML_Off_Form + dojo_progressBar + ( + List(CoreAttrs) attributes, + List(Text_Option) attributes_text, + HtmlId html_id, + String label + )= + sequence([ + text([id("text_" + html_id.id), class("progress_bar") . attributes_text], label), + div([id(html_id.id), class("progress_bar"), attr("indeterminate", "true"), attr("dojoType", "dijit.ProgressBar") . attributes], literal("")) + ]). + + -- libgit2 0.21.4