Safe Haskell | None |
---|---|
Language | Haskell98 |
Text.TDoc.Tags.Form
Documentation
Constructors
Action | |
Fields
|
Instances
Constructors
Selected |
Instances
Instances
Constructors
Multiple |
Instances
class FormMethodTag t where Source #
Minimal complete definition
Methods
formMethodTag :: t FormMethod Source #
Instances
class SelectedTag t where Source #
Minimal complete definition
Methods
selectedTag :: t Selected Source #
Instances
class MultipleTag t where Source #
Minimal complete definition
Methods
multipleTag :: t Multiple Source #
Instances
class InputTypeTag t where Source #
Minimal complete definition
Methods
inputTypeTag :: t InputType Source #
Instances
formMethod :: (FormMethodTag t, IsAttributeOf FormMethod a) => FormMethod -> AttributeOf t a Source #
action :: (ActionTag t, IsAttributeOf Action a) => String -> AttributeOf t a Source #
selected :: (SelectedTag t, IsAttributeOf Selected a) => AttributeOf t a Source #
selectedB :: (SelectedTag t, IsAttributeOf Selected a) => Bool -> AttributesOf t a -> AttributesOf t a Source #
selectedMS :: (SelectedTag t, IsAttributeOf Selected a) => Maybe Selected -> AttributesOf t a -> AttributesOf t a Source #
value :: (ValueTag t, IsAttributeOf Value a) => String -> AttributeOf t a Source #
inputType :: (InputTypeTag t, IsAttributeOf InputType a) => InputType -> AttributeOf t a Source #
class TextareaTag t where Source #
Minimal complete definition
Methods
textareaTag :: t Textarea Source #
Instances
textarea :: (TextareaTag t, AttributeTags t) => Rows -> Cols -> Star t Textarea Source #
Instances
class (ActionTag t, ValueTag t, FormMethodTag t, SelectedTag t, InputTypeTag t, MultipleTag t) => FormAttributeTags t Source #
Instances
class (FormAttributeTags t, LabelTag t, InputTag t, OptionTag t, FormTag t, SelectTag t, TextareaTag t) => FormTags t Source #