tags:

views:

266

answers:

1

How to lock a specific row in extjs.

A: 

One way is to handle the click event (or other appropriate event), determine the row selected, and return immediately if the row is "locked."

The RowSelectionModel also fires the rowSelected event; as others have pointed out in this forum, this event is fired for either a keyboard row selection or a mouse row selection.

Upper Stage