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

Hide the Transfer to Left button

This article will show how to hide the transfer to left and transfer All to left buttons when the AllowTransfer=True.

SOLUTION

Add the following CSS rules to the

section of your page:
<style type="text/css">
    div.RadListBox .rlbTransferTo,
    div.RadListBox .rlbTransferToDisabled,
    div.RadListBox .rlbTransferAllToDisabled,
    div.RadListBox .rlbTransferAllTo
    {
       display: none;
    }
</style>        

Here is the screenshot of the result - you can transfer items only to the right RadListBox:

Hide Transfer Left Button

In this article