Skip to content

Instantly share code, notes, and snippets.

@06b
Created October 18, 2012 16:46
Show Gist options
  • Save 06b/3913162 to your computer and use it in GitHub Desktop.
Save 06b/3913162 to your computer and use it in GitHub Desktop.
The Kendo Menu does not present the .Direction() method, in order to change the direction of the menu use this script
<script>
$(document).ready(function () {
var original = $("#kMenu").clone(true);
var menu = $("#kMenu"),
clone = original.clone(true);
menu.replaceWith(clone);
var initMenu = function () {
$("#kMenu").kendoMenu({
direction: "top"
});
};
initMenu();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment