or
?(
{
"name": "tempLocSearch",
"columns": [
"UniqueId",
"Parent",
"DisplayName",
"Type",
"X",
"Y",
"Rank",
"Name",
"Zoom"],
"data": [
[
"010023831054", "17800386", "<
b
>Pathfinder</
b
> House, St Marys Street, Huntingdon, PE29 3TN", "Property", "523999", "271531", "22%", "Pathfinder House, St Marys Street, Huntingdon, PE29 3TN", "100"
]
,
[
"010090390725", "17800386", "Customer Service Centre, <
b
>Pathfinder</
b
> House, St Marys Street, Huntingdon, PE29 3TN", "Property", "524029", "271563", "15%", "Customer Service Centre, Pathfinder House, St Marys Street, Huntingdon, PE29 3TN", "100"
]
],
"total": 0
}
);
<div id="tabstrip">
<ul>
<li>First Tab</li>
<li>Some Html code that may change dynamically, but without ajax call or local source binding</li>
</ul>
<div id="first-content">First Tab Content</div>
<div id="second-content">Second Tab Content</div>
</div>
Before using Kendo, i was able to access to content tab using $('#first-content')
But now, with Kendo, the id always change. So is there a suimple way to access it or must i code a
function to do that ?
Thanks
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="KendoApp.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
title
=
"Kendo UI"
></
title
>
<
link
href
=
"styles/kendo.common.min.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
link
href
=
"styles/kendo.kendo.min.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
script
src
=
"js/kendo.all.min.js"
type
=
"text/javascript"
></
script
>
<
script
src
=
"js/jquery-1.6.2.min.js"
type
=
"text/javascript"
></
script
>
</
head
>
<
body
>
<
script
type
=
"text/javascript"
>
$(document).ready(function () {
var data = [
"12 Angry Men",
"Il buono, il brutto, il cattivo.",
"Inception",
"One Flew Over the Cuckoo's Nest",
"Pulp Fiction",
"Schindler's List",
"The Dark Knight",
"The Godfather",
"The Godfather: Part II",
"The Shawshank Redemption"
];
//create AutoComplete UI component
$("#input").kendoAutoComplete({
dataSource: data,
separator: ", "
});
});
</
script
>
<
input
id
=
"autocomplete"
/>
</
body
>
</
html
>
<
tr
><
td
data-name
=
"somthing"
>ipso</
td
></
tr
>
<
tr
><
td
>ipso</
td
></
tr
>