




Hello,
I'm using Telerik UI for ASP.NET AJAX build 2017.1.118.40 with the Metro theme.
My application has many RadGrid instances, and for some reason none of them are showing column checkbox selections correctly in their header context menus.
I've attached a screenshot to demonstrate. You'll see that the columns that should be checked (they are currently visible in the grid) are shown using a light blue color - but they aren't actually checked. If I explicitly toggle the checkbox (by clicking it), then it appears as expected, but only until the next postback.
I thought I might have some styles conflicting with this theme, but I've removed all my application's CSS (as a test), and nothing changed.
Has anyone else encountered this? Any thoughts or feedback would be greatly appreciated.
- Mark R.

Hi,
My RadComboBox in aspx:
<telerik:RadAutoCompleteBox runat="server" id="RadAutoCompleteBox" onclientrequesting="requesting"> </telerik:RadAutoCompleteBox>
I have array (50 items) in Javascript. Details item:
- Id- this element set to value selected item;
- Text ( Account Number + Description) - this element set to selection list in RadAutoCompleteBox;
- Account Number - this element set to input;
I would like update RadAutoCompleteBox in function requesting in Javasctipt.
function requesting(sender, eventArgs) {
var value = sender.get_text();
for (var j = 0; j < myArray.length; j++) {
if (myArray[j][1].indexOf(value) > -1) {
????????????;
}}};
Hello everyone,
I want to change my date input format in client side using Javascript.
I saw there is a get_dateInput but I don't know how to use it to set the RadMonthYearPicker format to "MMMM".
Do anyone have a simple example?
Thank you in advance.
Hello everyone,
I want to change my date input format in client side using Javascript.
I saw there is a get_dateInput but I don't know how to use it to set the RadMonthYearPicker format to "MMMM".
Do anyone have a simple example?
Thank you in advance.