CurryInfo: html2-3.5.0 / HTML.Base.formElemWithAttrs

definition:
formElemWithAttrs :: HtmlFormDef a -> Attrs -> BaseHtml
formElemWithAttrs formspec attrs = BaseAction formAction
 where
  formAction = do
    urlparam <- getUrlParameter
    he       <- genInitForm formspec
    return $
      HtmlStruct "form"
        ([("method", "post"), ("action", '?' : urlparam)] ++ attrs)
        (hiddenField "FORMID" (formDefId formspec) : fst (instHtmlRefs he 0))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- A form element (see 'formElem') where some attributes are added
--- to the resulting HTML `form` structure.
--- The attributes must be different from the standard form
--- attributes `method` and `action`.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> {BaseAction}}
name:
formElemWithAttrs
precedence:
no precedence defined
result-values:
{BaseAction}
signature:
HtmlFormDef a -> [(String, String)] -> BaseHtml
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term