Skip to content

Commit 344d271

Browse files
committed
Add 3 articles about RadSpreadsheet
1 parent 6ad10cc commit 344d271

File tree

7 files changed

+84
-2
lines changed

7 files changed

+84
-2
lines changed

_config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,12 +1430,18 @@ navigation:
14301430
"*spreadsheet/functionality/cellformat":
14311431
title: "Cell Format"
14321432
position: 3
1433+
"*spreadsheet/functionality/cellhyperlink":
1434+
title: "Cell Hyperlink"
1435+
position: 4
14331436
"*spreadsheet/functionality/validation":
14341437
title: "Validation"
1435-
position: 4
1438+
position: 5
14361439
"*spreadsheet/functionality/formulas-and-functions":
14371440
title: "Formulas and Functions"
1438-
position: 5
1441+
position: 6
1442+
"*spreadsheet/functionality/multilinecellediting":
1443+
title: "Multiline Cell Editing"
1444+
position: 7
14391445
"*spreadsheet/client-side-programming/objects":
14401446
title: "Objects"
14411447
position: 0

controls/spreadsheet/client-side-programming/objects/spreadsheetsheet.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,15 @@ function insertSheetRow() {
102102
| **set_frozenColumns** |int|none|Sets the amount of frozen columns displayed by the sheet.|
103103
| **get_frozenRows** |none|int|Gets the amount of frozen rows displayed by the sheet.|
104104
| **set_frozenRows** |int|none|Set the amount of frozen rows displayed by the sheet.|
105+
| **set_showGridLines** |bool|none|Togles the visibility state of the GrigLines in the sheet.|
105106

107+
````JavaScript
108+
109+
function insertSheetRow() {
110+
var spreadsheet = $find("<%= RadSpreadsheet1.ClientID %>");
111+
var activeSheet = spreadsheet.get_activeSheet();
112+
activeSheet.set_showGridLines(false); //hides the grid lines in the active sheet
113+
}
114+
115+
````
106116

14.4 KB
Loading
19.5 KB
Loading
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Overview
3+
page_title: RadSpreadsheet Cell Hyperlink Overview | UI for ASP.NET AJAX Documentation
4+
description: CellHyperlink Overview
5+
slug: spreadsheet/functionality/cellhyperlink/overview
6+
tags: overview
7+
published: True
8+
position: 0
9+
---
10+
11+
# Cell Format Overview
12+
13+
As from R3 2016 **RadSpreadsheet** provides the ability to define hyperlink for its cells content.
14+
15+
You can define a hyperlink for a given cell in two ways:
16+
17+
1. Using the ToolbarTab(see **Figure 1**), which will prompt you with a popup, where you can set the needed url (see **Figure 2**)
18+
19+
>caption Figure 1 shows the ToolbarTab used to open the popup.
20+
**Figure 1**:
21+
![ToolbarTab](images/spreadsheet-toolbartab.png)
22+
23+
>caption Figure 2 illustrates the popup where you can set the hyperlink for the cell.
24+
**Figure 2**:
25+
![Hyperlink Popup](images/spreadsheet-hyperlinkpopup.png)
26+
27+
From the popup, you can also remove a hyperlink, using the **Remove link** button.
28+
29+
2. Programatically, using the Client API of the RadSpreadsheet and the SpreadsheetRange object.
30+
31+
>caption The following example demonstrates how to programatically set hyperlink for a certain cell.
32+
33+
````JavaScript
34+
35+
function setHyperlink() {
36+
var spreadsheet = $find("<%= RadSpreadsheet1.ClientID %>");
37+
var activeSheet = spreadsheet.get_activeSheet();
38+
var singleCellRange = activeSheet.get_range("B3")
39+
singleCellRange.set_link("www.telerik.com");
40+
}
41+
42+
````
43+
44+
## See Also
45+
[RadSpreadsheet Full Set of Tools Demo](http://demos.telerik.com/aspnet-ajax/spreadsheet/examples/spreadsheettoolbar/defaultcs.aspx)
2.15 KB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Overview
3+
page_title: RadSpreadsheet Multiline Cell Editing Overview | UI for ASP.NET AJAX Documentation
4+
description: Multiline Cell Editing Overview
5+
slug: spreadsheet/functionality/multilinecellediting/overview
6+
tags: overview
7+
published: True
8+
position: 0
9+
---
10+
11+
# Multiline Cell Editing Overview
12+
13+
As from R3 2016 **RadSpreadsheet** provides the ability for multiline editing for its cells content. In order to go to a new line, you can use the Alt+Enter buttons combination(see **Figure 1**).
14+
15+
16+
>caption Figure 1 demonstrates the multiline editing feature.
17+
**Figure 1**:
18+
![MultiLineEditing](images/spreadsheet-multilineediting.png)
19+
20+
## See Also
21+
[RadSpreadsheet Full Set of Tools Demo](http://demos.telerik.com/aspnet-ajax/spreadsheet/examples/spreadsheettoolbar/defaultcs.aspx)

0 commit comments

Comments
 (0)