This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @using (Html.BeginControlGroup()) | |
| { | |
| @Html.ControlLabelFor(m => m.Input01) | |
| using (Html.BeginControls()) | |
| { | |
| @Html.EditorFor(m => m.Input01) | |
| using (Html.BeginHelpInline()) | |
| { | |
| @Html.ValidationMessageFor(m => m.Input01) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static void ConfigureIocAndAop() | |
| { | |
| var builder = new ContainerBuilder(); | |
| //If using an IOC container, it is a handy to be able to us an IProfiler to | |
| //wrap mini profiler calls just to remove that dependency for unit testing | |
| builder.RegisterType<MiniProfilerWrapper>().AsImplementedInterfaces(); | |
| //We want some classes that do some work, but we don't want to have to wrap profiler steps | |
| //around each method call, so use AOP to do it for us! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using (StackExchange.Profiling.MiniProfiler.Current.Step("Call Methods")) | |
| { | |
| //Some work to be done here | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var MegaFormsCascadeJQueryHideEffect = 'fast'; //sets the jQuery effect to use when hiding a child cascaded list just before refreshing its items | |
| var MegaFormsCascadeJQueryShowEffect = 'fast'; //set the jQuery effect to use when showing a child cascaded list just after refreshing its items |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Supply defaults for MegaForms | |
| var MegaFormsChangeVisuallyJQueryParentContainerSelector = '.container'; //sets the class of a component that wraps a whole form control (I.e. label + input + validation message) | |
| var MegaFormsChangeVisuallyJQueryHideEffect = 'fast'; //sets the jQuery effect to use when hiding a field | |
| var MegaFormsChangeVisuallyJQueryShowEffect = 'slow'; //set the jQuery effect to use when showing a field |
NewerOlder