-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
144 lines (131 loc) · 5.5 KB
/
popup.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!-- popup.html -->
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 400px;
padding: 20px;
font-family: Arial, sans-serif;
}
.shortcut {
margin-bottom: 15px;
padding: 10px;
border-bottom: 1px solid #eee;
}
.key {
background: #f0f0f0;
padding: 2px 6px;
border-radius: 3px;
border: 1px solid #ccc;
font-family: monospace;
}
.description {
margin-top: 5px;
color: #666;
}
h2 {
color: #333;
border-bottom: 2px solid #333;
padding-bottom: 5px;
}
.section {
margin-bottom: 20px;
}
.version {
color: #666;
font-size: 0.8em;
text-align: right;
}
.note {
color: #45003a;
font-style: italic;
font-size: 0.9em;
margin-top: 5px;
}
</style>
</head>
<body>
<h2>Kneuron 1.7.0 - Keyboard Shortcuts</h2>
<div class="section">
<h3>Global Shortcuts</h3>
<div class="shortcut">
<div><span class="key">Enter</span> Save or submit form</div>
<div class="description">Works on any form or editing view</div>
<div class="note">In the Javascript and CSS editors - use Alt+S instead</div>
</div>
<div class="shortcut">
<div><span class="key">Esc</span> Close or cancel</div>
<div class="description">Closes modals or cancels current action</div>
</div>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">M</span> Toggle divier to min/max position</div>
<div class="description">Will move the splitter all the way to the left or to the right</div>
</div>
<div class="shortcut">
<div><span class="key">Tab</span> Move focus to next section</div>
<div class="description">To move the keyboard's focus around the page</div>
</div>
<div class="shortcut">
<div><span class="key">Up/Down</span>, <span class="key">PgUp/PgDn</span>, <span class="key">Home/End</span> Change current selection</div>
<div class="description">Selects the item in the current list, typically after a Tab press</div>
</div>
</div>
<div class="section">
<h3>Code Editors</h3>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">S</span> Save</div>
<div class="description">Save in Javascript and CSS editors</div>
</div>
</div>
<div class="section">
<h3>Navigation</h3>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">1-6</span> Navigate vertical main menu</div>
<div class="description">Quick access to main navigation items in first column</div>
<div class="note">Some accounts have 5 or 6 menus, depending if you have Flows</div>
</div>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">W</span>, <span class="key">E</span>, or <span class="key">R</span> Navigate horizontal tabs</div>
<div class="description">Quick access to tab navigation items at top</div>
</div>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">`</span> (backtick / backquote) Go back</div>
<div class="description">Returns to previous section</div>
</div>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">S</span> Search</div>
<div class="description">Sets focus on the filter box, if visible</div>
</div>
</div>
<div class="section">
<h3>View Settings Tools <span class="note"> (a view must be selected)</span></h3>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">S</span> View's Settings</div>
<div class="description">Access view settings' toolbox</div>
</div>
<div class="shortcut">
<div><span class="key">Alt</span> + <span class="key">Q</span>, <span class="key">A</span>, <span class="key">Z</span>, or <span class="key">X</span></div>
<div class="description">Quick access to the first through fourth sub-tools in 2nd column</div>
<div class="note">Will auto-navigate to settings first if needed</div>
</div>
</div>
<div class="section">
<h3>Automatic Features</h3>
<div class="shortcut">
- Re-orders the left menu pane: Data, Pages, Tasks, Flows, Settings and Data Model<br>
- Incremental filtering on Tables, User Roles, Pages and Copy/Move to Page selector<br>
- Adds the Table, Scene and View IDs<br>
- Reduces grids and lists, with fading effect (3 groups / 3 records max)<br>
- Automatically expands hidden togglers in list views<br>
- Makes Description and Email Message text areas larger in Pages editing toolboxes<br>
- Hides beginners' tooltips, except for field information<br>
- Modifies the Record History page to have sticky headers<br>
- Truncates long text in formula fields
</div>
</div>
<div class="section">
<p><h3>Written by Normand Defayette,<br />Cortex R&D Inc.<br />Jan 2025</h3></p>
</div>
</body>
</html>