This question is locked. New answers and comments are not allowed.
Hi there
I am trying to create a modal popup to request a change on a record. I tried using a fancybox, but its not working.
I see there is a Telerik popupform, but this is only one window? I would like to send the window values from the model to display and track changes:
This is what I have in my Telerik Grid using the FancyBox, coudl this be changed to have a popup window for each record?
[code]
columns.Template(
@<text>
@(Html.ActionLink("Change", "ImprintChange", "Secure", new RouteValueDictionary(new { imprintID = item.ImprintID, publisherID = item.PublisherID }), new Dictionary<string, object> { { "class", "fancyEdit"} }))
</text>);
[/code]
I am trying to create a modal popup to request a change on a record. I tried using a fancybox, but its not working.
I see there is a Telerik popupform, but this is only one window? I would like to send the window values from the model to display and track changes:
This is what I have in my Telerik Grid using the FancyBox, coudl this be changed to have a popup window for each record?
[code]
columns.Template(
@<text>
@(Html.ActionLink("Change", "ImprintChange", "Secure", new RouteValueDictionary(new { imprintID = item.ImprintID, publisherID = item.PublisherID }), new Dictionary<string, object> { { "class", "fancyEdit"} }))
</text>);
[/code]