menu

ASP.NET MVC

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MobileListViewProperties

    Show / Hide Table of Contents

    Class MobileListViewProperties

    Inheritance
    System.Object
    EJTagHelper
    PropertiesBase
    MobileListViewProperties
    Implements
    IMobileBase
    Inherited Members
    PropertiesBase.Create
    PropertiesBase.Destroy
    PropertiesBase.CssClass
    EJTagHelper.GetControlDetails()
    EJTagHelper.GetControlDetails(String)
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.JavaScript.Mobile.Models
    Assembly: Syncfusion.EJ.dll
    Syntax
    public class MobileListViewProperties : PropertiesBase, IMobileBase

    Constructors

    MobileListViewProperties()

    Initializes a new instance of the MobileListViewProperties class.

    Declaration
    public MobileListViewProperties()

    Properties

    ActionComplete

    Event triggers after the ajax content loaded completely.

    Declaration
    [JsonProperty("actionComplete")]
    public string ActionComplete { get; set; }
    Property Value
    Type Description
    System.String

    The ajax complete.

    ActionFailure

    Event triggers when the ajax request failed.

    Declaration
    [JsonProperty("actionFailure")]
    public string ActionFailure { get; set; }
    Property Value
    Type Description
    System.String

    The ajax error.

    ActionSuccess

    Event triggers after the ajax content loaded successfully.

    Declaration
    [JsonProperty("actionSuccess")]
    public string ActionSuccess { get; set; }
    Property Value
    Type Description
    System.String

    The ajax success.

    AfterDelete

    Event triggers when after delete list item.

    Declaration
    [JsonProperty("afterDelete")]
    public string AfterDelete { get; set; }
    Property Value
    Type Description
    System.String

    The beforeDelete.

    AllowSelection

    Specifies whether to prevent the selection of the item.

    Declaration
    [JsonProperty("allowSelection")]
    public bool AllowSelection { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [prevent selection]; otherwise, false.

    BeforeDelete

    Event triggers when before delete list item.

    Declaration
    [JsonProperty("beforeDelete")]
    public string BeforeDelete { get; set; }
    Property Value
    Type Description
    System.String

    The beforeDelete.

    CheckedIndices

    Gets or sets checked Indices.

    Declaration
    [JsonProperty("checkedIndices")]
    [CLSCompliant(false)]
    public List<double> CheckedIndices { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Double>

    checkedIndices.

    ContentTemplate

    Specifies the element contains template contents.

    Declaration
    [JsonIgnore]
    public MvcTemplate<MobileListViewProperties> ContentTemplate { get; set; }
    Property Value
    Type Description
    MvcTemplate<MobileListViewProperties>

    The template identifier.

    DataSource

    Specifies the datasource is enabled.

    Declaration
    [JsonConverter(typeof(DataManagerConverter))]
    [HtmlAttributeName("datasource")]
    [JsonProperty("dataSource")]
    public object DataSource { get; set; }
    Property Value
    Type Description
    System.Object

    The data source.

    DeleteMode

    List item delete mode.

    Declaration
    [JsonProperty("deleteMode")]
    [JsonConverter(typeof(StringEnumConverter))]
    public ListDeleteMode DeleteMode { get; set; }
    Property Value
    Type Description
    ListDeleteMode

    deleteMode.

    EnableChecklist

    Specifies whether to enable check list.

    Declaration
    [JsonProperty("enableChecklist")]
    public bool EnableChecklist { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [persist selection]; otherwise, false.

    Enabled

    Specifies whether to enable control.

    Declaration
    [JsonProperty("enabled")]
    public bool Enabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [persist selection]; otherwise, false.

    EnablePersistence

    Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.

    Declaration
    [JsonProperty("enablePersistence")]
    public bool EnablePersistence { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [enable persistence]; otherwise, false.

    EnableRippleEffect

    Provides animation ripple effect to the control

    Declaration
    [JsonProperty("enableRippleEffect")]
    public bool EnableRippleEffect { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [enableRippleEffect]; otherwise, false.

    Fields

    Specifies the field settings to map the datasource is enabled.

    Declaration
    [JsonProperty("fields")]
    public MobileListViewFields Fields { get; set; }
    Property Value
    Type Description
    MobileListViewFields

    The fieldsettings.

    Items

    Specifies the list items.

    Declaration
    [JsonIgnore]
    public List<MobileListViewItem> Items { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<MobileListViewItem>

    The items.

    ItemsCount

    Specifies the number of list item load to be load.

    Declaration
    [JsonProperty("itemsCount")]
    public int ItemsCount { get; set; }
    Property Value
    Type Description
    System.Int32

    itemsCount.

    PersistSelection

    Specifies whether to retain the selection of the item.

    Declaration
    [JsonProperty("persistSelection")]
    public bool PersistSelection { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [persist selection]; otherwise, false.

    Query

    Specifies the query to execute with the datasource is enabled.

    Declaration
    [JsonConverter(typeof(QueryConverter))]
    [JsonProperty("query")]
    public string Query { get; set; }
    Property Value
    Type Description
    System.String

    The query.

    RenderMode

    Specifies the rendering mode of the control.

    Declaration
    [JsonConverter(typeof(StringEnumConverter))]
    [JsonProperty("renderMode")]
    public RenderMode RenderMode { get; set; }
    Property Value
    Type Description
    RenderMode

    The render mode.

    Select

    Declaration
    [JsonProperty("select")]
    public string Select { get; set; }
    Property Value
    Type Description
    System.String

    SelectedIndex

    Specifies the index of item which need to be in selected state initially while loading.

    Declaration
    [JsonProperty("selectedIndex")]
    public int SelectedIndex { get; set; }
    Property Value
    Type Description
    System.Int32

    The index of the selected item.

    TemplateId

    Specifies Id of the element contains template contents.

    Declaration
    [JsonProperty("templateId")]
    public string TemplateId { get; set; }
    Property Value
    Type Description
    System.String

    The template identifier.

    TouchEnd

    Event triggers when touch end happens on the item.

    Declaration
    [JsonProperty("touchEnd")]
    public string TouchEnd { get; set; }
    Property Value
    Type Description
    System.String

    The touch end.

    TouchStart

    Event triggers when touch start happens on the item.

    Declaration
    [JsonProperty("touchStart")]
    public string TouchStart { get; set; }
    Property Value
    Type Description
    System.String

    The touch start.

    Windows

    Section for windows mode specific functionalities.

    Declaration
    [JsonProperty("windows")]
    public MobileListViewWindowsProperties Windows { get; set; }
    Property Value
    Type Description
    MobileListViewWindowsProperties

    The windows.

    Implements

    IMobileBase
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved