htmlinputelement

package
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 31, 2022 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	//ErrNotImplemented ErrNotImplemented error
	ErrNotImplemented        = errors.New("Browser not implemented HtmlInputElement")
	ErrNotAnHtmlInputElement = errors.New("Object is not an HTMLInputElement")
)

Functions

func GetInterface

func GetInterface() js.Value

GetJSInterface get the JS interface of formdata

Types

type HtmlInputElement

type HtmlInputElement struct {
	htmlelement.HtmlElement
}

HtmlInputElement struct

func NewFromElement

func NewFromElement(elem element.Element) (HtmlInputElement, error)

func NewFromJSObject

func NewFromJSObject(obj js.Value) (HtmlInputElement, error)

func (HtmlInputElement) Accept

func (h HtmlInputElement) Accept() (string, error)

func (HtmlInputElement) Alt

func (h HtmlInputElement) Alt() (string, error)

func (HtmlInputElement) Autocomplete

func (h HtmlInputElement) Autocomplete() (string, error)

func (HtmlInputElement) Autofocus

func (h HtmlInputElement) Autofocus() (bool, error)

func (HtmlInputElement) Checked

func (h HtmlInputElement) Checked() (bool, error)

Properties that apply only to elements of type "checkbox" or "radio"

func (HtmlInputElement) DefaultChecked

func (h HtmlInputElement) DefaultChecked() (bool, error)

func (HtmlInputElement) DefaultValue

func (h HtmlInputElement) DefaultValue() (string, error)

func (HtmlInputElement) DirName

func (h HtmlInputElement) DirName() (string, error)

func (HtmlInputElement) Disabled

func (h HtmlInputElement) Disabled() (bool, error)

func (HtmlInputElement) Files

func (h HtmlInputElement) Files() (filelist.FileList, error)

func (HtmlInputElement) Form

func (h HtmlInputElement) Form() (element.Element, error)

func (HtmlInputElement) FormAction

func (h HtmlInputElement) FormAction() (string, error)

func (HtmlInputElement) FormEncType

func (h HtmlInputElement) FormEncType() (string, error)

func (HtmlInputElement) FormMethod

func (h HtmlInputElement) FormMethod() (string, error)

func (HtmlInputElement) FormNoValidate

func (h HtmlInputElement) FormNoValidate() (bool, error)

func (HtmlInputElement) FormTarget

func (h HtmlInputElement) FormTarget() (string, error)

func (HtmlInputElement) Height

func (h HtmlInputElement) Height() (int, error)

func (HtmlInputElement) HtmlInputElement_

func (h HtmlInputElement) HtmlInputElement_() HtmlInputElement

func (HtmlInputElement) Indeterminate

func (h HtmlInputElement) Indeterminate() (bool, error)

func (HtmlInputElement) Labels

func (h HtmlInputElement) Labels() (nodelist.NodeList, error)

func (HtmlInputElement) List

func (HtmlInputElement) Max

func (h HtmlInputElement) Max() (string, error)

func (HtmlInputElement) MaxLength

func (h HtmlInputElement) MaxLength() (int, error)

func (HtmlInputElement) Min

func (h HtmlInputElement) Min() (string, error)

func (HtmlInputElement) MinLength

func (h HtmlInputElement) MinLength() (int, error)

func (HtmlInputElement) Multiple

func (h HtmlInputElement) Multiple() (bool, error)

func (HtmlInputElement) Name

func (h HtmlInputElement) Name() (string, error)

func (HtmlInputElement) Pattern

func (h HtmlInputElement) Pattern() (string, error)

func (HtmlInputElement) Placeholder

func (h HtmlInputElement) Placeholder() (string, error)

func (HtmlInputElement) ReadOnly

func (h HtmlInputElement) ReadOnly() (bool, error)

func (HtmlInputElement) Required

func (h HtmlInputElement) Required() (bool, error)

func (HtmlInputElement) SelectionDirection

func (h HtmlInputElement) SelectionDirection() (string, error)

func (HtmlInputElement) SelectionEnd

func (h HtmlInputElement) SelectionEnd() (int, error)

func (HtmlInputElement) SelectionStart

func (h HtmlInputElement) SelectionStart() (int, error)

func (HtmlInputElement) SetAccept

func (h HtmlInputElement) SetAccept(value string) error

func (HtmlInputElement) SetAlt

func (h HtmlInputElement) SetAlt(value string) error

func (HtmlInputElement) SetAutocomplete

func (h HtmlInputElement) SetAutocomplete(value string) error

func (HtmlInputElement) SetAutofocus

func (h HtmlInputElement) SetAutofocus(value bool) error

func (HtmlInputElement) SetChecked

func (h HtmlInputElement) SetChecked(value bool) error

func (HtmlInputElement) SetDefaultChecked

func (h HtmlInputElement) SetDefaultChecked(value bool) error

func (HtmlInputElement) SetDefaultValue

func (h HtmlInputElement) SetDefaultValue(value string) error

func (HtmlInputElement) SetDirName

func (h HtmlInputElement) SetDirName(value string) error

func (HtmlInputElement) SetDisabled

func (h HtmlInputElement) SetDisabled(value bool) error

func (HtmlInputElement) SetFormAction

func (h HtmlInputElement) SetFormAction(value string) error

func (HtmlInputElement) SetFormEncType

func (h HtmlInputElement) SetFormEncType(value string) error

func (HtmlInputElement) SetFormMethod

func (h HtmlInputElement) SetFormMethod(value string) error

func (HtmlInputElement) SetFormNoValidate

func (h HtmlInputElement) SetFormNoValidate(value bool) error

func (HtmlInputElement) SetFormTarget

func (h HtmlInputElement) SetFormTarget(value string) error

func (HtmlInputElement) SetHeight

func (h HtmlInputElement) SetHeight(value int) error

func (HtmlInputElement) SetIndeterminate

func (h HtmlInputElement) SetIndeterminate(value bool) error

func (HtmlInputElement) SetMax

func (h HtmlInputElement) SetMax(value string) error

func (HtmlInputElement) SetMaxLength

func (h HtmlInputElement) SetMaxLength(value int) error

func (HtmlInputElement) SetMin

func (h HtmlInputElement) SetMin(value string) error

func (HtmlInputElement) SetMinLength

func (h HtmlInputElement) SetMinLength(value int) error

func (HtmlInputElement) SetMultiple

func (h HtmlInputElement) SetMultiple(value bool) error

func (HtmlInputElement) SetName

func (h HtmlInputElement) SetName(value string) error

func (HtmlInputElement) SetPattern

func (h HtmlInputElement) SetPattern(value string) error

func (HtmlInputElement) SetPlaceholder

func (h HtmlInputElement) SetPlaceholder(value string) error

func (HtmlInputElement) SetReadOnly

func (h HtmlInputElement) SetReadOnly(value bool) error

func (HtmlInputElement) SetRequired

func (h HtmlInputElement) SetRequired(value bool) error

func (HtmlInputElement) SetSelectionDirection

func (h HtmlInputElement) SetSelectionDirection(value string) error

func (HtmlInputElement) SetSelectionEnd

func (h HtmlInputElement) SetSelectionEnd(value int) error

func (HtmlInputElement) SetSelectionStart

func (h HtmlInputElement) SetSelectionStart(value int) error

func (HtmlInputElement) SetSize

func (h HtmlInputElement) SetSize(value int) error

func (HtmlInputElement) SetSrc

func (h HtmlInputElement) SetSrc(value string) error

func (HtmlInputElement) SetStep

func (h HtmlInputElement) SetStep(value string) error

func (HtmlInputElement) SetType

func (h HtmlInputElement) SetType(value string) error

func (HtmlInputElement) SetValue

func (h HtmlInputElement) SetValue(value string) error

func (HtmlInputElement) SetWidth

func (h HtmlInputElement) SetWidth(value int) error

func (HtmlInputElement) Size

func (h HtmlInputElement) Size() (int, error)

func (HtmlInputElement) Src

func (h HtmlInputElement) Src() (string, error)

func (HtmlInputElement) Step

func (h HtmlInputElement) Step() (string, error)

func (HtmlInputElement) Type

func (h HtmlInputElement) Type() (string, error)

func (HtmlInputElement) ValidationMessage

func (h HtmlInputElement) ValidationMessage() (string, error)

func (HtmlInputElement) Validity

func (HtmlInputElement) Value

func (h HtmlInputElement) Value() (string, error)

func (HtmlInputElement) ValueAsDate

func (h HtmlInputElement) ValueAsDate() (date.Date, error)

func (HtmlInputElement) ValueAsNumber

func (h HtmlInputElement) ValueAsNumber() (float64, error)

func (HtmlInputElement) Width

func (h HtmlInputElement) Width() (int, error)

func (HtmlInputElement) WillValidate

func (h HtmlInputElement) WillValidate() (bool, error)

type HtmlInputElementFrom

type HtmlInputElementFrom interface {
	HtmlInputElement_() HtmlInputElement
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL