New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

How do I position the items in the Command menu on the right side of the grid?

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:

<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>
In this article