PopupBuilder Class
A Popup control.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public class PopupBuilder :
WidgetBuilder
Related API Members
The following members return PopupBuilder objects:
- PopupBuilder.AccessKey(JS)
- PopupBuilder.AccessKey(String)
- PopupBuilder.Animation(Action<PopupAnimationBuilder>)
- PopupBuilder.Container(JS)
- PopupBuilder.Container(String)
- PopupBuilder.Content(RazorBlock)
- PopupBuilder.Content(String)
- PopupBuilder.ContentTemplate(JS)
- PopupBuilder.ContentTemplate(RazorBlock)
- PopupBuilder.ContentTemplate(String)
- PopupBuilder.ContentTemplate(TemplateName)
- PopupBuilder.DeferRendering(Boolean)
- PopupBuilder.DeferRendering(JS)
- PopupBuilder.Disabled(Boolean)
- PopupBuilder.Disabled(JS)
- PopupBuilder.DragAndResizeArea(JS)
- PopupBuilder.DragAndResizeArea(String)
- PopupBuilder.DragEnabled(Boolean)
- PopupBuilder.DragEnabled(JS)
- PopupBuilder.DragOutsideBoundary(Boolean)
- PopupBuilder.DragOutsideBoundary(JS)
- PopupBuilder.EnableBodyScroll(Boolean)
- PopupBuilder.EnableBodyScroll(JS)
- PopupBuilder.FocusStateEnabled(Boolean)
- PopupBuilder.FocusStateEnabled(JS)
- PopupBuilder.FullScreen(Boolean)
- PopupBuilder.FullScreen(JS)
- PopupBuilder.Height(Double)
- PopupBuilder.Height(JS)
- PopupBuilder.Height(String)
- PopupBuilder.HideOnOutsideClick(Boolean)
- PopupBuilder.HideOnOutsideClick(JS)
- PopupBuilder.HideOnParentScroll(Boolean)
- PopupBuilder.HideOnParentScroll(JS)
- PopupBuilder.Hint(JS)
- PopupBuilder.Hint(String)
- PopupBuilder.HoverStateEnabled(Boolean)
- PopupBuilder.HoverStateEnabled(JS)
- PopupBuilder.ID(JS)
- PopupBuilder.ID(String)
- PopupBuilder.MaxHeight(Double)
- PopupBuilder.MaxHeight(JS)
- PopupBuilder.MaxHeight(String)
- PopupBuilder.MaxWidth(Double)
- PopupBuilder.MaxWidth(JS)
- PopupBuilder.MaxWidth(String)
- PopupBuilder.MinHeight(Double)
- PopupBuilder.MinHeight(JS)
- PopupBuilder.MinHeight(String)
- PopupBuilder.MinWidth(Double)
- PopupBuilder.MinWidth(JS)
- PopupBuilder.MinWidth(String)
- PopupBuilder.OnContentReady(RazorBlock)
- PopupBuilder.OnContentReady(String)
- PopupBuilder.OnDisposing(RazorBlock)
- PopupBuilder.OnDisposing(String)
- PopupBuilder.OnHidden(RazorBlock)
- PopupBuilder.OnHidden(String)
- PopupBuilder.OnHiding(RazorBlock)
- PopupBuilder.OnHiding(String)
- PopupBuilder.OnInitialized(RazorBlock)
- PopupBuilder.OnInitialized(String)
- PopupBuilder.OnOptionChanged(RazorBlock)
- PopupBuilder.OnOptionChanged(String)
- PopupBuilder.OnResize(RazorBlock)
- PopupBuilder.OnResize(String)
- PopupBuilder.OnResizeEnd(RazorBlock)
- PopupBuilder.OnResizeEnd(String)
- PopupBuilder.OnResizeStart(RazorBlock)
- PopupBuilder.OnResizeStart(String)
- PopupBuilder.OnShowing(RazorBlock)
- PopupBuilder.OnShowing(String)
- PopupBuilder.OnShown(RazorBlock)
- PopupBuilder.OnShown(String)
- PopupBuilder.OnTitleRendered(RazorBlock)
- PopupBuilder.OnTitleRendered(String)
- PopupBuilder.Option(String, Object)
- PopupBuilder.Position(Action<PositionConfigBuilder>)
- PopupBuilder.Position(PositionAlignment)
- PopupBuilder.ResizeEnabled(Boolean)
- PopupBuilder.ResizeEnabled(JS)
- PopupBuilder.RestorePosition(Boolean)
- PopupBuilder.RestorePosition(JS)
- PopupBuilder.RtlEnabled(Boolean)
- PopupBuilder.RtlEnabled(JS)
- PopupBuilder.Shading(Boolean)
- PopupBuilder.Shading(JS)
- PopupBuilder.ShadingColor(JS)
- PopupBuilder.ShadingColor(String)
- PopupBuilder.ShowCloseButton(Boolean)
- PopupBuilder.ShowCloseButton(JS)
- PopupBuilder.ShowTitle(Boolean)
- PopupBuilder.ShowTitle(JS)
- PopupBuilder.TabIndex(Int32)
- PopupBuilder.TabIndex(JS)
- PopupBuilder.Title(JS)
- PopupBuilder.Title(String)
- PopupBuilder.TitleTemplate(JS)
- PopupBuilder.TitleTemplate(RazorBlock)
- PopupBuilder.TitleTemplate(String)
- PopupBuilder.TitleTemplate(TemplateName)
- PopupBuilder.ToolbarItems(Action<CollectionFactory<PopupToolbarItemBuilder>>)
- PopupBuilder.Visible(Boolean)
- PopupBuilder.Visible(JS)
- PopupBuilder.Width(Double)
- PopupBuilder.Width(JS)
- PopupBuilder.Width(String)
- PopupBuilder.WrapperAttr(Dictionary<String, Object>)
- PopupBuilder.WrapperAttr(JS)
- PopupBuilder.WrapperAttr(Object)
- PopupBuilder.WrapperAttr(String, Object)
- WidgetFactory<TModel>.Popup()
Remarks
Call the Popup helper method to create a new Popup control. The method creates a PopupBuilder
class instance whose members allow you to specify control options.
@(Html.DevExtreme().Popup() // create a Popup
// call methods to specify control options
)
Inheritance
Object
OptionsOwnerBuilder
WidgetBuilder
PopupBuilder
See Also