forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractDataViewConfig.cs
More file actions
519 lines (460 loc) · 11.5 KB
/
AbstractDataViewConfig.cs
File metadata and controls
519 lines (460 loc) · 11.5 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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/********
* @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.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Ext.Net
{
/// <summary>
///
/// </summary>
public abstract partial class AbstractDataView
{
/// <summary>
///
/// </summary>
new public abstract partial class Config : ComponentBase.Config
{
/* ConfigOptions
-----------------------------------------------------------------------------------------------*/
private bool allowDeselect = false;
/// <summary>
/// Allow users to deselect a record in a DataView, List or Grid. Only applicable when the SelectionModel's mode is 'SINGLE'. Defaults to false.
/// </summary>
[DefaultValue(false)]
public virtual bool AllowDeselect
{
get
{
return this.allowDeselect;
}
set
{
this.allowDeselect = value;
}
}
private bool copy = false;
/// <summary>
/// Always copy items
/// </summary>
[DefaultValue(false)]
public virtual bool Copy
{
get
{
return this.copy;
}
set
{
this.copy = value;
}
}
private bool allowCopy = false;
/// <summary>
/// Copy items if Ctrl key is pressed
/// </summary>
[DefaultValue(false)]
public virtual bool AllowCopy
{
get
{
return this.allowCopy;
}
set
{
this.allowCopy = value;
}
}
private bool blockRefresh = false;
/// <summary>
/// Set this to true to ignore datachanged events on the bound store. This is useful if you wish to provide custom transition animations via a plugin (defaults to false)
/// </summary>
[DefaultValue(false)]
public virtual bool BlockRefresh
{
get
{
return this.blockRefresh;
}
set
{
this.blockRefresh = value;
}
}
private bool deferEmptyText = true;
/// <summary>
/// True to defer emptyText being applied until the store's first load. Defaults to:true.
/// </summary>
[DefaultValue(true)]
public virtual bool DeferEmptyText
{
get
{
return this.deferEmptyText;
}
set
{
this.deferEmptyText = value;
}
}
private bool deferInitialRefresh = true;
/// <summary>
/// Defaults to true to defer the initial refresh of the view.
/// </summary>
[DefaultValue(true)]
public virtual bool DeferInitialRefresh
{
get
{
return this.deferInitialRefresh;
}
set
{
this.deferInitialRefresh = value;
}
}
private bool disableSelection = false;
/// <summary>
/// True to disable selection within the DataView. Defaults to false. This configuration will lock the selection model that the DataView uses.
/// </summary>
[DefaultValue(false)]
public virtual bool DisableSelection
{
get
{
return this.disableSelection;
}
set
{
this.disableSelection = value;
}
}
private string emptyText = "";
/// <summary>
/// The text to display in the view when there is no data to display. Note that when using local data the emptyText will not be displayed unless you set the deferEmptyText option to false. Defaults to: \"\"
/// </summary>
[DefaultValue("")]
public virtual string EmptyText
{
get
{
return this.emptyText;
}
set
{
this.emptyText = value;
}
}
private string itemCls = "";
/// <summary>
/// Specifies the class to be assigned to each element in the view when used in conjunction with the itemTpl configuration. Defaults to: \"x-dataview-item\"
/// </summary>
[DefaultValue("")]
public virtual string ItemCls
{
get
{
return this.itemCls;
}
set
{
this.itemCls = value;
}
}
private string itemSelector = "";
/// <summary>
/// This is a required setting. A simple CSS selector (e.g. div.some-class or span:first-child) that will be used to determine what nodes this DataView will be working with. The itemSelector is used to map DOM nodes to records. As such, there should only be one root level element that matches the selector for each record.
/// </summary>
[DefaultValue("")]
public virtual string ItemSelector
{
get
{
return this.itemSelector;
}
set
{
this.itemSelector = value;
}
}
private XTemplate itemTpl = null;
/// <summary>
/// The inner portion of the item template to be rendered. Follows an XTemplate structure and will be placed inside of a tpl.
/// </summary>
[DefaultValue(null)]
public virtual XTemplate ItemTpl
{
get
{
return this.itemTpl;
}
set
{
this.itemTpl = value;
}
}
private bool loadMask = true;
/// <summary>
/// False to disable a load mask from displaying will the view is loading.
/// </summary>
[DefaultValue(true)]
public virtual bool LoadMask
{
get
{
return this.loadMask;
}
set
{
this.loadMask = value;
}
}
private string loadingCls = "";
/// <summary>
/// The CSS class to apply to the loading message element (defaults to Ext.LoadMask.prototype.msgCls \"x-mask-loading\")
/// </summary>
[DefaultValue("")]
public virtual string LoadingCls
{
get
{
return this.loadingCls;
}
set
{
this.loadingCls = value;
}
}
private bool loadingUseMsg = true;
/// <summary>
/// Whether or not to use a loading message class or simply mask the bound element.
/// </summary>
[DefaultValue(true)]
public virtual bool LoadingUseMsg
{
get
{
return this.loadingUseMsg;
}
set
{
this.loadingUseMsg = value;
}
}
private int? loadingHeight = null;
/// <summary>
/// If specified, gives an explicit height for the data view when it is showing the loadingText, if that is specified. This is useful to prevent the view's height from collapsing to zero when the loading mask is applied and there are no other contents in the data view. Defaults to undefined.
/// </summary>
[DefaultValue(null)]
public virtual int? LoadingHeight
{
get
{
return this.loadingHeight;
}
set
{
this.loadingHeight = value;
}
}
private string loadingText = "";
/// <summary>
/// A string to display during data load operations (defaults to undefined). If specified, this text will be displayed in a loading div and the view's contents will be cleared while loading, otherwise the view's contents will continue to display normally until the new data is loaded and the contents are replaced.Defaults to: \"Loading...\"
/// </summary>
[DefaultValue("")]
public virtual string LoadingText
{
get
{
return this.loadingText;
}
set
{
this.loadingText = value;
}
}
private bool multiSelect = false;
/// <summary>
/// True to allow selection of more than one item at a time, false to allow selection of only a single item at a time or no selection at all, depending on the value of singleSelect (defaults to false).
/// </summary>
[DefaultValue(false)]
public virtual bool MultiSelect
{
get
{
return this.multiSelect;
}
set
{
this.multiSelect = value;
}
}
private string overItemCls = "";
/// <summary>
/// A CSS class to apply to each item in the view on mouseover. Ensure trackOver is set to true to make use of this.
/// </summary>
[DefaultValue("")]
public virtual string OverItemCls
{
get
{
return this.overItemCls;
}
set
{
this.overItemCls = value;
}
}
private bool preserveScrollOnRefresh = false;
/// <summary>
/// True to preserve scroll position across refresh operations. Defaults to: false
/// </summary>
[DefaultValue(false)]
public virtual bool PreserveScrollOnRefresh
{
get
{
return this.preserveScrollOnRefresh;
}
set
{
this.preserveScrollOnRefresh = value;
}
}
private string selectedItemCls = "x-item-selected";
/// <summary>
/// A CSS class to apply to each selected item in the view (defaults to 'x-item-selected').
/// </summary>
[DefaultValue("x-item-selected")]
public virtual string SelectedItemCls
{
get
{
return this.selectedItemCls;
}
set
{
this.selectedItemCls = value;
}
}
private bool simpleSelect = false;
/// <summary>
/// True to enable multiselection by clicking on multiple items without requiring the user to hold Shift or Ctrl, false to force the user to hold Ctrl or Shift to select more than on item (defaults to false).
/// </summary>
[DefaultValue(false)]
public virtual bool SimpleSelect
{
get
{
return this.simpleSelect;
}
set
{
this.simpleSelect = value;
}
}
private bool singleSelect = false;
/// <summary>
/// True to allow selection of exactly one item at a time, false to allow no selection at all (defaults to false). Note that if multiSelect = true, this value will be ignored.
/// </summary>
[DefaultValue(false)]
public virtual bool SingleSelect
{
get
{
return this.singleSelect;
}
set
{
this.singleSelect = value;
}
}
private string storeID = "";
/// <summary>
/// The data store to use.
/// </summary>
[DefaultValue("")]
public virtual string StoreID
{
get
{
return this.storeID;
}
set
{
this.storeID = value;
}
}
private StoreCollection<Store> store = null;
/// <summary>
/// The data store to use.
/// </summary>
public StoreCollection<Store> Store
{
get
{
if (this.store == null)
{
this.store = new StoreCollection<Store>();
}
return this.store;
}
}
private XTemplate tpl = null;
/// <summary>
/// The HTML fragment or an array of fragments that will make up the template used by this DataView. This should be specified in the same format expected by the constructor of Ext.XTemplate.
/// </summary>
[DefaultValue(null)]
public override XTemplate Tpl
{
get
{
return this.tpl;
}
set
{
this.tpl = value;
}
}
private bool trackOver = false;
/// <summary>
/// True to enable mouseenter and mouseleave events
/// </summary>
[DefaultValue(false)]
public virtual bool TrackOver
{
get
{
return this.trackOver;
}
set
{
this.trackOver = value;
}
}
private JFunction prepareData = null;
/// <summary>
///
/// </summary>
public JFunction PrepareData
{
get
{
if (this.prepareData == null)
{
this.prepareData = new JFunction();
}
return this.prepareData;
}
}
}
}
}