Jump to content

DbGrid editing - limit column focus


arilotta

Recommended Posts

Hi all,

I have a DbGrid with dgEditing=true.

I would like to limit the columns that can be selected, because some contains icons

and some other are text read-only.

I am struggling with ClientEvents and CellModel, but I not so familiar with JS and

I am wasting too much time.

 

So, how can I limit my grid to only focus on the third column for example ?

 

Thanks you all

 

Andrea

Link to comment
Share on other sites

Hi,

 

At the moment, the column index is passed through "eOpts", and you can try this approach I think:

function cellModel.beforeselect(sender, record, index, eOpts)
{
    //colIndx = 2
    return (eOpts == 2);
}
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...