forked from Spreadsheets/WickedGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.right.html
85 lines (75 loc) · 5.37 KB
/
menu.right.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<div style="text-align: center;">
<a href="#" onclick="this.jS.cellStyleToggle('styleBold'); return false;" title="Bold">
<img alt="Bold" src="images/text_bold.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleItalics'); return false;" title="Italic">
<img alt="Italic" src="images/text_italic.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleUnderline', 'styleLineThrough'); return false;" title="Underline">
<img alt="Underline" src="images/text_underline.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleLineThrough', 'styleUnderline'); return false;" title="Strike Through">
<img alt="Strike Through" src="images/text_strikethrough.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleLeft', 'styleCenter styleRight'); return false;" title="Align Left">
<img alt="Align Left" src="images/text_align_left.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleCenter', 'styleLeft styleRight'); return false;" title="Align Center">
<img alt="Align Center" src="images/text_align_center.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleRight', 'styleLeft styleCenter'); return false;" title="Align Right">
<img alt="Align Right" src="images/text_align_right.png"/></a>
<a href="#" onclick="this.jS.cellStyleToggle('styleWrap'); return false;" title="Wrap Text">
<img alt="Web Link" src="images/text_horizontalrule.png"/></a>
<a href="#" onclick="this.jS.merge(); return false;" title="Merge Cells">
<img alt="Fill Down" src="images/mergecell.png"/></a>
<a href="#" onclick="this.jS.unmerge(); return false;" title="Un-Merge Cells">
<img alt="Fill Down" src="images/mergecell.png"/></a>
<a href="#" onclick="this.jS.toggleHide.rowShowAll(); return false;" title="Show All Rows">
<img alt="Fill Down" src="images/show_table_row.png"/></a>
<a href="#" onclick="this.jS.toggleHide.columnShowAll(); return false;" title="Show All Columns">
<img alt="Fill Down" src="images/show_table_column.png"/></a>
<a href="#" onclick="this.jS.fillUpOrDown(); return false;" title="Fill Down">
<img alt="Fill Up" src="images/arrow_down.png"/></a>
<a href="#" onclick="this.jS.fillUpOrDown(true); return false;" title="Fill Up">
<img alt="Fill Up" src="images/arrow_up.png"/></a>
<!--<a href="#" onclick="this.jS.sortVerticalSingle(); return false" title="Sort Ascending">-->
<a href="#" onclick="this.jS.sortVerticalSelectAscending();" title="Sort Ascending">
<img alt="Sort Ascending" src="images/sort_up.png"/></a>
<!--<a href="#" onclick="this.jS.sortVerticalSingle(true); return true;" title="Sort Descending">-->
<a href="#" onclick="this.jS.sortVerticalSelectDescending(true); return true;" title="Sort Descending">
<img alt="Sort Descending" src="images/sort_down.png"/></a>
<!--<a href="#" onclick="this.jS.sortHorizontal(); return true;" title="Sort Right">-->
<a href="#" onclick="this.jS.sortHorizontalSelectAscending(); return true;" title="Sort Right">
<img alt="Sort Right" src="images/sort_right.png"/></a>
<!--<a href="#" onclick="this.jS.sortHorizontal(); return false;" title="Sort Left">-->
<a href="#" onclick="this.jS.sortHorizontalSelectDescending(); return false;" title="Sort Left">
<img alt="Sort Left" src="images/sort_left.png"/></a>
<span class="colorPickers">
<input title="Foreground color" class="colorPickerFont" style="background-image: url('images/palette.png') ! important; width: 16px; height: 16px;"/>
<input title="Background Color" class="colorPickerCell" style="background-image: url('images/palette_bg.png') ! important; width: 16px; height: 16px;"/>
</span>
<a href="#" onclick="
var jS = this.jS,
cell = ((this.jS.obj.tdActive()[0] || {}).jSCell || {}),
url = prompt('Enter Web Address', 'http://www.visop-dev.com/'),
args = [],
doubleQuote = String.fromCharCode(34);
if (!url) {
return false;
}
cell.calcLast = 0;
args.push(doubleQuote + url + doubleQuote);
if (cell.value) {
args.push(doubleQuote + cell.value + doubleQuote);
cell.value = '';
}
cell.formula = 'HYPERLINK(' + args.join(',') + ')';
jS.setDirty(true);
jS.calcDependencies.call(cell);
return false;
" title="HyperLink">
<img alt="Web Link" src="images/page_link.png"/></a>
<a href="#" onclick="this.jS.getTdRange(null, this.jS.obj.formula().val()); return false;" title="Get Cell Range">
<img alt="Get Cell Range" src="images/sheet_get_range.png"/></a>
<a href="#" onclick="this.jS.calc(this.jS.i, true); return false;" title="Refresh Calculations">
<img alt="Refresh Calculations" src="images/arrow_refresh.png"/></a>
<a href="#" onclick="this.jS.cellFind(); return false;" title="Find">
<img alt="Find" src="images/find.png"/></a>
<a href="#" onclick="this.jS.toggleFullScreen(); return false;" title="Toggle Full Screen">
<img alt="Toggle Full Screen" src="images/arrow_out.png"/></a><!--<a href="#" onclick="insertAt('jSheetControls_formula', '~np~text~'+'/np~');return false;" title="Non-parsed"><img alt="Non-parsed" src="images/noparse.png"/></a>-->
</div>