This is a migrated thread and some comments may be shown as answers.

Listbox backword button

2 Answers 56 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Anjali
Top achievements
Rank 1
Anjali asked on 23 Jun 2011, 11:27 PM
Hi All,

 Is it possible to remove the listbox backword button. i want the button that move from left list box to right listbox, but I don't want the button that moves from right listbox to left. Is it possible to remove that particular button. Also, once the user moves the item from left listbox to right listbox, I don't want the items to disappaer from the left listbox.

Can I acheive this.

Please let me know

Any help will be appreciated.

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 24 Jun 2011, 07:18 AM
Hello Anjali,

Try the following client side code to hide one of the transfer button.
Javascript:
function pageLoad()
 {
       var $ = $telerik.$;
       var listBox = $find("RadListBox1");
       $(".rlbTransferToDisabled", listBox.get_element()).css("display", "none");
   }

Thanks,
Shinu.
0
Anjali
Top achievements
Rank 1
answered on 24 Jun 2011, 04:09 PM
Thanks Shinu!
Tags
ListBox
Asked by
Anjali
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Anjali
Top achievements
Rank 1
Share this question
or