New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
How do I position the items in the Command menu on the right side of the grid?
Updated over 6 months ago
Description
When the CommandItem menu is enabled, by default the buttons are positioned on the left side, and the Refresh button - on the right side.
Solution
Apply CSS styles in order to position the items on the right side as follows:
CSS
<style>
div.RadGrid .rgCommandCellLeft {
float: right; /* Position the buttons on the right side */
}
div.RadGrid .rgCommandCellRight {
float: left; /* Position the Refresh button on the left side */
}
</style>