You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GridModel currently supports clicksToEdit which specifies AG Option singleClickEdit: clicksToEdit === 1. However, we do not expose a way to specify this at the column level.
For symmetry, we could support a clicksToEdit Column option; however, this is a little confusing since we really can only support values 1 or 2. At the GridModel level, we support any number, but for any value other than 1 or 2, we set the AG Option suppressClickEdit = true. This is not something we can do at the Column level, so perhaps we're better off just exposing singleClickEdit directly.
The text was updated successfully, but these errors were encountered:
Sounds reasonable am just interested in getting a bit more color as to the specific use case / UX considerations around having different cols behave differently
The client developer who requested this had an inline editable grid in which he wanted select editors to render on single-click but text editors to render on double-click.
GridModel
currently supportsclicksToEdit
which specifies AG OptionsingleClickEdit: clicksToEdit === 1
. However, we do not expose a way to specify this at the column level.For symmetry, we could support a
clicksToEdit
Column option; however, this is a little confusing since we really can only support values1
or2
. At theGridModel
level, we support anynumber
, but for any value other than1
or2
, we set the AG OptionsuppressClickEdit = true
. This is not something we can do at the Column level, so perhaps we're better off just exposingsingleClickEdit
directly.The text was updated successfully, but these errors were encountered: