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
785
DatawebGrid select Row is not Working even I set required properties.
posted

Hi , I have set all the properties, But still click on the row and cell doesn't make selection .. Please help.

<Infragrid:WebDataGrid ID="UserGroupDetails" AutoGenerateColumns="false" runat="server"

OnInitializeRow="UserGroupDetails_InitializeRow" EnableTheming="true" height="230px" EnableDataViewState="true"

EnableAjaxViewState="true" EnableAjax="false" >

<Columns>

<Infragrid:TemplateDataField Key="Description" Width="31%" >

<HeaderTemplate>Name</HeaderTemplate>

<ItemTemplate>

<asp:Image ID="UserGroupImage" runat="server" style="float: left;"></asp:Image>

<%# DataBinder.Eval(((Infragistics.Web.UI.TemplateContainer)Container).DataItem, "Description")%>

</ItemTemplate>

 

</Columns>

<Behaviors>

<Infragrid:Selection CellClickAction="Row" RowSelectType="Multiple">

</Infragrid:Selection>

<Infragrid:RowSelectors>

</Infragrid:RowSelectors>

<Infragrid:Activation>

</Infragrid:Activation>

</Behaviors>

Parents
No Data
Reply
  • 8421
    posted

    Could you provide more details about what you are doing on the server, particularly in your InitializeRow event and where you are setting the grid's data source? Using the markup that you have provided I was not able to reproduce this behavior. When I click on a row it is selected as expected. Please see my attached sample and let me know if you are able to reproduce the behavior in the sample.

    WDGSelectionTest.zip
Children