Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.12 KB

File metadata and controls

37 lines (24 loc) · 1.12 KB
sidebar_label unfreezeRows()
title unfreezeRows method
description You can learn about the unfreezeRows method in the documentation of the DHTMLX JavaScript Spreadsheet library. Browse developer guides and API reference, try out code examples and live demos, and download a free 30-day evaluation version of DHTMLX Spreadsheet.

unfreezeRows()

Description

@short: Unfreezes the fixed ("frozen") rows

Usage

unfreezeRows(cell?: string): void;

Parameters

  • cell - (optional) the id of the cell used to define the id of a row. If the cell id isn't passed, the currently selected cell will be used

Example

spreadsheet.unfreezeRows(); // fixed rows in the current sheet will be unfrozen
spreadsheet.unfreezeRows("sheet2!A1"); // fixed rows in "sheet2" will be unfrozen

Related articles: Work with Spreadsheet

Related API: freezeRows()

Related sample: Spreadsheet. Freezing columns and rows via API

Change log: Added in v5.2