1. You can't use an ID for the Menus, unless you make sure the ID is different for each row.
2. If the Menu will have expandable sub items, then Grid scrolling should be disabled, and the following CSS rule should be added:
#grid td
{
overflow: visible;
}
3. If you want to prevent the Menu from expanding horizontally to 100% of the cell width, then use:
#grid .k-menu
{
display: inline-block;
border-right-width: 0;
}
Regards,
Dimo
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!