-
Notifications
You must be signed in to change notification settings - Fork 2
[add] docs updates for v5.2 #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 23 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
ec7ac04
[update] localization guide
mafanya23 bb058d9
[update] complete docs on formulas popup
mafanya23 d7d8ae6
[add] a draft for what's new for v5.2
mafanya23 62d15c4
[update] toolbar-related docs and migration guide for v5.2
mafanya23 8b740c2
[update] what's new for v5.2
mafanya23 1cf45bf
[add] styled cells borders section into user guide, update related docs
mafanya23 bdc2141
[add] freeze/unfreeze cols/rows api, update related guides
mafanya23 f48e97f
[update] complete what's new for v5.2
mafanya23 d6856e1
[update] what's new for v5.2
mafanya23 f9f23f2
[update] what's new for v5.2, add a draft for migration guide
mafanya23 7b18e52
[add] hiding/showing cols/rows api, update related guides
mafanya23 8a1db65
[add] the afterdataloaded event page, update what's new for v5.2
mafanya23 83f2281
[update] freezing/unfreezing rows/cols section in the user guide
mafanya23 5ddf272
Merge pull request #17 from DHTMLX/5.2
mafanya23 151c1fd
Merge branch 'next' into toolbar-restructuring-4915
mafanya23 3319fc1
Merge pull request #18 from DHTMLX/toolbar-restructuring-4915
mafanya23 98b10f2
Merge pull request #19 from DHTMLX/freezing-columns-and-rows-3667
mafanya23 9958f2b
Merge branch 'next' into cols-rows-hiding-showing-4353
mafanya23 db61955
Merge pull request #20 from DHTMLX/cols-rows-hiding-showing-4353
mafanya23 cc0223f
Merge pull request #21 from DHTMLX/styled-border-for-cells-3792
mafanya23 fdf9bf2
Merge pull request #22 from DHTMLX/formulas-descriptions-popup-4885
mafanya23 5fc4bab
[update] correct and complete docs for v5.2
mafanya23 dfdd62e
[update] what's new for v 5.2
mafanya23 38177cc
[update] correct and complete docs for v5.2
mafanya23 7d82da3
[update] correct and complete docs for v5.2
mafanya23 fee8e03
[update] the user guide on work with rows and columns
mafanya23 bd4337b
[update] minor corrections and improvements in docs for v5.2
mafanya23 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
sidebar_label: afterDataLoaded | ||
title: afterDataLoaded event | ||
description: You can learn about the afterDataLoaded event 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. | ||
--- | ||
|
||
# afterDataLoaded | ||
|
||
### Description | ||
|
||
@short: Fires after data loading is complete | ||
|
||
### Usage | ||
|
||
~~~jsx | ||
afterColumnAdd: (cell: string) => void; | ||
~~~ | ||
|
||
### Example | ||
|
||
~~~jsx | ||
const spreadsheet = new dhx.Spreadsheet("spreadsheet_container", {}); | ||
spreadsheet.parse(data); | ||
|
||
// subscribe to the "afterDataLoaded" event | ||
spreadsheet.events.on("afterDataLoaded", () => { | ||
dhx.message({ | ||
text: "Data is successfully loaded into Spreadsheet!", | ||
css: "dhx_message--success", | ||
expire: 5000 | ||
}); | ||
}); | ||
~~~ | ||
|
||
**Change log:** Added in v5.2 | ||
|
||
**Related article:** [Event handling](handling_events.md) | ||
|
||
**Related sample:** [Spreadsheet. Data loaded event](https://snippet.dhtmlx.com/vxr7amz6) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
sidebar_label: freezeCols() | ||
title: freezeCols method | ||
description: You can learn about the freezeCols 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. | ||
--- | ||
|
||
# freezeCols() | ||
|
||
### Description | ||
|
||
@short: Fixes ("freezes") columns | ||
|
||
### Usage | ||
|
||
~~~jsx | ||
freezeCols(cell?: string): void; | ||
~~~ | ||
|
||
### Parameters | ||
|
||
- `cell` - (optional) the id of the cell used to define the id of a column. If the cell id isn't passed, the currently selected cell will be used | ||
|
||
### Example | ||
|
||
~~~jsx | ||
spreadsheet.freezeCols("B2"); // the columns up to the "B" column will be fixed | ||
spreadsheet.freezeCols("sheet2!B2"); // the columns up to the "B" column in "sheet2" will be fixed | ||
~~~ | ||
|
||
**Related articles:** [Work with Spreadsheet](working_with_ssheet.md/#freezingunfreezing-rows-and-columns) | ||
|
||
**Related API:** [`unfreezeCols()`](api/spreadsheet_unfreezecols_method.md/) | ||
|
||
**Related sample:** [Spreadsheet. Freezing columns and rows via API](https://snippet.dhtmlx.com/a12xd1mn) | ||
|
||
**Change log:** | ||
Added in v5.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
sidebar_label: freezeRows() | ||
title: freezeRows method | ||
description: You can learn about the freezeRows 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. | ||
--- | ||
|
||
# freezeRows() | ||
|
||
### Description | ||
|
||
@short: Fixes ("freezes") rows | ||
|
||
### Usage | ||
|
||
~~~jsx | ||
freezeRows(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 | ||
|
||
~~~jsx | ||
spreadsheet.freezeRows("B2"); // the rows up to the second row will be fixed | ||
spreadsheet.freezeRows("sheet2!B2"); // the rows up to the second row in "sheet2" will be fixed | ||
~~~ | ||
|
||
**Related articles:** [Work with Spreadsheet](working_with_ssheet.md/#freezingunfreezing-rows-and-columns) | ||
|
||
**Related API:** [`unfreezeRows()`](api/spreadsheet_unfreezerows_method.md/) | ||
|
||
**Related sample:** [Spreadsheet. Freezing columns and rows via API](https://snippet.dhtmlx.com/a12xd1mn) | ||
|
||
**Change log:** | ||
Added in v5.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
sidebar_label: hideCols() | ||
title: hideCols method | ||
description: You can learn about the hideCols 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. | ||
--- | ||
|
||
# hideCols() | ||
|
||
### Description | ||
|
||
@short: Hides columns | ||
|
||
### Usage | ||
|
||
~~~jsx | ||
hideCols(cell?: string): void; | ||
~~~ | ||
|
||
### Parameters | ||
|
||
- `cell` - (optional) the id of the cell used to define the id of a column. If the cell id isn't passed, the currently selected cell will be used | ||
|
||
### Example | ||
|
||
~~~jsx | ||
spreadsheet.hideCols("B2"); // the "B" column will be hidden | ||
spreadsheet.hideCols("sheet2!B2"); // the column "B" in "sheet2" will be hidden | ||
spreadsheet.hideCols("B2:C2"); // the "B" and "C" columns will be hidden | ||
~~~ | ||
|
||
|
||
**Related article:** [Work with Spreadsheet](working_with_ssheet.md/#hidingshowing-rows-and-columns) | ||
|
||
**Related API:** [`showCols()`](api/spreadsheet_showcols_method.md) | ||
|
||
**Related sample:** [Spreadsheet. Hiding columns and rows via API](https://snippet.dhtmlx.com/zere1ote) | ||
|
||
**Change log:** Added in v5.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
sidebar_label: hideRows() | ||
title: hideRows method | ||
description: You can learn about the hideRows 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. | ||
--- | ||
|
||
# hideRows() | ||
|
||
### Description | ||
|
||
@short: Hides rows | ||
|
||
### Usage | ||
|
||
~~~jsx | ||
hideRows(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 | ||
|
||
~~~jsx | ||
spreadsheet.hideRows("B2"); // the "2" row will be hidden | ||
spreadsheet.hideRows("sheet2!B2"); // the "2" row in "sheet2" will be hidden | ||
spreadsheet.hideRows("B2:C4"); // the rows from "2" to "4" will be hidden | ||
~~~ | ||
|
||
**Related article:** [Work with Spreadsheet](working_with_ssheet.md/#hidingshowing-rows-and-columns) | ||
|
||
**Related API:** [`showRows()`](api/spreadsheet_showrows_method.md) | ||
|
||
**Related sample:** [Spreadsheet. Hiding columns and rows via API](https://snippet.dhtmlx.com/zere1ote) | ||
|
||
**Change log:** Added in v5.2 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо тут поменять. Вроде про afterDataLoaded говорим