Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AbstractFormGridを拡張するグリッドがいくつかあります。オブジェクト(グリッドであるかどうかに関係なく)がある場合、このオブジェクトがAbstractFormGridを拡張するかどうかを確認する方法。Ext.getName(object)またはobject.self.getName()を使用してオブジェクトクラス名を取得できましたが、「親」クラスを取得できません。
プロパティthis.superclassは親クラスを返します。
this.superclass
そして、あなたが言ったように、これはうまくいきます:
Ext.getClass(object).superclass.self.getName()
より簡単なアプローチは、プライベートプロパティ$classNameを使用することです。
object.superclass.$className
各クラスはExt.Baseからこのプロパティを継承します