6 Answers, 1 is accepted
0
Hello Kula,
Can you clarify a bit what do you mean with your question? Kendo UI Mobile works fine in iOS 6 on the devices we test with.
Regards,
Kamen Bundev
the Telerik team
Can you clarify a bit what do you mean with your question? Kendo UI Mobile works fine in iOS 6 on the devices we test with.
Regards,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Kula
Top achievements
Rank 1
answered on 05 Mar 2013, 01:20 PM
Hello Kamen,
Thanks for your reply,
I will update the version and come back later..
Thanks for your reply,
I will update the version and come back later..
0

Kula
Top achievements
Rank 1
answered on 08 Mar 2013, 07:37 AM
Navigation is working only for cells in kendogrid.. Is there any way to navigate entire row.......Pls help me.....
0
Hi Kula,
I don't understand the question. Can you clarify it and provide a sample page where I can reproduce the issue and help you fix it?
Regards,
Kamen Bundev
the Telerik team
I don't understand the question. Can you clarify it and provide a sample page where I can reproduce the issue and help you fix it?
Regards,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Kula
Top achievements
Rank 1
answered on 08 Mar 2013, 01:55 PM
This is my Code ....when i press down arrow of my keyboard,it selects only the cells..but not rows..How to select the rows..
$(
"#grdMain"
).kendoGrid({
selectable:
true
,
scrollable:
true
,
navigatable:
true
,
dataSource: {
pageSize:20,
transport: {
read:{
url:
"../providers/customer/customer_select_all.php"
,
type:
"GET"
,
},
},
schema: {
data:
"data"
,
total:
function
(result) {
result = result.data || result;
return
result.length;
},
},
},
change:ViewDetail,
pageable: {
refresh:
true
,
pageSizes:
true
,
},
sortable:
true
,
rowTemplate: kendo.template($(
"#rowTemplate"
).html()),
});
0
Hello Kula,
The current keyboard support implementation in Kendo UI Grid works like this - you change the current cell and when you press space - the selection is applied. Check our Grid Selection demo for more information.
Kind regards,
Kamen Bundev
the Telerik team
The current keyboard support implementation in Kendo UI Grid works like this - you change the current cell and when you press space - the selection is applied. Check our Grid Selection demo for more information.
Kind regards,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!