All Implemented Interfaces:
TagBase, EventAttribute, GlobalAttributable, InputAttributable, TextAreaAttributable, Serializable, Cloneable

oninput attribute for the elements like input, textarea and elements which are editable. OnInput may be used to catch the even when the content of the element is changed,
for eg: if a content of input or textarea is changed. If a div or any other elements contain contenteditable attribute then its content will be editable and oninput attribute can be used to catch its content change event (onchange attribute may not catch event). It's a kind of global attribute as contenteditable is a global attribute.
Since:
2.0.0
See Also:
  • Constructor Details

    • OnInput

      public OnInput()
    • OnInput

      public OnInput(ServerAsyncMethod serverAsyncMethod)
    • OnInput

      public OnInput(String jsPreFunctionBody, ServerAsyncMethod serverAsyncMethod, String jsFilterFunctionBody, String jsPostFunctionBody)
    • OnInput

      public OnInput(String value)
    • OnInput

      public OnInput(ServerAsyncMethod serverAsyncMethod, Object serverSideData)
      Parameters:
      serverAsyncMethod -
      serverSideData -
      Since:
      3.0.2
    • OnInput

      public OnInput(String jsPreFunctionBody, ServerAsyncMethod serverAsyncMethod, String jsFilterFunctionBody, String jsPostFunctionBody, Object serverSideData)
      Parameters:
      jsPreFunctionBody -
      serverAsyncMethod -
      jsFilterFunctionBody -
      jsPostFunctionBody -
      serverSideData -
      Since:
      3.0.2
  • Method Details