In gridfilters.js, why are some methods marked as /** private **/
When I override these methods, it se开发者_运维技巧ems that the overridden method is not called.
You can override private methods but you shouldn't override private methods. The only thing /** private **/ does is make it so the method does not appear in the ExtJS Api documentation. You shouldn't override these methods because they are subject to change and are for internal use only.
精彩评论