forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentLoaderConfig.cs
More file actions
536 lines (469 loc) · 10.7 KB
/
ComponentLoaderConfig.cs
File metadata and controls
536 lines (469 loc) · 10.7 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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
/********
* @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 partial class ComponentLoader
{
/* Ctor
-----------------------------------------------------------------------------------------------*/
/// <summary>
///
/// </summary>
public ComponentLoader(Config config)
{
this.Apply(config);
}
/* Implicit ComponentLoader.Config Conversion to ComponentLoader
-----------------------------------------------------------------------------------------------*/
/// <summary>
///
/// </summary>
public static implicit operator ComponentLoader(ComponentLoader.Config config)
{
return new ComponentLoader(config);
}
/// <summary>
///
/// </summary>
new public partial class Config : Observable.Config
{
/* Implicit ComponentLoader.Config Conversion to ComponentLoader.Builder
-----------------------------------------------------------------------------------------------*/
/// <summary>
///
/// </summary>
public static implicit operator ComponentLoader.Builder(ComponentLoader.Config config)
{
return new ComponentLoader.Builder(config);
}
/* ConfigOptions
-----------------------------------------------------------------------------------------------*/
private bool disableCaching = true;
/// <summary>
/// True to add a unique cache-buster param to GET requests. (defaults to true)
/// </summary>
[DefaultValue(true)]
public virtual bool DisableCaching
{
get
{
return this.disableCaching;
}
set
{
this.disableCaching = value;
}
}
private string disableCachingParam = "_dc";
/// <summary>
/// Change the parameter which is sent went disabling caching through a cache buster. Defaults to '_dc'
/// </summary>
[DefaultValue("_dc")]
public virtual string DisableCachingParam
{
get
{
return this.disableCachingParam;
}
set
{
this.disableCachingParam = value;
}
}
private AjaxOptions ajaxOptions = null;
/// <summary>
/// Any additional options to be passed to the request, for example timeout or headers.
/// </summary>
[DefaultValue(null)]
public virtual AjaxOptions AjaxOptions
{
get
{
return this.ajaxOptions;
}
set
{
this.ajaxOptions = value;
}
}
private bool passParentSize = false;
/// <summary>
///
/// </summary>
[DefaultValue(false)]
public virtual bool PassParentSize
{
get
{
return this.passParentSize;
}
set
{
this.passParentSize = value;
}
}
private string triggerEvent = "";
/// <summary>
/// Event which triggers loading process. Default value is render
/// </summary>
[DefaultValue("")]
public virtual string TriggerEvent
{
get
{
return this.triggerEvent;
}
set
{
this.triggerEvent = value;
}
}
private string triggerControl = "";
/// <summary>
/// TriggerEvent's control
/// </summary>
[DefaultValue("")]
public virtual string TriggerControl
{
get
{
return this.triggerControl;
}
set
{
this.triggerControl = value;
}
}
private bool reloadOnEvent = false;
/// <summary>
/// Reload content on each show event.
/// </summary>
[DefaultValue(false)]
public virtual bool ReloadOnEvent
{
get
{
return this.reloadOnEvent;
}
set
{
this.reloadOnEvent = value;
}
}
private bool removeD = false;
/// <summary>
///
/// </summary>
[DefaultValue(false)]
public virtual bool RemoveD
{
get
{
return this.removeD;
}
set
{
this.removeD = value;
}
}
private bool monitorComplete = false;
/// <summary>
/// True to monitor complete state of the iframe instead load event using.
/// </summary>
[DefaultValue(false)]
public virtual bool MonitorComplete
{
get
{
return this.monitorComplete;
}
set
{
this.monitorComplete = value;
}
}
private string callback = "";
/// <summary>
///
/// </summary>
[DefaultValue("")]
public virtual string Callback
{
get
{
return this.callback;
}
set
{
this.callback = value;
}
}
private bool autoLoad = true;
/// <summary>
/// True to have the loader make a request as soon as it is created. Defaults to true. This argument can also be a set of options that will be passed to load is called.
/// </summary>
[DefaultValue(true)]
public virtual bool AutoLoad
{
get
{
return this.autoLoad;
}
set
{
this.autoLoad = value;
}
}
private ParameterCollection baseParams = null;
/// <summary>
/// Params that will be attached to every request. These parameters will not be overridden by any params in the load options. Defaults to null.
/// </summary>
public ParameterCollection BaseParams
{
get
{
if (this.baseParams == null)
{
this.baseParams = new ParameterCollection();
}
return this.baseParams;
}
}
private string failure = "";
/// <summary>
/// A function to be called when a load request fails.
/// </summary>
[DefaultValue("")]
public virtual string Failure
{
get
{
return this.failure;
}
set
{
this.failure = value;
}
}
private LoadMask loadMask = null;
/// <summary>
/// True or a Ext.LoadMask configuration to enable masking during loading. Defaults to false.
/// </summary>
public LoadMask LoadMask
{
get
{
if (this.loadMask == null)
{
this.loadMask = new LoadMask();
}
return this.loadMask;
}
}
private ParameterCollection _params = null;
/// <summary>
/// Any params to be attached to the Ajax request. These parameters will be overridden by any params in the load options. Defaults to null.
/// </summary>
public ParameterCollection Params
{
get
{
if (this._params == null)
{
this._params = new ParameterCollection();
}
return this._params;
}
}
private bool scripts = false;
/// <summary>
/// True to parse any inline script tags in the response.
/// </summary>
[DefaultValue(false)]
public virtual bool Scripts
{
get
{
return this.scripts;
}
set
{
this.scripts = value;
}
}
private bool removeAll = false;
/// <summary>
/// True to remove all existing components when a load completes. This option is only takes effect when the renderer option is set to component. Defaults to false.
/// </summary>
[DefaultValue(false)]
public virtual bool RemoveAll
{
get
{
return this.removeAll;
}
set
{
this.removeAll = value;
}
}
private LoadMode mode = LoadMode.Html;
/// <summary>
/// The type of content that is to be loaded into, which can be one of 4 types. Html|Data|Component|Frame
/// </summary>
[DefaultValue(LoadMode.Html)]
public virtual LoadMode Mode
{
get
{
return this.mode;
}
set
{
this.mode = value;
}
}
private string renderer = "";
/// <summary>
/// The function which handles the response
/// </summary>
[DefaultValue("")]
public virtual string Renderer
{
get
{
return this.renderer;
}
set
{
this.renderer = value;
}
}
private string scope = "";
/// <summary>
/// The scope to execute the success and failure functions in.
/// </summary>
[DefaultValue("")]
public virtual string Scope
{
get
{
return this.scope;
}
set
{
this.scope = value;
}
}
private string success = "";
/// <summary>
/// A function to be called when a load request is successful.
/// </summary>
[DefaultValue("")]
public virtual string Success
{
get
{
return this.success;
}
set
{
this.success = value;
}
}
private string target = "";
/// <summary>
/// The target Ext.AbstractComponent for the loader. Defaults to null. If a string is passed it will be looked up via the id.
/// </summary>
[DefaultValue("")]
public virtual string Target
{
get
{
return this.target;
}
set
{
this.target = value;
}
}
private string url = "";
/// <summary>
/// The url to retrieve the content from. Defaults to null.
/// </summary>
[DefaultValue("")]
public virtual string Url
{
get
{
return this.url;
}
set
{
this.url = value;
}
}
private string directMethod = "";
/// <summary>
/// The direct method name provides a content for the component
/// </summary>
[DefaultValue("")]
public virtual string DirectMethod
{
get
{
return this.directMethod;
}
set
{
this.directMethod = value;
}
}
private bool showWarningOnFailure = true;
/// <summary>
/// Show warning if request fail.
/// </summary>
[DefaultValue(true)]
public virtual bool ShowWarningOnFailure
{
get
{
return this.showWarningOnFailure;
}
set
{
this.showWarningOnFailure = value;
}
}
private ComponentLoaderListeners listeners = null;
/// <summary>
/// Client-side JavaScript Event Handlers
/// </summary>
public ComponentLoaderListeners Listeners
{
get
{
if (this.listeners == null)
{
this.listeners = new ComponentLoaderListeners();
}
return this.listeners;
}
}
}
}
}