Hi, i have a problem with a RadSearchBox in IE11.
My SearchBox works when i launch the page for the first time, but in my page i use a modal window, wich is simply a Div. When this modal window is open, i put the Div which contains the SearchBox (and other elements) in "visibility: hidden;".
And when i close my modal window, i put it back to "visibility: visible", and from that moment it is impossible to write in the SearchBox.
I tried to add javascript to solve the problem, but nothing worked. Does someone have an idea?
1.var input = $j("#<%=SearchBox.ClientID%> input[type=text]");2.input.focus(function () {3. this.value = "";4. this.contenteditable = true;5.})