or
Please help with as i am facing some issues while using KendoUI for iPad, problems defined below:
.k-splitbar-horizontal .k-icon {
MARGIN-TOP: -10px; WIDTH: 10px; POSITION: absolute; TOP: 50%; HEIGHT: 50px ;background-color: red
}
Could you please help us to remove the images displaying the splitter.
Thanking in advance;
Regards
Manash Dutta
var users = [
{ userName : "Jeremy.Miller@radolo.com",
firstName: "Jeremy",
lastName: "Miller",
userRole: "Administrator" ,
userID:"1" },
{ userName : "Josh.Grippo@radolo.com",
firstName: "Josh",
lastName: "Grippo",
userRole: "Administrator",
userID:"2" },
{ userName : "John.Huisman@radolo.com",
firstName: "John",
lastName: "Huisman",
userRole: "Administrator",
userID:"3" }
];
$("#editUsers").kendoGrid({
dataSource: {
data: users,
schema: {
model: {
fields: {
username: { type: "string" },
firstName: { type: "string" },
lastName: { type: "string" },
userRole: { type: "string" },
userID: { type: "number" },
resetPassword: { type: "string" },
editUser: { type: "string" },
}
}
},
pageSize: 10
},
height: 280,
scrollable: {
virtual: true
},
columns: [
{ title: "Username", field:"userName"},
{ title: "First Name", field:"firstName"},
{ title: "Last Name", field:"lastName"},
{ title: "User Role", field:"userRole"},
{ title: "Reset Password",
template: "<
a
href
=
'reset-password.aspx?userID=#= userID #'
>Reset Password</
a
>"},
{ title: "Edit User",
template: "<
button
class
=
'popup-window icon edit'
title
=
'edit this user'
>Edit This User</
button
> " },
{ command: "destroy" }
],
editable: true
});
$(".popup-window").click(function () {
var myWin = $(".modal-window");
if (!myWin.data("kendoWindow")) {
// window not yet initialized
myWin.kendoWindow({
draggable: true,
modal: true,
resizable: false,
title: 'Edit User Information',
content: 'edit-user.aspx',
});
} else {
// reopening window
myWin.data("kendoWindow")
.content("Loading...") // add loading message
.refresh(href) // request the URL via AJAX
.open(); // open the window
}
return false;
});
<
ul
>
<
li
class
=
"k-state-active"
>Page Contains Splitter</
li
>
<
li
>Normal</
li
>
</
ul
>
<
div
>
<
div
class
=
"hsplitter"
>
<
div
>Content 1</
div
>
<
div
>Content 2</
div
>
</
div
>
</
div
>
<
div
>
This is normal page
</
div
>
<script>
$(
function
() {
$(
"#grid"
).kendoGrid({
dataSource:
{
transport:
{
read:
"mod/basket_list.php"
},
schema:
{
data:
"data"
},
pageSize: 8
},
columns: [
{
field :
'name'
,
title:
'NAME'
},
{
field :
'price'
,
title :
'THE PRICE'
}
],
scrollable:
false
,
sortable:
true
,
pageable:
true
,
navigatable:
false
,
groupable:
true
});
});
</script>