forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataView.cs
More file actions
368 lines (324 loc) · 10.3 KB
/
DataView.cs
File metadata and controls
368 lines (324 loc) · 10.3 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/********
* @version : 2.1.1 - Ext.NET Pro License
* @author : Ext.NET, Inc. http://www.ext.net/
* @date : 2012-12-10
* @copyright : Copyright (c) 2007-2012, Ext.NET, Inc. (http://www.ext.net/). All rights reserved.
* @license : See license.txt and http://www.ext.net/license/.
********/
using System;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Web.UI;
using Ext.Net.Utilities;
namespace Ext.Net
{
/// <summary>
/// A mechanism for displaying data using custom layout templates and formatting.
/// The View uses an Ext.XTemplate as its internal templating mechanism, and is bound to an Ext.data.Store so that as the data in the store changes the view is automatically updated to reflect the changes. The view also provides built-in behavior for many common events that can occur for its contained items including click, doubleclick, mouseover, mouseout, etc. as well as a built-in selection model. In order to use these features, an itemSelector config must be provided for the DataView to determine what nodes it will be working with.
/// </summary>
[Meta]
[ToolboxData("<{0}:DataView runat=\"server\"></{0}:DataView>")]
[ToolboxBitmap(typeof(DataView), "Build.ToolboxIcons.DataView.bmp")]
[Designer(typeof(EmptyDesigner))]
public partial class DataView : AbstractDataView, IXPostBackDataHandler
{
/// <summary>
///
/// </summary>
[Description("")]
public DataView() { }
/// <summary>
///
/// </summary>
[Category("0. About")]
[Description("")]
public override string XType
{
get
{
return "dataview";
}
}
/// <summary>
///
/// </summary>
[Category("0. About")]
[Description("")]
public override string InstanceOf
{
get
{
return "Ext.view.View";
}
}
/// <summary>
///
/// </summary>
[Description("")]
protected override void CheckProperties()
{
if (this.ItemSelector.IsEmpty())
{
throw new Exception("The ItemSelector can not be empty");
}
if (this.Tpl == null || this.Tpl.Html.IsEmpty())
{
throw new Exception("The Tpl can not be empty");
}
}
/// <summary>
///
/// </summary>
[Meta]
[Category("4. AbstractDataView")]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("")]
public virtual bool DeselectOnContainerClick
{
get
{
return this.State.Get<bool>("DeselectOnContainerClick", true);
}
set
{
this.State.Set("DeselectOnContainerClick", value);
}
}
/// <summary>
/// Turns on/off keyboard navigation within the DataView.
/// </summary>
[Meta]
[Category("4. AbstractDataView")]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("Turns on/off keyboard navigation within the DataView. ")]
public virtual bool EnableKeyNav
{
get
{
return this.State.Get<bool>("EnableKeyNav", true);
}
set
{
this.State.Set("EnableKeyNav", value);
}
}
[ConfigOption("selModel", JsonMode.Raw)]
[DefaultValue("")]
protected virtual string SelModelProxy
{
get
{
if(this.DeselectOnContainerClick && this.EnableKeyNav)
{
return "";
}
StringBuilder sb = new StringBuilder();
sb.Append("{");
if (!this.DeselectOnContainerClick)
{
sb.Append("deselectOnContainerClick:false,");
}
if (!this.EnableKeyNav)
{
sb.Append("enableKeyNav:false,");
}
sb.Remove(sb.Length - 1, 1);
sb.Append("}");
return sb.ToString();
}
}
private DataViewListeners listeners;
/// <summary>
/// Client-side JavaScript Event Handlers
/// </summary>
[Meta]
[ConfigOption("listeners", JsonMode.Object)]
[Category("2. Observable")]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Description("Client-side JavaScript Event Handlers")]
public DataViewListeners Listeners
{
get
{
if (this.listeners == null)
{
this.listeners = new DataViewListeners();
}
return this.listeners;
}
}
private DataViewDirectEvents directEvents;
/// <summary>
/// Server-side Ajax Event Handlers
/// </summary>
[Meta]
[Category("2. Observable")]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[ConfigOption("directEvents", JsonMode.Object)]
[Description("Server-side Ajax Event Handlers")]
public DataViewDirectEvents DirectEvents
{
get
{
if (this.directEvents == null)
{
this.directEvents = new DataViewDirectEvents(this);
}
return this.directEvents;
}
}
private SelectedRowCollection selectedRows;
/// <summary>
///
/// </summary>
[Meta]
[PersistenceMode(PersistenceMode.InnerProperty)]
[ConfigOption("selectedData", JsonMode.AlwaysArray)]
[Description("")]
public SelectedRowCollection SelectedRows
{
get
{
if (this.selectedRows == null)
{
this.selectedRows = new SelectedRowCollection();
}
return this.selectedRows;
}
}
/// <summary>
///
/// </summary>
[Description("")]
public SelectedRow SelectedRow
{
get
{
return this.SelectedRows.Count > 0 ? this.SelectedRows[0] : null;
}
set
{
if (this.SingleSelect)
{
this.SelectedRows.Clear();
}
this.SelectedRows.Add(value);
}
}
/// <summary>
///
/// </summary>
[Description("")]
public int SelectedIndex
{
get
{
return this.SelectedRows.Count > 0 ? this.SelectedRows[0].RowIndex : -1;
}
set
{
if (this.SingleSelect)
{
this.SelectedRows.Clear();
}
this.SelectedRows.Add(new SelectedRow(value));
}
}
/// <summary>
///
/// </summary>
[Description("")]
public string SelectedRecordID
{
get
{
return this.SelectedRows.Count > 0 ? this.SelectedRows[0].RecordID : "";
}
set
{
if (this.SingleSelect)
{
this.SelectedRows.Clear();
}
this.SelectedRows.Add(new SelectedRow(value));
}
}
private bool hasLoadPostData = false;
/// <summary>
///
/// </summary>
protected virtual bool HasLoadPostData
{
get
{
return this.hasLoadPostData;
}
set
{
this.hasLoadPostData = value;
}
}
/// <summary>
///
/// </summary>
bool IXPostBackDataHandler.HasLoadPostData
{
get
{
return this.HasLoadPostData;
}
set
{
this.HasLoadPostData = value;
}
}
bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
{
this.HasLoadPostData = true;
string val = postCollection[this.ConfigID];
if (val != null)
{
this.selectedRows = JSON.Deserialize<SelectedRowCollection>(val);
}
return false;
}
void IPostBackDataHandler.RaisePostDataChangedEvent() { }
/// <summary>
///
/// </summary>
[Description("")]
public virtual void UpdateSelection()
{
if (this.SelectedRows.Count == 0)
{
this.DeselectAll();
}
else
{
bool comma = false;
StringBuilder temp = new StringBuilder();
temp.Append("[");
foreach (SelectedRow row in this.SelectedRows)
{
if (comma)
{
temp.Append(",");
}
temp.Append(new ClientConfig().Serialize(row));
comma = true;
}
temp.Append("]");
this.Set("selectedData", new JRawValue(temp.ToString()));
this.Call("getSelectionSubmit().doSelection");
}
}
}
}