-
Notifications
You must be signed in to change notification settings - Fork 3
/
GridClientEvents.cs
230 lines (191 loc) · 5.77 KB
/
GridClientEvents.cs
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
Copyright © Olav Christian Botterli.
Dual licensed under the MIT or GPL Version 2 licenses.
Date: 30.08.2011, Norway.
http://www.webgrid.com
*/
#region Header
/*
Copyright © Olav Christian Botterli.
Dual licensed under the MIT or GPL Version 2 licenses.
Date: 30.08.2011, Norway.
http://www.webgrid.com
*/
#endregion Header
namespace WebGrid
{
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
#region Enumerations
internal enum ClientEventType
{
OnClientColumnClick = 1,
OnClientColumnDblClick = 2,
OnClientColumnMouseOver = 3,
OnClientColumnMouseOut = 4,
OnClientRowClick = 5,
OnClientRowDblClick = 6,
OnClientRowMouseOver = 7,
OnClientRowMouseOut = 8
}
#endregion Enumerations
public partial class Grid
{
#region Fields
internal StringBuilder JsOnData = new StringBuilder();
internal Dictionary<string, string> MaskedColumns = new Dictionary<string, string>();
#endregion Fields
#region Properties
/// <summary>
/// Client JavaScript method associated with this event fired when a column is clicked.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired when a column is clicked.")]
public string OnClientCellClick
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired when a column is double clicked.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired when a column is double clicked.")]
public string OnClientCellDblClick
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired mouse is leaving a column.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired mouse is leaving a column.")]
public string OnClientCellMouseOut
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired mouse is over a column.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired mouse is over a column.")]
public string OnClientCellMouseOver
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired when a row is clicked.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired when a row is clicked.")]
public string OnClientRowClick
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired when a row is double clicked.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired when a row is double clicked.")]
public string OnClientRowDblClick
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired mouse is leaving a column.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired mouse is leaving a column.")]
public string OnClientRowMouseOut
{
get; set;
}
/// <summary>
/// Client JavaScript method associated with this event fired mouse is over a column.
/// </summary>
[Bindable(true),
Category("Client Events"),
Description(@"Client JavaScript method associated with this event fired mouse is over a column.")]
public string OnClientRowMouseOver
{
get; set;
}
#endregion Properties
}
/// <summary>
/// Event is raised after row insert/update.
/// </summary>
[Serializable]
internal class ClientCellEventArgs : EventArgs
{
#region Properties
public ClientEventType ClientEventType
{
get; internal set;
}
/// <summary>
/// Name of the column
/// </summary>
public string ColumnId
{
get; internal set;
}
/// <summary>
/// Column index
/// </summary>
public int RowIndex
{
get; internal set;
}
/// <summary>
/// Custom data information
/// </summary>
public string Tag
{
get; internal set;
}
/// <summary>
/// Column Value
/// </summary>
public object Value
{
get; internal set;
}
#endregion Properties
}
/// <summary>
/// Event is raised after row insert/update.
/// </summary>
[Serializable]
internal class ClientRowEventArgs : EventArgs
{
#region Properties
public ClientEventType ClientEventType
{
get; internal set;
}
/// <summary>
/// Column index
/// </summary>
public int RowIndex
{
get; internal set;
}
/// <summary>
/// Custom data information
/// </summary>
public string Tag
{
get; internal set;
}
#endregion Properties
}
}