New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Hide the Transfer to Left button
Updated on Aug 24, 2026
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:
XML
<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:
