forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentLoader.cs
More file actions
1144 lines (1012 loc) · 38.6 KB
/
ComponentLoader.cs
File metadata and controls
1144 lines (1012 loc) · 38.6 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
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/********
* @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.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using Ext.Net.Utilities;
namespace Ext.Net
{
/// <summary>
/// A class used to load remote content to a component.
/// In general this class will not be instanced directly, rather a loader configuration will be passed to the constructor of the Ext.AbstractComponent
/// </summary>
[Browsable(false)]
[Meta]
public partial class ComponentLoader : Observable
{
/// <summary>
///
/// </summary>
public ComponentLoader()
{
}
protected override void OnBeforeClientInit(Observable sender)
{
if (this.Mode == LoadMode.Frame && this.AjaxOptions != null)
{
// throw new Exception("Frame mode doesn't support AjaxOptions");
}
base.OnBeforeClientInit(sender);
}
/// <summary>
///
/// </summary>
public override string InstanceOf
{
get
{
return "Ext.ComponentLoader";
}
}
/// <summary>
///True to add a unique cache-buster param to GET requests. (defaults to true)
/// </summary>
[DefaultValue(true)]
[ConfigOption]
[Meta]
[NotifyParentProperty(true)]
[Description("True to add a unique cache-buster param to GET requests. (defaults to true)")]
public bool DisableCaching
{
get
{
return this.State.Get<bool>("DisableCaching", true);
}
set
{
this.State.Set("DisableCaching", value);
}
}
/// <summary>
/// Change the parameter which is sent went disabling caching through a cache buster. Defaults to '_dc'
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue("_dc")]
[NotifyParentProperty(true)]
[Description("Change the parameter which is sent went disabling caching through a cache buster. Defaults to '_dc'")]
public string DisableCachingParam
{
get
{
return this.State.Get<string>("DisableCachingParam", "_dc");
}
set
{
this.State.Set("DisableCachingParam", value);
}
}
private AjaxOptions ajaxOptions;
/// <summary>
/// Any additional options to be passed to the request, for example timeout or headers.
/// </summary>
[Meta]
[DefaultValue(null)]
[ConfigOption(JsonMode.Object)]
[Category("Config Options")]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[Description("Any additional options to be passed to the request, for example timeout or headers.")]
public virtual AjaxOptions AjaxOptions
{
get
{
return this.ajaxOptions;
}
set
{
this.ajaxOptions = value;
this.ajaxOptions.Owner = this;
}
}
/// <summary>
///
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("")]
public virtual bool PassParentSize
{
get
{
return this.State.Get<bool>("PassParentSize", false);
}
set
{
this.State.Set("PassParentSize", value);
}
}
/// <summary>
/// Event which triggers loading process. Default value is render
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue("")]
[NotifyParentProperty(true)]
[Description("Event which triggers loading process. Default value is render")]
public virtual string TriggerEvent
{
get
{
return this.State.Get<string>("TriggerEvent", "").ToLowerInvariant();
}
set
{
this.State.Set("TriggerEvent", value);
}
}
/// <summary>
/// TriggerEvent's control
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue("")]
[NotifyParentProperty(true)]
[Description("TriggerEvent's control")]
public virtual string TriggerControl
{
get
{
return this.State.Get<string>("TriggerControl", "");
}
set
{
this.State.Set("TriggerControl", value);
}
}
/// <summary>
/// Reload content on each show event.
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("Reload content on each show event.")]
public virtual bool ReloadOnEvent
{
get
{
return this.State.Get<bool>("ReloadOnEvent", false);
}
set
{
this.State.Set("ReloadOnEvent", value);
}
}
/// <summary>
///
/// </summary>
[ConfigOption]
[Meta]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("")]
public virtual bool RemoveD
{
get
{
return this.State.Get<bool>("RemoveD", false);
}
set
{
this.State.Set("RemoveD", value);
}
}
/// <summary>
/// True to monitor complete state of the iframe instead load event using.
/// </summary>
[ConfigOption]
[Meta]
[Category("Config Options")]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("True to monitor complete state of the iframe instead load event using.")]
public virtual bool MonitorComplete
{
get
{
return this.State.Get<bool>("MonitorComplete", false);
}
set
{
this.State.Set("MonitorComplete", value);
}
}
/// <summary>
///
/// </summary>
[DefaultValue("")]
[Meta]
[NotifyParentProperty(true)]
[Description("")]
public virtual string Callback
{
get
{
return this.State.Get<string>("Callback", "");
}
set
{
this.State.Set("Callback", value);
}
}
/// <summary>
///
/// </summary>
[ConfigOption("callback", JsonMode.Raw)]
[DefaultValue("")]
[Description("")]
protected string CallbackProxy
{
get
{
if (this.Callback.IsNotEmpty())
{
return new JFunction(TokenUtils.ParseTokens(this.Callback), "success", "response", "options").ToScript();
}
return "";
}
}
/// <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>
[Meta]
[ConfigOption]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[DefaultValue(true)]
[Description("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.")]
public virtual bool AutoLoad
{
get
{
return this.State.Get<bool>("AutoLoad", true);
}
set
{
this.State.Set("AutoLoad", value);
}
}
private ParameterCollection baseParams;
/// <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>
[ConfigOption(JsonMode.ArrayToObject)]
[Meta]
[Category("3. ComponentLoader")]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[Description("Params that will be attached to every request. These parameters will not be overridden by any params in the load options. Defaults to null.")]
public virtual ParameterCollection BaseParams
{
get
{
return this.baseParams ?? (this.baseParams = new ParameterCollection {Owner = this});
}
}
/// <summary>
/// A function to be called when a load request fails.
/// </summary>
[DefaultValue("")]
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("A function to be called when a load request fails.")]
public virtual string Failure
{
get
{
return this.State.Get<string>("Failure", "");
}
set
{
this.State.Set("Failure", value);
}
}
/// <summary>
///
/// </summary>
[ConfigOption("failure", JsonMode.Raw)]
[DefaultValue("")]
protected virtual string FailureProxy
{
get
{
if (this.Failure.IsNotEmpty())
{
if (JFunction.IsFunctionName(this.Failure))
{
return this.Failure;
}
return new JFunction(this.Failure, "loader", "response", "options").ToScript();
}
return "";
}
}
private LoadMask loadMask;
/// <summary>
/// True or a Ext.LoadMask configuration to enable masking during loading. Defaults to false.
/// </summary>
[Meta]
[ConfigOption("loadMask", typeof(LoadMaskJsonConverter))]
[Category("3. ComponentLoader")]
[PersistenceMode(PersistenceMode.InnerProperty)]
[Description("True or a Ext.LoadMask configuration to enable masking during loading. Defaults to false.")]
public virtual LoadMask LoadMask
{
get
{
return this.loadMask ?? (this.loadMask = new LoadMask { Owner = this });
}
}
private ParameterCollection _params;
/// <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>
[Category("3. ComponentLoader")]
[Meta]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[Description("Any params to be attached to the Ajax request. These parameters will be overridden by any params in the load options. Defaults to null.")]
public virtual ParameterCollection Params
{
get
{
return this._params ?? (this._params = new ParameterCollection { Owner = this });
}
}
[ConfigOption("paramsFn",JsonMode.Raw)]
[DefaultValue("")]
protected virtual string ParamsProxy
{
get
{
if (this.Params.Count == 0)
{
return "";
}
StringBuilder sb = new StringBuilder("function(){ return {");
bool comma = false;
foreach (object o in this.Params)
{
if (comma)
{
sb.Append(",");
}
sb.Append(o.ToString());
comma = true;
}
sb.Append("}; }");
return sb.ToString();
}
}
/// <summary>
/// True to parse any inline script tags in the response.
/// </summary>
[Meta]
[ConfigOption]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[DefaultValue(false)]
[Description("True to parse any inline script tags in the response.")]
public virtual bool Scripts
{
get
{
return this.State.Get<bool>("Scripts", false);
}
set
{
this.State.Set("Scripts", value);
}
}
/// <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>
[Meta]
[ConfigOption]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[DefaultValue(false)]
[Description("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.")]
public virtual bool RemoveAll
{
get
{
return this.State.Get<bool>("RemoveAll", false);
}
set
{
this.State.Set("RemoveAll", value);
}
}
/// <summary>
/// The type of content that is to be loaded into, which can be one of 3 types
/// </summary>
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[DefaultValue(LoadMode.Html)]
[Description("The type of content that is to be loaded into, which can be one of 4 types. Html|Data|Component|Frame")]
public virtual LoadMode Mode
{
get
{
return this.State.Get<LoadMode>("RendererType", LoadMode.Html);
}
set
{
this.State.Set("RendererType", value);
}
}
/// <summary>
/// The function which handles the response
/// The function must return false if loading is not successful.
/// </summary>
[DefaultValue("")]
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("The function which handles the response")]
public virtual string Renderer
{
get
{
return this.State.Get<string>("Renderer", "");
}
set
{
this.State.Set("Renderer", value);
}
}
/// <summary>
///
/// </summary>
[ConfigOption("renderer", JsonMode.Raw)]
[DefaultValue("")]
protected virtual string RendererProxy
{
get
{
if (this.Renderer.IsNotEmpty())
{
if (JFunction.IsFunctionName(this.Renderer))
{
return this.Renderer;
}
return new JFunction(this.Renderer, "loader", "response", "options").ToScript();
}
return this.Mode != LoadMode.Html
? JSON.Serialize(this.Mode.ToString().ToLowerInvariant())
: "";
}
}
/// <summary>
/// The scope to execute the success and failure functions in.
/// </summary>
[DefaultValue("")]
[Meta]
[ConfigOption(JsonMode.Raw)]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("The scope to execute the success and failure functions in.")]
public virtual string Scope
{
get
{
return this.State.Get<string>("Scope", "");
}
set
{
this.State.Set("Scope", value);
}
}
/// <summary>
/// A function to be called when a load request is successful.
/// </summary>
[DefaultValue("")]
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("A function to be called when a load request is successful.")]
public virtual string Success
{
get
{
return this.State.Get<string>("Success", "");
}
set
{
this.State.Set("Success", value);
}
}
/// <summary>
///
/// </summary>
[ConfigOption("success", JsonMode.Raw)]
[DefaultValue("")]
protected virtual string SuccessProxy
{
get
{
if (this.Success.IsNotEmpty())
{
if (JFunction.IsFunctionName(this.Success))
{
return this.Success;
}
return new JFunction(this.Success, "loader", "response", "options").ToScript();
}
return "";
}
}
/// <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("")]
[ConfigOption]
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("The target Ext.AbstractComponent for the loader. Defaults to null. If a string is passed it will be looked up via the id.")]
public virtual string Target
{
get
{
return this.State.Get<string>("Target", "");
}
set
{
this.State.Set("Target", value);
}
}
/// <summary>
/// The url to retrieve the content from. Defaults to null.
/// </summary>
[DefaultValue("")]
[Meta]
[ConfigOption(JsonMode.Url)]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("The url to retrieve the content from. Defaults to null.")]
public virtual string Url
{
get
{
return this.State.Get<string>("Url", "");
}
set
{
this.State.Set("Url", value);
}
}
/// <summary>
/// The direct method name provides a content for the component
/// </summary>
[DefaultValue("")]
[ConfigOption]
[Meta]
[NotifyParentProperty(true)]
[Category("3. ComponentLoader")]
[Description("The direct method name provides a content for the component")]
public virtual string DirectMethod
{
get
{
return this.State.Get<string>("DirectMethod", "");
}
set
{
this.State.Set("DirectMethod", value);
}
}
/// <summary>
/// Show warning if request fail.
/// </summary>
[Meta]
[ConfigOption]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("Show warning if request fail.")]
public bool ShowWarningOnFailure
{
get
{
return this.State.Get<bool>("ShowWarningOnFailure", true);
}
set
{
this.State.Set("ShowWarningOnFailure", value);
}
}
private ComponentLoaderListeners 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 ComponentLoaderListeners Listeners
{
get
{
return this.listeners ?? (this.listeners = new ComponentLoaderListeners());
}
}
//private ComponentLoaderDirectEvents directEvents;
///// <summary>
///// Server-side DirectEvent Handlers
///// </summary>
//[Meta]
//[Category("2. Observable")]
//[NotifyParentProperty(true)]
//[PersistenceMode(PersistenceMode.InnerProperty)]
//[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
//[ConfigOption("directEvents", JsonMode.Object)]
//[Description("Server-side DirectEventHandlers")]
//public ComponentLoaderDirectEvents DirectEvents
//{
// get
// {
// return this.directEvents ?? (this.directEvents = new ComponentLoaderDirectEvents(this));
// }
//}
/// <summary>
///
/// </summary>
public override string CallID
{
get
{
return this.ParentComponent.ClientID;
}
}
/// <summary>
/// Aborts the active load request
/// </summary>
public virtual void Abort()
{
this.Call("getLoader().abort");
}
/// <summary>
/// Destroys the loader. Any active requests will be aborted.
/// </summary>
public override void Destroy()
{
this.Call("getLoader().destroy");
}
/// <summary>
/// Load new data from the server.
/// </summary>
public virtual void LoadContent()
{
this.Call("getLoader().load");
}
///<summary>
/// Load new data from the server.
///</summary>
///<param name="options">The options for the request. They can be any configuration option that can be specified for the class, with the exception of the target option. Note that any options passed to the method will override any class defaults.</param>
public virtual void LoadContent(object options)
{
this.Call("getLoader().load", JSON.Serialize(options, new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver()));
}
/// <summary>
/// Set a {Ext.AbstractComponent} as the target of this loader. Note that if the target is changed, any active requests will be aborted.
/// </summary>
/// <param name="targetId">The component to be the target of this loader. If a string is passed it will be looked up via its id.</param>
public virtual void SetTarget(string targetId)
{
this.Call("getLoader().setTarget", targetId);
}
public static void Render(AbstractComponent component)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(component, true));
}
public static void Render(AbstractComponent component, bool registerResources)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(component, registerResources));
}
public static string ToConfig(AbstractComponent component)
{
return ComponentLoader.ToConfig(new AbstractComponent[] { component }, true);
}
public static string ToConfig(AbstractComponent component, bool registerResources)
{
return ComponentLoader.ToConfig(new AbstractComponent[] { component }, registerResources);
}
public static void Render(IEnumerable<AbstractComponent> components)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(components));
}
public static void Render(IEnumerable<AbstractComponent> components, bool registerResources)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(components, registerResources));
}
public static void Render(IEnumerable<AbstractComponent> components, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(components, componentPreRender));
}
public static void Render(IEnumerable<AbstractComponent> components, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(components, componentPreRender, registerResources));
}
public static string ToConfig(IEnumerable<AbstractComponent> components)
{
return ComponentLoader.ToConfig(components, null);
}
public static string ToConfig(IEnumerable<AbstractComponent> components, bool registerResources)
{
return ComponentLoader.ToConfig(components, null, registerResources);
}
public static string ToConfig(IEnumerable<AbstractComponent> components, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
return ComponentLoader.ToConfig(components, componentPreRender, true);
}
public static string ToConfig(IEnumerable<AbstractComponent> components, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
StringBuilder sb = new StringBuilder();
sb.Append("[");
bool comma = false;
foreach (AbstractComponent component in components)
{
if (comma)
{
sb.Append(",");
}
comma = true;
if(componentPreRender != null)
{
componentPreRender.Invoke(component, new ComponentAddedEventArgs(component));
}
sb.Append(component.ToConfig());
}
sb.Append("]");
if (registerResources)
{
return ComponentLoader.AttachResources(components, sb.ToString());
}
return sb.ToString();
}
public static void Render(string path)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path));
}
public static void Render(string path, bool registerResources)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path), registerResources);
}
public static void Render(string path, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path), componentPreRender);
}
public static void Render(string path, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path), componentPreRender, registerResources);
}
public static string ToConfig(string path)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path));
}
public static string ToConfig(string path, bool registerResources)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path), registerResources);
}
public static string ToConfig(string path, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path), componentPreRender);
}
public static string ToConfig(string path, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path), componentPreRender, registerResources);
}
public static void Render(string path, string userControlId)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path, userControlId));
}
public static void Render(string path, string userControlId, bool registerResources)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path, userControlId), registerResources);
}
public static void Render(string path, string userControlId, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path, userControlId), componentPreRender);
}
public static void Render(string path, string userControlId, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
ComponentLoader.Render(UserControlRenderer.LoadControl(path, userControlId), componentPreRender, registerResources);
}
public static string ToConfig(string path, string userControlId)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path, userControlId));
}
public static string ToConfig(string path, string userControlId, bool registerResources)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path, userControlId), registerResources);
}
public static string ToConfig(string path, string userControlId, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path, userControlId), componentPreRender);
}
public static string ToConfig(string path, string userControlId, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
return ComponentLoader.ToConfig(UserControlRenderer.LoadControl(path, userControlId), componentPreRender, registerResources);
}
public static void Render(UserControl userControl)
{
ComponentLoader.Render(userControl, null);
}
public static void Render(UserControl userControl, bool registerResources)
{
ComponentLoader.Render(userControl, null, registerResources);
}
public static void Render(UserControl userControl, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
ComponentLoader.Render(userControl, null, true);
}
public static void Render(UserControl userControl, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
CompressionUtils.GZipAndSend(ComponentLoader.ToConfig(userControl, componentPreRender, registerResources));
}
public static string ToConfig(UserControl userControl)
{
return ComponentLoader.ToConfig(userControl, null);
}
public static string ToConfig(UserControl userControl, bool registerResources)
{
return ComponentLoader.ToConfig(userControl, null, registerResources);
}
public static string ToConfig(UserControl userControl, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender)
{
return ComponentLoader.ToConfig(userControl, componentPreRender, true);
}
public static string ToConfig(UserControl userControl, Ext.Net.UserControlLoader.ComponentAddedEventHandler componentPreRender, bool registerResources)
{
List<AbstractComponent> cmps = new List<AbstractComponent>();
if (userControl is IDynamicUserControl)
{
((IDynamicUserControl)userControl).BeforeRender();
}
foreach (object control in userControl.Controls)
{
AbstractComponent cmp = control as AbstractComponent;
if (cmp != null)
{
cmps.Add(cmp);
}
else if (control is UserControlLoader)
{
cmps.AddRange(((UserControlLoader)control).Components);
}
else if (control is LiteralControl || control is Literal)