diff --git a/calexium_lib/web/CXM_dojo.anubis b/calexium_lib/web/CXM_dojo.anubis index 22a967c..12c5e2e 100644 --- a/calexium_lib/web/CXM_dojo.anubis +++ b/calexium_lib/web/CXM_dojo.anubis @@ -73,25 +73,38 @@ public type Input_Type: password. public type InputDial: - input_dial(String id, Input_Type input_type, String label). + input_dial(String id, Input_Type input_type, String label), + input_date(String id, String label). define HTML_Row(HTML_Off_Form) input_in_dialog ( InputDial input_data )= - if input_data is input_dial(id, input, label) then - row([], [cell([], sequence([ - literal(""), - literal("") - ]))]). + if input_data is + { + input_dial(id, input, label) then + row([], [cell([], sequence([ + literal(""), + literal("") + ]))]), + input_date(id, label) then + row([], [cell([], sequence([ + literal(""), + literal("
+
" + ) + ]))]) + } +. define List(HTML_Row(HTML_Off_Form)) inputs_in_dialog @@ -637,4 +650,3 @@ public define HTML_Off_Form div([id(html_id.id), class("progress_bar"), attr("indeterminate", "true"), attr("dojoType", "dijit.ProgressBar") . attributes], literal("")) ]). - -- libgit2 0.21.4