Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid edit row

    Using SmartClient 8.2.

    I have a ListGrid that users can add new records (rows) to. To accomplish this feat, I have an "Add Row" button that adds a row when clicked. Some of the fields are editable.

    What I'd like to do is prevent users from going back and clicking on an existing row and editing the data there. The table is supposed to be add-only.

    So I think the records need to be editable only the first time ( on creation), and then not editable after that.

    How would I go about doing this?

    #2
    Override canEditCell() and return false for rows that are not newly added.

    Comment

    Working...
    X