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
55
How to get the selected row of iggrid
posted

Hi,

am using the mvc4 razor control and my requirment is like that I have a panel above the grid and in that i have text boxes and dropdowns and when am going to click on grid row then that respective data need to bind with the panels controls means into the textboxex and dropdown. and my code is like that

 @using Infragistics.Web.Mvc
@{
    ViewBag.Title = "Index";
}
@using Infragistics.Web.Mvc
@using System.Data
@*@model  Infragistics .Web.Mvc .GridModel*@
<!DOCTYPE html>
<html>
<head>
   
    
</head>
<body>
    @(Html.Infragistics().Loader()
        .ScriptPath(Url.Content("~/Infragistics/js/"))
        .CssPath(Url.Content("~/Infragistics/css/"))
        .Resources("igHierarchicalGrid.*")

        .Render()

    )
    @(Html.Infragistics().Grid<System.Data.DataSet>()
                .ID("grid1")
        .Width("100%")
        .AutoGenerateColumns(true)
        .AutoGenerateLayouts(true)

                    .Features(features =>
                    {
                        features.Sorting().Type(OpType.Local).Mode(SortingMode.Single).Inherit(true);
                        features.Paging().PageSize(5).Type(OpType.Remote).Inherit(false);
                        features.Filtering().Type(OpType.Local).Inherit(true);
                        features.Selection().Mode(SelectionMode.Row).MultipleSelection(true);
                        features.GroupBy().Type(OpType.Local).Inherit(true);
                        features.Hiding().Inherit(true);
                    })
        .DataSource(Model)
        .DataSourceUrl(Url.Action("dataset-binding"))
        .DataBind()
        .Render()
    )
</body>
</html>

and also let me know the solution to add the addclient event for gridmodel class.

Parents Reply Children