Commit 7223ccb92b4b59004a89ab73493ec93b0d2d2cbd
1 parent
d386b8ad
add helper for CXM_Form_Field inpit with missing HTML_Id
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
web/CXM_form.anubis
| @@ -321,6 +321,10 @@ public define CXM_Form_Field | @@ -321,6 +321,10 @@ public define CXM_Form_Field | ||
| 321 | = input([], label, html_Id(n.name), n, init_value, width, mand). | 321 | = input([], label, html_Id(n.name), n, init_value, width, mand). |
| 322 | 322 | ||
| 323 | public define CXM_Form_Field | 323 | public define CXM_Form_Field |
| 324 | + input(HTML_Label label, HTML_Id id, WebArgName n, InitialValue init_value, Width width, Mandatory mand) | ||
| 325 | + = input([], label, id, n, init_value, width, mand). | ||
| 326 | + | ||
| 327 | +public define CXM_Form_Field | ||
| 324 | input(List(CoreAttrs) options, HTML_Label label, WebArgName n, InitialValue init_value, Width width, Mandatory mand) | 328 | input(List(CoreAttrs) options, HTML_Label label, WebArgName n, InitialValue init_value, Width width, Mandatory mand) |
| 325 | = input(options, label, html_Id(n.name), n, init_value, width, mand). | 329 | = input(options, label, html_Id(n.name), n, init_value, width, mand). |
| 326 | 330 |