Please add a Server Side event for OnBlur or OnClose for the RadComboBox. The Telerik support team using the "TextChanged" event. However, this does not work for my purpose and here is why: Mainly because it appears that an event fires immediately after each check/uncheck. I have been using a dropdowncheckbox control by another vendor in multiple projects over the past 3 years (many, many instances) which fires when you click anywhere out side the dropdown. This is perfect because many of these dropdowns supply parameters to SSRS reports that open on the webpage and users of these webpages have requested that after selecting (checking) which values they want, they want the reports to run automatically and don't want to click a "Run reports" button. *** How could I possibly determine when the user is done checking/unchecking items using the "TextChanged" event? With an OnBlur or OnClose event it's a No-Brainer. Event --> Do Processing... Our company made a decision to standardize our tool set and picked Telerik as that toolset vendor. The lack of having an event that fires similar to the control that I have been using in the past will require unnecessary code modification. In summary, if there was a similar event I could simply rename each instance of the C# event handlers (methods) across all projects and be done. Find --> Replace. For the one (1) instance of the RadComboBox that I have tried I was able to create a work-around by placing code in the IsPostback of Page_Load and iterate through the combobox, getting the checked values and then whatever processing needs to be done. This will not work but for very few of the pages in the projects mentioned above. Thanks!
The input box (TextBox) portion of the Rad Combo box could benefit from the ability to customize/format the data presented within said element. Having the ability to toggle it to a multi-line TextBox would aid in this ability as well. Having the ability to implement custom html in the form of a template, perhaps a SelectionBoxTemplate, would open the control of the display to be completely customizable. Please consider this enhancement in a future release. Thanks...
Using the client-side requestItems method of a RadComboBox to fire the refresh of it's items(with a call to clearCache before to ensure that the refresh is performed), doesn't always perform the async callback request, sometimes resulting in the "Loading" text being added at the top of the combo's items drop-down and staying there (as the callback to the server is never fired, so it's result never received). After quite a bit of trials, I finally managed to figure out that the issue arise when there is an async postback in progress on the page (to refresh an update panel) when requestItems is called. Stepping through the requestItems call with IE F12 tools, I found that this is due to the fact that the Sys.WebForms.PageRequestManager do not perform callbacks if there is an async postback in progress. I think that the RadComboBox should detect that situation and wait until the end of the async postback to fire it's requestItems callback, otherwise the combo get stuck in the "loading in progress" state, waiting for the end of the callback that will never happens as the PageRequestManager did not start it. Additionally, in F12 Network tab, I can see that there is no request performed for the callback to request the items of the combo-box. I reproduce the issue with the following steps: 1- Have a page with a RadComboBox, a ScriptManager with partial rendering enabled and an UpdatePanel. 2- In the browser, trigger the async postback to refresh the UpdatePanel 3- From JavaScript, while the async postback is in progress, call the requestItems method of the RadComboBox 4- Open the drop-down of the combo, and you can see the "Loading" text at the top, with the initial list of items. And it stays like this until another call is made to requestItems when there is no async post-back in progress which will actually perform the callback.
the dorpdown area doesn't support html encoded data.
please add native columns support for radcombobox
<Columns>
<Column DataField="CategoryName" />
<Column DataField="Description" />
</Columns>
best regards
Why don't you include a boolean property to show selected image inside input ? This is already a code library to do it : http://www.telerik.com/support/code-library/show-the-selected-item-image-in-input
MarkFirstMatch and Filter functionalities are not supported when checkboxes are enabled, as specified in the Checkbox Support help article. If you remove these two functionalities, the Check All checkbox works as expected. I want to have on the MarkFirstMatch and the filter on and the "all" to be shown. see ticket number 942452