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

How to set EmptyMessage of Combo through Client Side of ComboBox

1 Answer 68 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Chandan Kumar
Top achievements
Rank 1
Chandan Kumar asked on 18 Oct 2010, 12:28 PM
Dear Sir

How to set EmptyMessage of Combo through Client Side of a ComboBox.

Please Help Me

Thanks
Chandan kumar

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 18 Oct 2010, 12:39 PM
Hi Chandan Kumar,


Use the following code for setting the EmptyMessage from client side.

JavaScript:
function setEmptyMessage() {
    var input = $find('<%= RadTextBox1.ClientID %>');
    input.set_emptyMessage("Search...");
    input.updateDisplayValue();
}


-Shinu.
Tags
ComboBox
Asked by
Chandan Kumar
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or