Hi Dash Community:
In this example:
You can see, If one enters a string ( type dagaxfdsa ) in the number cell, it doesn’t take this input, but only can accept number.
In Dash, if I enter the random string in the cell specified with below, it can actually still takes the string. I understand that one can use the example here: Cell Editors | Dash for Python Documentation | Plotly to predicts strings. However, is there a way to get the default behavior in Ag Grid for Dash for this example? Thanks.
columnDefs: [
{
cellEditor: ‘agNumberCellEditor’,
cellEditorParams: {
min: 1,
max: 100,
precision: 0,
}
// …other props
}
]