I’m very new in Sencha. When I run my app my main panel doesn’t show, only NestedList. Browser shows the following message:
Uncaught TypeError: Cannot call method ‘getId’ of undefined
I don’t know how to fix it. I will glad of any hint.
this is my app
There are 3 things you should modify to get your application works:
fullscreen: trueconfig as it breaks your app layout, because it’s not the outer-most component of your applcation.this.detailCardfromsetItemsin your split view since it is not defined and not compulsory to be defined. So:this.setItems([this.nestedList]);is enough.layout: 'card'to your split view config.I’ve tested and it worked well. Hope it helps you.