| Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > ExpandRow | 
Expands or collapses the specified row.
[JavaScript]
FpSpread1.ExpandRow(row);
None
This method expands the row. This method causes a postback to occur.
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 OutOfEdit() {
       FpSpread1.ExpandRow(1);
   }
</SCRIPT>
                 | 
            |