Hi, Regarding the "PositionToolTip", for now we can use like this: function beforeInit(sender, config) {   config.useTips = true;   // tipText - function used to display custom text for the slider tip   config.tipText = function(thumb){     return Ext.String.format('{0}% complete', thumb.value);   } } Best regards.