Class MobileGroupButtonProperties
Implements
Inherited Members
Namespace: Syncfusion.JavaScript.Mobile.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class MobileGroupButtonProperties : PropertiesBase, IMobileBase
Constructors
MobileGroupButtonProperties()
Initializes a new instance of the MobileGroupButtonProperties class.
Declaration
public MobileGroupButtonProperties()
Properties
Buttons
Section for button specific functionalities.
Declaration
[JsonIgnore]
public List<MobileGroupButtonBaseItem> Buttons { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<MobileGroupButtonBaseItem> | The items. |
EnablePersistence
Current model value to browser cookies for state maintenance. While refreshing the page, the model value applied from browser cookies retains.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
GroupButtonType
Specifies the type of the item to be used.
Declaration
[JsonProperty("groupButtonType")]
[JsonConverter(typeof(StringEnumConverter))]
public GroupButtonType GroupButtonType { get; set; }
Property Value
Type | Description |
---|---|
GroupButtonType | The GroupButtonType. |
Name
Gets or sets the identifier.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The identifier. |
RenderMode
Changes the rendering mode of the groupbutton.
Declaration
[JsonProperty("renderMode")]
[JsonConverter(typeof(StringEnumConverter))]
public RenderMode RenderMode { get; set; }
Property Value
Type | Description |
---|---|
RenderMode | The render mode. |
Select
Event triggers when selection happens in the groupbutton.
Declaration
[JsonProperty("select")]
public string Select { get; set; }
Property Value
Type | Description |
---|---|
System.String | The on select. |
SelectedItemIndex
Specifies the item which one is to be selected initially.
Declaration
[JsonProperty("selectedItemIndex")]
public int SelectedItemIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The selectedItemIndex. |
Theme
Changes the theme of the groupbutton.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("theme")]
public Theme Theme { get; set; }
Property Value
Type | Description |
---|---|
Theme | The theme. |
TouchEnd
Event triggers when the touchend happens in the groupbutton.
Declaration
[JsonProperty("touchEnd")]
public string TouchEnd { get; set; }
Property Value
Type | Description |
---|---|
System.String | The on touch end. |
TouchStart
Event triggers when the touchstart happens in the groupbutton.
Declaration
[JsonProperty("touchStart")]
public string TouchStart { get; set; }
Property Value
Type | Description |
---|---|
System.String | The on touch start. |
Windows
Section for windows rendermode specific functionalities.
Declaration
[JsonProperty("windows")]
public MobileGroupButtonWindowsProperties Windows { get; set; }
Property Value
Type | Description |
---|---|
MobileGroupButtonWindowsProperties | The windows. |