将onClick添加到Infragistics WebDataGrid

时间:2018-09-21 17:38:13

标签: c# infragistics webdatagrid

我有一个Infragistics WebDataGrid,我想在每次单击一个单元格时触发服务器端事件。我知道我可以创建一个按钮并向其中添加一个onclick,但是我希望某些或所有数据单元都是可单击的。 我也看到了这个(https://www.infragistics.com/community/forums/f/ultimate-ui-for-asp-net/108226/onclick-event-for-webdatagrid),但我需要事件触发服务器端。

1 个答案:

答案 0 :(得分:0)

您可以尝试以下操作:

  1. 处理"Click"客户事件并调用__doPostBack js函数以触发回发。 Page_Load服务器事件将帮助您确定回发是否是由单击引起的。要考虑的事情是,客户端事件"Click"将在网格内的每次单击上触发,请查看提供的API link以获取更多信息。
  2. 激活选择行为,并处理CellSelectionChanged客户端事件。从这里开始,使用__doPostBack的方法。

Grid是一个非常强大的控件,具有丰富的API和行为,因此我们可以采用另一种方式来实现这一目标。

摘要:

public ContraceptiveFragment(FragmentActivity activity){
    // TODO: initialisations
}

c#

..
<script>
        function client_click(sender, evtArgs) {
            // First Approach
            __doPostBack('myRequest', "someValue");
        }

        function WDG_Selection_CellSelectionChanged(sender, eventArgs)
        {
            // Second Approach
            __doPostBack('myRequest', "someValue");
        }
</script>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager runat="server" ID="ScriptManager1"></asp:ScriptManager>
    <div>
        <ig:WebDataGrid runat="server" ID="WDG" AutoGenerateColumns="False" Width="600px">
            <ClientEvents Click="client_click" />
            <Columns>
                <ig:BoundDataField DataFieldName="CategoryId" Key="CategoryId">
                    <Header Text="CategoryId">
                    </Header>
                </ig:BoundDataField>
                <ig:BoundDataField DataFieldName="CategoryName" Key="CategoryName">
                    <Header Text="CategoryName">
                    </Header>
                </ig:BoundDataField>
                <ig:BoundDataField DataFieldName="Description" Key="Description">
                    <Header Text="Description">
                    </Header>
                </ig:BoundDataField>
            </Columns>
            <Behaviors>
                <ig:EditingCore>
                    <Behaviors>
                        <ig:CellEditing>
                            <CellEditingClientEvents EnteringEditMode="entering_edit_mode" />
                        </ig:CellEditing>
                    </Behaviors>
                </ig:EditingCore>
                <ig:Selection>
                    <SelectionClientEvents CellSelectionChanged="WDG_Selection_CellSelectionChanged" />
                </ig:Selection>
            </Behaviors>
        </ig:WebDataGrid>


..

...