Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
310
How to catch Cell Click event
posted

Hi... I have an already activated cell which is not in Edit Mode... How can I catch the Cell click event so that I can put that Cell in Edit Mode?

 Tnx a Lot...

  • 45
    posted

    how do you activate a cell? 

    i have these options for you... i think you could use the

    BeforeCellActivate Event or AfterCellActivate

    sample

    private void grdPatients_BeforeCellActivate(object sender, CancelableCellEventArgs e)

    {

       some code to allow editing.. :)

     

    }