Name | Type | Default | ||||||
---|---|---|---|---|---|---|---|---|
alwaysShowNavigationArrows | Boolean | false | ||||||
Sets or gets the jqxListMenu's alwaysShowNavigationArrows property. The alwaysShowNavigationArrows specifies whether navigation arrows are displayed for all items. Code example
Set the
Get the
|
||||||||
animationType | String | "slide" | ||||||
Sets or gets the animation's type. Possible Values:
Code example
Set the
Get the
Try it: animationType is set to "fade"
|
||||||||
animationDuration | Number | 250 | ||||||
Sets or gets the animation duration in milliseconds. Code example
Set the
Get the
Try it: animationDuration is set to 500
|
||||||||
autoSeparators | Boolean | false | ||||||
Sets or gets whether auto separators will be generated. Separator is generated for a sequence of list items with equal start character. The property is possible to be set through the attribute data-auto-separators="true". Code Example:
Code example
Set the
Get the
Try it: autoSeparators is set to true
|
||||||||
backLabel | String | "Back" | ||||||
Sets or gets the BackButton's label. Code example
Set the
Get the
Try it: backLabel is set to "Back"
|
||||||||
disabled | Boolean | false | ||||||
Sets or gets the jqxListMenu's disabled property. Code example
Set the
Get the
Try it: disabled is set to true
|
||||||||
enableScrolling | Boolean | true | ||||||
When the jqxListMenu is created with the enableScrolling property set to true, vertical scrollbar automatically appears, if the items overflow the visible area. In order to use this feature, the following files should be included: jqxpanel.js and jqxscrollbar.js. Code example
Set the
Get the
Try it: enableScrolling is set to false
|
||||||||
filterCallback | Function | function (text, searchValue){return text.toString().toLowerCase().indexOf(searchValue.toLowerCase()) >= 0;}; | ||||||
Used for filtering the jqxListMenu using the filter input. Code example
Set the
Get the
|
||||||||
height | String | auto | ||||||
Sets or gets the jqxListMenu's height. Code example
Set the
Get the
Try it: height is set to 500
|
||||||||
headerAnimationDuration | Number | 0 | ||||||
Sets or gets the animation duration of the header. Header of a listmenu could be set whether the data-role attribute of a list item is set to 'header'. Example:
This property is setting the duration of the animation used for changing the header when different nested listviews are switched.
Fade animation is used for switching through different headers.
Code example
Set the
Get the
|
||||||||
placeHolder | String | 'Filter list items...' | ||||||
Sets or gets the filter input field's place holder. Code example
Set the
Get the
|
||||||||
readOnly | Boolean | false | ||||||
Sets or gets whether the list will be read-only. In readOnly mode, items are not clickable. Code example
Set the
Get the
Try it: readOnly is set to true
|
||||||||
rtl | Boolean | false | ||||||
Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
Set the
Get the
Try it: rtl is set to true
|
||||||||
roundedCorners | Boolean | true | ||||||
Sets or gets the jqxListMenu's roundedCorners property. Code example
Set the
Get the
Try it: roundedCorners is set to false
|
||||||||
showNavigationArrows | Boolean | true | ||||||
Sets or gets the jqxListMenu's showNavigationArrows property. The showNavigationArrows specifies whether navigation arrows are displayed only for list items with nested Lists Code example
Set the
Get the
|
||||||||
showFilter | Boolean | false | ||||||
Sets or gets whether the filter input field is visible. Code example
Set the
Get the
Try it: showFilter is set to true
|
||||||||
showHeader | Boolean | true | ||||||
Sets or gets whether the header will be visible. Code example
Set the
Get the
Try it: showHeader is set to false
|
||||||||
showBackButton | Boolean | true | ||||||
Indicates whether the back button will be visible. Code example
Set the
Get the
Try it: showBackButton is set to false
|
||||||||
theme | String | '' | ||||||
Sets the widget's theme. jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file. In order to set a theme, you need to do the following:
Try it: theme is set to 'energyblue'
|
||||||||
width | String | 100% | ||||||
Sets or gets the jqxListMenu's width. Code example
Set the
Get the
Try it: width is set to 300
|
||||||||
Methods |
||||||||
back | Method | |||||||
Navigates to the previous page.
None Code example
Invoke the
Try it: goes back in the jqxListMenu
|
||||||||
changePage | Method | |||||||
Sets the displayed page. The page could be set using a selector or object. The page must be a child of the current list and it's data-role must be set to "listmenu".
None Code example
Invoke the
Code example<!DOCTYPE html> |