public abstract class HtmlContainerIdentifiableWithEvents extends HtmlContainerIdentifiableWithUniqueManager implements IHtmlEventListener
HtmlContainerIdentifiableWithUniqueManager.HtmlUniqueObjectFacade| Modifier and Type | Field and Description |
|---|---|
protected HtmlInlineScript |
m_onClick
What to do when the user click on the form item.
|
protected HtmlInlineScript |
m_onDoubleClick
What to do when the user double click on the form item.
|
protected HtmlInlineScript |
m_onKeyDown
What to do when a key is down.
|
protected HtmlInlineScript |
m_onKeyPress
What to do when a key is pressed.
|
protected HtmlInlineScript |
m_onKeyUp
What to do when a key is up.
|
protected HtmlInlineScript |
m_onMouseOut
What to do when the mouse is out.
|
protected HtmlInlineScript |
m_onMouseOver
What to do when the mouse is over.
|
m_uniqueObjectList, m_uniqueObjectsm_htmlElementsEQUALS_BEGIN, EQUALS_END, m_attributes, SPACE| Constructor and Description |
|---|
HtmlContainerIdentifiableWithEvents() |
| Modifier and Type | Method and Description |
|---|---|
HtmlInlineScript |
getOnClick()
Get the value of m_onClick.
|
HtmlInlineScript |
getOnDoubleClick()
Get the value of m_onDoubleClick.
|
HtmlInlineScript |
getOnKeyDown()
Get the value of m_onKeyDown.
|
HtmlInlineScript |
getOnKeyPress()
Get the value of m_onKeyPress.
|
HtmlInlineScript |
getOnKeyUp()
Get the value of m_onKeyUp.
|
HtmlInlineScript |
getOnMouseOut()
Get the value of m_onMouseOut.
|
HtmlInlineScript |
getOnMouseOver()
Get the value of m_onMouseOver.
|
void |
outputAttributes(PrintWriter out)
Deprecated.
|
void |
outputAttributes(StringBuffer strbuf) |
void |
outputAttributes(Writer out) |
IHtmlEventListener |
setOnClick(HtmlInlineScript v)
Set the value of m_onClick.
|
void |
setOnClick(String script)
The onclick event occurs when the pointing device button is clicked
over an element.
|
void |
setOnDblClick(String script)
The ondblclick event occurs when the pointing device button is double
clicked over an element.
|
IHtmlEventListener |
setOnDoubleClick(HtmlInlineScript v)
Set the value of m_onClick.
|
IHtmlEventListener |
setOnKeyDown(HtmlInlineScript v)
Set the value of m_onKeyDown.
|
void |
setOnKeyDown(String script)
The onkeydown event occurs when a key is pressed down over an element.
|
IHtmlEventListener |
setOnKeyPress(HtmlInlineScript v)
Set the value of m_onKeyPress.
|
void |
setOnKeyPress(String script)
The onkeypress event occurs when a key is pressed and released over an
element.
|
IHtmlEventListener |
setOnKeyUp(HtmlInlineScript v)
Set the value of m_onKeyUp.
|
void |
setOnKeyUp(String script)
The onkeyup event occurs when a key is released over an element.
|
void |
setOnMouseDown(String script)
The onmousedown event occurs when the pointing device button is pressed
over an element.
|
void |
setOnMouseMove(String script)
The onmousemove event occurs when the pointing device is moved while it
is over an element.
|
IHtmlEventListener |
setOnMouseOut(HtmlInlineScript v)
Set the value of m_onMouseOut.
|
void |
setOnMouseOut(String script)
The onmouseout event occurs when the pointing device is moved away from
an element.
|
IHtmlEventListener |
setOnMouseOver(HtmlInlineScript v)
Set the value of m_onMouseOver.
|
void |
setOnMouseOver(String script)
The onmouseover event occurs when the pointing device is moved onto an
element.
|
void |
setOnMouseUp(String script)
The onmouseup event occurs when the pointing device button is released
over an element.
|
addUniqueObject, addUniqueObject, destroy, getElementCount, getUniqueObject, getUniqueObjects, output, output, output, removeAllUniqueObjects, removeUniqueObjectsetIDaddElement, addElement, getHtmlElements, outputChildren, outputChildren, outputEndTag, outputEndTag, outputStartTag, outputStartTag, removeAllElements, removeElement, setHtmlElements, toStringgetTag, hasTag, requireClosingTag, requireClosingTag, setClass, setStyle, setTagaddAttribute, addIsThreadHTML5Compliant, addIsThreadXHTMLCompliant, appendToAttribute, getAttributes, isThreadHTML5Compliant, isThreadXHTMLCompliant, removeAttribute, removeIsThreadHTML5Compliant, removeIsThreadXHTMLCompliantclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitsetClassprotected HtmlInlineScript m_onKeyPress
protected HtmlInlineScript m_onKeyDown
protected HtmlInlineScript m_onKeyUp
protected HtmlInlineScript m_onClick
protected HtmlInlineScript m_onDoubleClick
protected HtmlInlineScript m_onMouseOver
protected HtmlInlineScript m_onMouseOut
public void outputAttributes(StringBuffer strbuf)
outputAttributes in interface IHtmlAttributeContaineroutputAttributes in class HtmlAttributeContainerpublic void outputAttributes(PrintWriter out)
outputAttributes in interface IHtmlAttributeContaineroutputAttributes in class HtmlAttributeContainerpublic void outputAttributes(Writer out)
outputAttributes in interface IHtmlAttributeContaineroutputAttributes in class HtmlAttributeContainerpublic HtmlInlineScript getOnKeyPress()
getOnKeyPress in interface IHtmlEventListenerpublic IHtmlEventListener setOnKeyPress(HtmlInlineScript v)
setOnKeyPress in interface IHtmlEventListenerv - Value to assign to m_onKeyPress.public HtmlInlineScript getOnKeyDown()
getOnKeyDown in interface IHtmlEventListenerpublic IHtmlEventListener setOnKeyDown(HtmlInlineScript v)
setOnKeyDown in interface IHtmlEventListenerv - Value to assign to m_onKeyDown.public HtmlInlineScript getOnKeyUp()
getOnKeyUp in interface IHtmlEventListenerpublic IHtmlEventListener setOnKeyUp(HtmlInlineScript v)
setOnKeyUp in interface IHtmlEventListenerv - Value to assign to m_onKeyUp.public HtmlInlineScript getOnClick()
getOnClick in interface IHtmlEventListenerpublic IHtmlEventListener setOnClick(HtmlInlineScript v)
setOnClick in interface IHtmlEventListenerv - Value to assign to m_onClick.public HtmlInlineScript getOnDoubleClick()
public IHtmlEventListener setOnDoubleClick(HtmlInlineScript v)
v - Value to assign to m_onDoubleClick.public HtmlInlineScript getOnMouseOver()
getOnMouseOver in interface IHtmlEventListenerpublic IHtmlEventListener setOnMouseOver(HtmlInlineScript v)
setOnMouseOver in interface IHtmlEventListenerv - Value to assign to m_onMouseOver.public HtmlInlineScript getOnMouseOut()
public IHtmlEventListener setOnMouseOut(HtmlInlineScript v)
v - Value to assign to m_onMouseOut.public void setOnClick(String script)
script - The scriptpublic void setOnDblClick(String script)
script - The scriptpublic void setOnMouseDown(String script)
script - The scriptpublic void setOnMouseUp(String script)
script - The scriptpublic void setOnMouseOver(String script)
script - The scriptpublic void setOnMouseMove(String script)
script - The scriptpublic void setOnMouseOut(String script)
script - The scriptpublic void setOnKeyPress(String script)
script - The scriptpublic void setOnKeyDown(String script)
script - The scriptpublic void setOnKeyUp(String script)
script - The script| Access Rights |
|---|
| SC | DC | Public Part | ACH |
|---|---|---|---|
[sap.com] EP-BASIS-API
|
[sap.com]
|
default
|
EP-PIN-PRT
|
[sap.com] EP-BASIS-API
|
[sap.com] tc/epbc/prt/api
|
api
|
EP-PIN
|
[sap.com] EP-BASIS-API
|
[sap.com] tc/epbc/prt/lib/api
|
api
|
EP-PIN
|
[sap.com] EP-RUNTIME
|
[sap.com] tc/ep/semantics/api
|
api
|
EP-PIN
|
[sap.com] KMC-WPC
|
[sap.com] tc/kmc/wpc/wpcfacade
|
api
|
EP-PIN-WPC-WCM
|
Copyright 2021 SAP SE Complete Copyright Notice