Hello
i am developing a asp.net web forms application using twitter bootstrap (latest version) an telerik asp.net ajax controls. I would like to mention the above problem:
Inside a bootstrap modal window i have a RadDropDownTree with EnableFiltering. I noticed that, although i enter some text in filter input, the text is not shown at input's value.
Another RadDropDownTree placed inside the web form page as well as a RadTextBox also inside the modal works fine!
Does anyone have the same problem?
The above snippet shows my web form content. The RadDropDownTree1 control which is outside the modal works fine! The problem is about RadDropDownTree2
I have version v4.0.30319 ( 2013.2.611.45) of telerik controls
Do you have any ideas?
i am developing a asp.net web forms application using twitter bootstrap (latest version) an telerik asp.net ajax controls. I would like to mention the above problem:
Inside a bootstrap modal window i have a RadDropDownTree with EnableFiltering. I noticed that, although i enter some text in filter input, the text is not shown at input's value.
Another RadDropDownTree placed inside the web form page as well as a RadTextBox also inside the modal works fine!
Does anyone have the same problem?
The above snippet shows my web form content. The RadDropDownTree1 control which is outside the modal works fine! The problem is about RadDropDownTree2
01.<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">02. 03. <telerik:RadDropDownTree ID="RadDropDownTree1"04. FilterSettings-EmptyMessage="i can text here" 05. runat="server" EnableFiltering="True">06. </telerik:RadDropDownTree> 07. 08. <!-- Button trigger modal -->09. <a class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">10. Launch demo modal11. </a>12. 13. <!-- Modal -->14. <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">15. <div class="modal-dialog">16. <div class="modal-content">17. <div class="modal-header">18. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>19. <h4 class="modal-title" id="myModalLabel">Modal title</h4>20. </div>21. <div class="modal-body">22. 23. <telerik:RadTextBox runat="server"></telerik:RadTextBox>24. 25. <telerik:RadDropDownTree ID="RadDropDownTree2"26. runat="server" EnableFiltering="True" FilterSettings-EmptyMessage="i can't text anything here" >27. 28. </telerik:RadDropDownTree>29. </div>30. <div class="modal-footer">31. <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>32. <button type="button" class="btn btn-primary">Save changes</button>33. </div>34. </div>35. </div>36. </div>37. 38.</asp:Content>I have version v4.0.30319 ( 2013.2.611.45) of telerik controls
Do you have any ideas?