Spread for ASP.NET 8.0 Product Documentation
onRowHeightChanged

Occurs when the row height has changed.

Syntax

[Inline HTML]

<ELEMENT onRowHeightChanged = "handler" ...>

[Event Property]

FpSpread1.onRowHeightChanged = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onRowHeightChanged>

Arguments

event.sizeHeader
Whether the column indexes are row header columns
event.row
Row that changed
event.height
New row height
event.spread
Spread control that raises the event

Return Type

None

Remarks

This event is triggered when the component has finished resizing the row. The sizeHeader argument returns an undefined value in Mozilla Firefox.

Example

This example JavaScript code maps the event for the Spread on the client side.

JavaScript
Copy Code
<script lang="javascript" type="text/javascript">
    window.onload = function () {
      var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
      if (document.all) {
      // IE
      if (spread1.addEventListener) {
      // IE9
      spread1.addEventListener("RowHeightChanged", changeCompleted, false);
      } else {
      // Other versions of IE and IE9 quirks mode (no doctype set)
        spread1.onRowHeightChanged = changeCompleted;
      }
}
      else {
      // Firefox
      spread1.addEventListener("RowHeightChanged", changeCompleted, false);
      }
    }
    
    function changeCompleted(event) {
      alert("The row has been resized.");
    }
    
</script>
See Also

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options | Documentation Feedback