11

I want to get the surname fields of the selected rows. This one does not work at all:

users.getSelectionModel().getSelections();

Steen
  • 6,573
  • 3
  • 39
  • 56
ilhan
  • 8,700
  • 35
  • 117
  • 201

1 Answers1

19

How about users.getSelectionModel().getSelection(); ?

getSelections() was used in ExtJS3. In ExtJS4, they decided to improve grammar a little it seems: ExtJS4 docs for Ext.selection.Model

Mchl
  • 61,444
  • 9
  • 118
  • 120