Hi,
01. Assign the values to MultiSelect control as follows.
// Assign the Values array to MultiSelect
kendoMultiSelect.value(allValues);
After assigning values, its scroll to the last item as below picture.
I need to navigate it to the first item in the list.
02. When I try to expand the multiselect control first time it get close and second click it expanded. I have set AutoClose=False.
Can anyone help me resolve these two issues.
Thank You,
Regards,
Chandi

Hello,
I have multi select combo box which shows countries. I want to show states of countries in that same drop down only if that country is selected. See example below. Only if USA is selected in the multi select drop down, then only show states under USA as multi select drop down. Likewise for other countries in the drop down too. Is this something achievable?
USA
USA-Arizona
USA-California
USA-Texas
MEXICO
Mexico-Tijuana
Mexico-Hidalfgo
RadEditor - Rich text editor does not support hierarchical nested numbering or bullets and also dont have built-in option for multi level list
I tried but not able to achieve this requirement.
Can you please tell me if telerik rolling out this feature or if it is already implemented then how to use it ?

Hi,
I have a page with an HTML chart that is dynamically created from the code behind.
The user selects some options and the column chart get generated, user change filter options, the chart should change the results accordinly.
The issue is, when the chart is created from the code behind, and e.g 3 bars are created which that represents three categories (series). When I change the filter option that should result in plotting one column bar, the chart still displays three bars representing the old filter option and the new one.
How do I reset the chart?
I have attached two images, P1 represent the first chart that was created with three series, P2 was created after P1 which suppose to have one series, but it shows the previous two series with the new series.
RadHtmlChart chart = new RadHtmlChart();
chart.PlotArea.Series.Clear();
for (int j = 0; j < rec.Count; j++)
{
ColumnSeries series = new ColumnSeries();
series.Name = rec[j].answer;
series.SeriesItems.Add(new CategorySeriesItem(rec[j].total));
series.LabelsAppearance.ClientTemplate = rec[j].answer + ": (" + rec[j].total + ")";
chart.PlotArea.Series.Add(series);
}
area_results.Controls.Add(chart); <div id="area_results" runat="server" style="padding-left: 20px; width: 100%">
</div>hi, im wondering if someone can help me out, im making a form where you can add and edit. the idea is to use the grid to find the desired record to edit and select it on the same form where you create forms in the first place. i can pass the values to the textboxes just fine but no the boolean values for the check boxes. anybody got any idea on how i can do this?
ill post down here what i did for the textboxes.
Panel1.Visible = True
Hello,
We are using you RadDropDownTree component.
We create it dynamically with this code :
RadDropDownTree field = new RadDropDownTree();
field.Enabled = !(param.State == ParameterStateEnum.HasOutstandingDependencies);
field.CheckBoxes = DropDownTreeCheckBoxes.SingleCheck;
field.DefaultMessage = "Sélectionner parmi ...";
field.ID = param.Name;
field.Width = Unit.Pixel(250);
field.EnableFiltering = true;
field.FilterSettings.Highlight = DropDownTreeHighlight.Matches;
field.FilterSettings.EmptyMessage = "Taper une recherche...";
field.FilterSettings.MinFilterLength = 3;
field.DropDownSettings.AutoWidth = DropDownTreeAutoWidth.Enabled;
field.ButtonSettings.ShowCheckAll = true;
field.ButtonSettings.ShowClear = true;
if (param.ValidValues != null)
{
foreach (ValidValue val in param.ValidValues)
{
RadTreeNode item = new RadTreeNode();
item.Value = val.Value;
item.Text = val.Label;
item.Checked = defaultValues.ContainsKey(val.Value);
field.EmbeddedTree.Nodes.Add(item);
}
}The problem is that when we checked an item by code, the item is not displayed in the entries display zone.
If we check them while running with the mouse, it is well displayed.
Can you please help me with this problem ?
Thank you.

When I am selecting a value from drop-down and then clicking on web page randomly then page is getting postback and I am not getting value of selection. I am using Telerik.Web.UI RadComboBox for dropdown.
I am using Telerik.Web.UI version 2016.1.113.45

When I try to run an upgrade on my ASP.NET AJAX project in Visual Studio 2013, the only version showing up is the current version that the project is already using "2021.3.914.45" I'm trying to upgrade to UI for ASP.NET AJAX R1 2022 SP1 (version 2022.1.302). How do I get the newer versions to show up as a selection to upgrade to?
Hi Team,
Currently testing with Telerik R32021 - 2021.3.914.45 and .NetFramework-4.8
Browser - Edge, Chrome
We have migrated changes from RadEditor(Classic) to RadEditor (Asp.NetAjax) .
Steps to Replicate:
Observed Output: Cannot read properties of undefined (reading 'selection') in Script Resource.axd
Can any one help me out to resolve the issue?
