I'm using Ext4...

How to check whether one class is inherited of another class?

for example:

Ext.define("A", {});
Ext.define("B", { extend: "A" });
Ext.define("C", { extend: "B" });

var a = Ext.create("A");
var c = Ext.create("C");

I need something like this: c instanceof a

???

Thanks

link|improve this question

25% accept rate
1  
Just curious, but did you try with c instanceof a? That would work in Javascript. – troelskn Aug 17 '11 at 17:44
feedback

2 Answers

up vote 1 down vote accepted

(Based on @troelskn 's comment)

http://jsfiddle.net/miriam/ugQHB/

c instanceof A

returns true.

link|improve this answer
feedback

You can use isXtype method. See docs here: Ext.AbstractComponent

link|improve this answer
it is not exactly what I meant, but thanks, I didn't know this method! :) – Eugene Petrov Aug 18 '11 at 3:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.