Rank: Advanced Member Groups: Member
Joined: 9/2/2010 Posts: 120
|
Hi,
In a Grid Control, when I have a Checkbox Column, the ClientSideEndEdit event is fired immediately after I ckick it, and it is cool.
But, when I put the Checkbox control into a CustomColumn, the ClientSideEndEdit event is fired only when I left the column. Has any way to fired the ClientSideEndEdit event immediately after the mouse click?
Thanks in advance, Camarate
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
That is normal. When you use CustomColumn you are in charge of everything. That's exactly what CustomColumn is by definition. If you wish to handle onclick event, you would need to handle it yourself in the HTML you put inside the CustomColumn.
Thanks
|
Rank: Advanced Member Groups: Member
Joined: 9/2/2010 Posts: 120
|
Hi eo_support,
Thanks for your reply.
I used the OnClick event in the Checkbox control and worked fine.
Regards, Camarate
|