Hi,
I am relatively new to kendo UI, sorry if this is a very basic question..
I am using kendo data grid to get the data from a json webservice using AJAX call.
I have created a template which will open a tabstrip when the name field is clicked in data grid..
columns: [{
field: "Name",
title: "Name",
width: 100,
template:"<span onclick='tabStrip.append([{text: \"#=Name# <a href onclick=DeleteTabs(this);>x</a> \",encoded: false,content:\"#=Name#\" }]);'>#= Name#</span>"
//template: "<span onclick='tabStrip.append([{text: \"#= Name#\", contentUrl: \"/apps/dataelement?uid=#= Uid#\"}]);'>#= Name#</span>"
},
When I click the name value in data grid it opens a new tab strip and populates a default content.
Now I have another function which gets the UID as input and returns back the detail corresponding to a particular name in data grid, I am trying to populate the result from that function inside this tab but I am not sure on how to do that... Can someone please help....
Thanks,
BB
I am relatively new to kendo UI, sorry if this is a very basic question..
I am using kendo data grid to get the data from a json webservice using AJAX call.
I have created a template which will open a tabstrip when the name field is clicked in data grid..
columns: [{
field: "Name",
title: "Name",
width: 100,
template:"<span onclick='tabStrip.append([{text: \"#=Name# <a href onclick=DeleteTabs(this);>x</a> \",encoded: false,content:\"#=Name#\" }]);'>#= Name#</span>"
//template: "<span onclick='tabStrip.append([{text: \"#= Name#\", contentUrl: \"/apps/dataelement?uid=#= Uid#\"}]);'>#= Name#</span>"
},
When I click the name value in data grid it opens a new tab strip and populates a default content.
Now I have another function which gets the UID as input and returns back the detail corresponding to a particular name in data grid, I am trying to populate the result from that function inside this tab but I am not sure on how to do that... Can someone please help....
Thanks,
BB