Hello,
I had button list above grid something like this :
<
ul
style
=
"list-style: none; -webkit-padding-start: 0px;"
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button"
id
=
"Started"
onclick
=
"Started();"
>Started</
a
>
</
li
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button standardButton"
id
=
"Finished"
onclick
=
"Finish();"
>Finish</
a
>
</
li
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button standardButton"
id
=
"Progress"
onclick
=
"Progress();"
>Progress</
a
>
</
li
>
</
ul
>
I want to add these button in context - menu grid. While I add abovle list inside ul id = "context-menu" , and the script below. context-menu is display in the grid but the button list disappear. I want to show both button lists above grid and also in context-menu. How can I prevent to disappearing button list? thanks in advance.
<
ul
id
=
"context-menu"
style
=
"list-style: none; -webkit-padding-start: 0px;"
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button"
id
=
"Started"
onclick
=
"Started();"
>Started</
a
>
</
li
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button standardButton"
id
=
"Finished"
onclick
=
"Finish();"
>Finish</
a
>
</
li
>
<
li
style
=
"display: inline-block;"
>
<
a
class
=
"btn btn-default k-button standardButton"
id
=
"Progress"
onclick
=
"Progress();"
>Progress</
a
>
</
li
>
</
ul
>
<
script
>
$(document).ready(function() {
$("#context-menu").kendoContextMenu();
});
</
script
>