_buildColSelRegexUsed to transform the _colNameRegex to a Regular Expression when the
            column highlighting is initially turned on. If _colNameRegex is not a
            string when this method is called, no action is taken.
_highlightCelle
                                
                            Method called to turn on or off the cell highlighting when the mouse
            enters or leaves the cell. This is determined by the event phase of the
            hover event. Where over will turn on the highlighting and anything else
            will turn it off.
e
                                    EventFacade
                                
            
                                
            
                                Event from the hover event
_highlightCole
                                
                            Method called to turn on or off the column highlighting when the mouse
            enters or leaves the column. This is determined by the event phase of the
            hover event. Where over will turn on the highlighting and anything else
            will turn it off.
e
                                    EventFacade
                                
            
                                
            
                                Event from the hover event
_highlightRowe
                                
                            Method called to turn on or off the row highlighting when the mouse
            enters or leaves the row. This is determined by the event phase of the
            hover event. Where over will turn on the highlighting and anything else
            will turn it off.
e
                                    EventFacade
                                
            
                                
            
                                Event from the hover event
_setHighlightCellsval
                                
                            Default setter method for cell highlighting. If the value is true, a
            delegate is created and stored in this._highlightDelegates.cell. This
            delegate will add/remove the cell highlight classname to/from the cell
            when the mouse enters/leaves a cell on the tbody
val
                                    Boolean
                                
            
                                
            
                                val
_setHighlightColsval
                                
                            Default setter method for column highlighting. If the value is true, a
            delegate is created and stored in this._highlightDelegates.col. This
            delegate will add/remove the column highlight classname to/from the
            column when the mouse enters/leaves a column on the tbody
val
                                    Boolean
                                
            
                                
            
                                val
_setHighlightRowsval
                                
                            Default setter method for row highlighting. If the value is true, a
            delegate is created and stored in this._highlightDelegates.row. This
            delegate will add/remove the row highlight classname to/from the row when
            the mouse enters/leaves a row on the tbody
val
                                    Boolean
                                
            
                                
            
                                val
_colNameRegexA string that will be used to create Regular Expression when column
            highlighting is set to true. Uses the css prefix ({prefix}) from the
            DataTable object to populate.
_colSelectorA string that is used to create a column selector when the column is has
            the mouse over it. Can contain the css prefix ({prefix}) and the column
            name ({col}). Further substitution will require _highlightCol to be
            overwritten.
_highlightDelegatesThis object will contain any delegates created when their feature is turned on.
highlightClassNamesAn object consisting of classnames for a row, a col and a cell to
            be applied to their respective objects when the user moves the mouse over
            the item and the attribute is set to true.
highlightCellsSetting this to true will create a delegate on the DataTable adding the default classname to the cell when the mouse is over it.
Default: false
highlightCellsChange
                        Fires when the value for the configuration attribute highlightCells is
                        changed. You can listen for the event using the on method if you
                        wish to be notified before the attribute's value has changed, or
                        using the after method if you wish to be notified after the
                        attribute's value has changed.
                        
e
                                    EventFacade
            
                                    highlightColsSetting this to true will create a delegate on the DataTable adding the default classname to the column when the mouse is over the column.
Default: false
highlightColsChange
                        Fires when the value for the configuration attribute highlightCols is
                        changed. You can listen for the event using the on method if you
                        wish to be notified before the attribute's value has changed, or
                        using the after method if you wish to be notified after the
                        attribute's value has changed.
                        
e
                                    EventFacade
            
                                    highlightRowsSetting this to true will create a delegate on the DataTable adding the default classname to the row when the mouse is over the row.
Default: false
highlightRowsChange
                        Fires when the value for the configuration attribute highlightRows is
                        changed. You can listen for the event using the on method if you
                        wish to be notified before the attribute's value has changed, or
                        using the after method if you wish to be notified after the
                        attribute's value has changed.
                        
e
                                    EventFacade