Leron
Leron

Reputation: 9886

ExtJS 4 working with itemclick function in grid.Panel

I'm using

itemclick: function(grid, record, item, index, e)

in my

Ext.create('Ext.grid.Panel', {..

I'm googling almost 2 hours and I find more and more ways to select one thing, or do another.Like for example

console.log(grid.getSelectionModel());

you get something but where I can find all the methods availabale and how to connect one with another to get the effect I want. I just feel lost here and don't know from where to start. I guess it's the ExtJS way to navigate in DOM but is there a place where all the methods are described and what are they used for and after all what's the way to navigate through all this - just smoe standart JavaScript that I've missed or something ExtJS specific ...

Thanks

Leron

Upvotes: 0

Views: 1142

Answers (1)

egerardus
egerardus

Reputation: 11486

Hopefully you found this by now, but the API doc are here. Each of the ExtJS objects are listed under the tab with a gear looking icon. Clicking on one will open a tab for that object with all of its config options, properties and methods.

Upvotes: 1

Related Questions