or
{
"people"
: [{
"name"
:
"John Smith"
,
"phone"
:
"(519) 420-2391"
,
"address"
: {
"street"
:
"123 Main St"
,
"city"
:
"Someplace"
}
}]
}
new
kendo.data.DataSource({
data: people,
schema: {
type:
'json'
,
data:
'people'
,
model: {
fields: {
name:
'name'
,
phone:
'phone'
,
address_street:
'address/street'
,
address_city:
'address/city'
}
}
}
})
1.
tabStrip.append({
2.
text:
"new Tab"
3.
});
01.
...
02.
tabStrip.append({
03.
text:
"new Tab"
04.
});
05.
var
$tabContent = $(
"<p>"
,
06.
{
07.
html: $(
"<div>"
,
08.
{
09.
text:
"Lorem Ipsum"
10.
})
11.
});
12.
$(
'.t-content:last'
).html($tabContent);
1.
tabStrip.append({
2.
text:
"new Tab"
,
3.
content :
"Lorem Ipsum"
4.
// or <span>some HTML as string</span>
5.
// or $jqueryElement created via $()
6.
// or "some-link.to/a-remote-page.html"
7.
});
Hello.
Congrats for this amazing framework to all webdev..
I was searching in the demo some features like forms (contact, validations fields, etc), but i cant see it.
is there some forms html5 based to start with kendo ui ?
thanks a lot!