开发者

extjs gridfilters private methods

开发者 https://www.devze.com 2023-02-10 22:18 出处:网络
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 y

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消