/**
* @class Ext.view.BoundListKeyNav
* @extends Ext.util.KeyNav
* A specialized {@link Ext.util.KeyNav} implementation for navigating a {@link Ext.view.BoundList} using
@@ -9,10 +26,9 @@ Ext.define('Ext.view.BoundListKeyNav', {
extend: 'Ext.util.KeyNav',
requires: 'Ext.view.BoundList',
- /**
- * @cfg {Ext.view.BoundList} boundList
- * @required
- * The {@link Ext.view.BoundList} instance for which key navigation will be managed. This is required.
+ /**
+ * @cfg {Ext.view.BoundList} boundList (required)
+ * The {@link Ext.view.BoundList} instance for which key navigation will be managed.
*/
constructor: function(el, config) {
@@ -64,7 +80,7 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
},
- /**
+ /**
* Highlights the item at the given index.
* @param {Number} index
*/
@@ -78,7 +94,7 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
},
- /**
+ /**
* Triggers selection of the currently highlighted item according to the behavior of
* the configured SelectionModel.
*/
@@ -92,4 +108,6 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
}
-});