Kendo grid URL with html.actionlink
up vote
1
down vote
favorite
I am trying to call controller action MVC from Kendo grid row.
Following is the the column
{
field: "FileName", title: "Link2", width: "20%",
template: "@Html.ActionLink('#=FileName', nameof(MeterFactorController.Document), new { Id = #=FileLocator }) )"
},
It is displaying as string instead of URL.
asp.net-mvc kendo-ui grid
add a comment |
up vote
1
down vote
favorite
I am trying to call controller action MVC from Kendo grid row.
Following is the the column
{
field: "FileName", title: "Link2", width: "20%",
template: "@Html.ActionLink('#=FileName', nameof(MeterFactorController.Document), new { Id = #=FileLocator }) )"
},
It is displaying as string instead of URL.
asp.net-mvc kendo-ui grid
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am trying to call controller action MVC from Kendo grid row.
Following is the the column
{
field: "FileName", title: "Link2", width: "20%",
template: "@Html.ActionLink('#=FileName', nameof(MeterFactorController.Document), new { Id = #=FileLocator }) )"
},
It is displaying as string instead of URL.
asp.net-mvc kendo-ui grid
I am trying to call controller action MVC from Kendo grid row.
Following is the the column
{
field: "FileName", title: "Link2", width: "20%",
template: "@Html.ActionLink('#=FileName', nameof(MeterFactorController.Document), new { Id = #=FileLocator }) )"
},
It is displaying as string instead of URL.
asp.net-mvc kendo-ui grid
asp.net-mvc kendo-ui grid
edited Nov 16 at 13:33
tereško
52.1k1976135
52.1k1976135
asked Nov 11 at 2:50
user1609859
1114
1114
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53
add a comment |
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
If you want to take user to a different View by calling the Controller method, you can try this:
template: "<a href='" + controllerUri + "/" + parameters + "'>" + Name of the link + "</a>"
If you want to make a Ajax call to the controller you can try the following:
template: "<a class='k-button' onclick='yourJSFunctionName(event,#=FileName#)'>Your Button Text</a>"
JS:
function yourJSFunctionName(event,FileName) {
//Ajax call to the controller
alert("Ajax call");
}
Hope this helps!
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
If you want to take user to a different View by calling the Controller method, you can try this:
template: "<a href='" + controllerUri + "/" + parameters + "'>" + Name of the link + "</a>"
If you want to make a Ajax call to the controller you can try the following:
template: "<a class='k-button' onclick='yourJSFunctionName(event,#=FileName#)'>Your Button Text</a>"
JS:
function yourJSFunctionName(event,FileName) {
//Ajax call to the controller
alert("Ajax call");
}
Hope this helps!
add a comment |
up vote
0
down vote
If you want to take user to a different View by calling the Controller method, you can try this:
template: "<a href='" + controllerUri + "/" + parameters + "'>" + Name of the link + "</a>"
If you want to make a Ajax call to the controller you can try the following:
template: "<a class='k-button' onclick='yourJSFunctionName(event,#=FileName#)'>Your Button Text</a>"
JS:
function yourJSFunctionName(event,FileName) {
//Ajax call to the controller
alert("Ajax call");
}
Hope this helps!
add a comment |
up vote
0
down vote
up vote
0
down vote
If you want to take user to a different View by calling the Controller method, you can try this:
template: "<a href='" + controllerUri + "/" + parameters + "'>" + Name of the link + "</a>"
If you want to make a Ajax call to the controller you can try the following:
template: "<a class='k-button' onclick='yourJSFunctionName(event,#=FileName#)'>Your Button Text</a>"
JS:
function yourJSFunctionName(event,FileName) {
//Ajax call to the controller
alert("Ajax call");
}
Hope this helps!
If you want to take user to a different View by calling the Controller method, you can try this:
template: "<a href='" + controllerUri + "/" + parameters + "'>" + Name of the link + "</a>"
If you want to make a Ajax call to the controller you can try the following:
template: "<a class='k-button' onclick='yourJSFunctionName(event,#=FileName#)'>Your Button Text</a>"
JS:
function yourJSFunctionName(event,FileName) {
//Ajax call to the controller
alert("Ajax call");
}
Hope this helps!
answered Nov 16 at 5:36
Arachchi
263
263
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245433%2fkendo-grid-url-with-html-actionlink%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You have an action with a file name? Anyway, you can't use javascript variables in razor/c# that way.
– DontVoteMeDown
Nov 12 at 10:53