Gets the Spread object with the specified HTML element.
Syntax
[JavaScript]
var spread = FpSpread1.GetSpread(element);
Parameters
- element
- HTML element
Return Type
Spread object (HTML element)
Remarks
This method returns the Spread object (an HTML element) on the client that contains the specific HTML element. If there is no Spread object, the method returns Null.
Example
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
JavaScript | Copy Code |
---|---|
<SCRIPT language=javascript> function onBodyClick() { var spread = FpSpread1.GetSpread(event.srcElement); if (spread!=null) { alert("You clicked spread "+spread.id); var parentSpread = spread.GetParentSpread(); if (parentSpread!=null) { alert("The parent Spread is " + parentSpread.id); } } } </SCRIPT> |