Hi,
My Popup Issue
@(Html.Kendo().Window()
.Name("roleRightsWindow")
.Width(600)
.Height(500)
.Title("Rights List")
.Actions(actions => actions.Close())
.Visible(false)
.Modal(true)
The above works just fine upon page load (for basic testing), but I want to call the same controller and action but with various values for the parameters gotten from one column in a grid and upon a button click of another column in the same grid.
I tried to find an example but could not.
Help would certainly be appreciated.
Thanks,
Murph
My Popup Issue
@(Html.Kendo().Window()
.Name("roleRightsWindow")
.Width(600)
.Height(500)
.Title("Rights List")
.Actions(actions => actions.Close())
.Visible(false)
.Modal(true)
.LoadContentFrom("_DARoleRightsAssignedAllForPopUp", "DataAccess", new { roleId = 4, roleTypeId = 1 })
)The above works just fine upon page load (for basic testing), but I want to call the same controller and action but with various values for the parameters gotten from one column in a grid and upon a button click of another column in the same grid.
I tried to find an example but could not.
Help would certainly be appreciated.
Thanks,
Murph