i have a grid and a form, i need to show different items on the form each time we select a row on that grid
i ve been looking on how to do this, and found
Try to following code in your grid.
listeners:{ itemclick:function(view, record, item, index, e ) { var v = record.get('firstName'); .... .... } }
firstName will be your dataindex of colums in your grid. You can get value of any field like this.