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
180
Infragistics.WebUI.UltraWebGrid - UpdateCell
posted
I have a grid on client side, the user to click on a cell, reformat the internal value by seeing more digits.
Should manage the server, checks the cells through UpdateCell. I have to do it server side as I need data and complicated controls that do not know the client side.
I would make the server-side event is not triggered when the client side, the function BeforeEnterEditMode and AfterExitEditMode format the numbers in the cell.
Is there a way to do this? Thanks
Parents
No Data
Reply
  • 7694
    posted

     Hello,
    You can use the property  EditorControlID for column. Takae a look the code below:

    <igtbl:UltraGridColumn BaseColumnName="CategoryID" EditorControlID="WebTextEditor" DataType="System.Int32"
                                IsBound="True" Key="CategoryID">
                                <Header Caption="CategoryID">
                                    <RowLayoutColumnInfo OriginX="1" />
                                </Header>
                                <Footer>
                                    <RowLayoutColumnInfo OriginX="1" />
                                </Footer>
                            </igtbl:UltraGridColumn>
    Also you can take a look at the samples below:

    http://samples.infragistics.com/2008.2/webfeaturebrowser/default.htm
    Grid-> Editing Data

    Hope this helps.

Children