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
295
cellValueChanged event at server side
posted

I have some problem using WDG and I found the same question follow link.

http://ko.infragistics.com/community/forums/p/56842/290747.aspx#290747

I want to handle CellValueChanged Event on SERVER-SIDE.

I used RowUpdated Event instead of CellValueChanged which is not exists.

but it doesn't fire when I changed cell value.

I attached the code.

<ig:WebDataGrid ID="uwgCrewList1" runat="server" Height="350px" Width="100%" DataKeyFields="CREWID"
   AutoGenerateColumns="False" EnableDataViewState="true" OnRowUpdated="CrewList_RowUpdated">
    <.....>
</ig:WebDataGrid>

please reply how to handle this.

Thanks.

Parents
  • 37874
    posted

    Hi Chloe Lee,

    Thank you for posting in our forum.

    There is no CellValueChanged server-side event. And if you want to fire RowUpdated every time you edit a cell, you could enable Activation behavior. So after you exit cell edit mode, the grid will be updated and RowUpdated event will be fired.

    Let me know if this helps.

Reply Children