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
685
hide spin in cell after edit
posted

Hi,

I have an ultragrid with a cell set with IntegerNonNegativeWithSpin style. I handle the enter key on cell :

private void ultraGridRicevuta_KeyDown(object sender, KeyEventArgs e)

{

           if (e.KeyCode == Keys.Enter) {

                    ultraGridRicevuta.ActiveCell.EditorResolved.ExitEditMode(true, true);                    ultraGridRicevuta.PerformAction(UltraGridAction.CommitRow);

            }

}

when I press enter the cell exit from edit mode correctly but the spin button is still visible. There is a way ho hide the spin button ?

thanks, andrea

Parents Reply Children
No Data