This question is locked. New answers and comments are not allowed.
Hi,
I'm using this control inside a partial view that gets updated when a button gets clicked and have run into an issue when rendering the whole partial view via ajax. It will work fine when the page loads for the first time until I click the button and the view gets updated. I don't have the same problem when returning json as opposed to the whole view.
Here is the code:
Any help is appreciated.
Thanks
I'm using this control inside a partial view that gets updated when a button gets clicked and have run into an issue when rendering the whole partial view via ajax. It will work fine when the page loads for the first time until I click the button and the view gets updated. I don't have the same problem when returning json as opposed to the whole view.
Here is the code:
.... ajax call
document.getElementById('configuration').innerHTML = $('#configuration', response).html();
....
<%=Html.Telerik().IntegerTextBox().Name("TimeInterval") .MinValue(0) .MaxValue(1000).Value(Model.EmailInterval)%>
....
$("#TimeInterval").data("tTextBox").value(); Any help is appreciated.
Thanks