Is thre a way to set the search box text from the client side?
3 Answers, 1 is accepted
0
Genady Sergeev
Telerik team
answered on 01 Feb 2013, 03:53 PM
Hi,
Yes, you can use the client-side set_emptyMessage property. Here is example:
function pageLoad() {
$find("SearchBox1").set_emptyMessage("Foo");
}
Greetings,
Genady Sergeev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
"set_emptyMessage" method, doesn't do what I am trying to achive.
I'd like to have something like set_text or set_value method to emulate/initiate user input.
I see that there is an "input" control inside the search box. That's where I want to access.