Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
150 views

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

Peter Milchev
Telerik team
 answered on 28 Mar 2022
0 answers
226 views

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

Joe
Top achievements
Rank 1
 asked on 24 Mar 2022
1 answer
226 views

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 ?

 

Doncho
Telerik team
 answered on 24 Mar 2022
3 answers
248 views

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>
yuv
Top achievements
Rank 1
Iron
 answered on 18 Mar 2022
0 answers
141 views

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
        Dim row As GridViewRow = GVSearch.SelectedRow

        Case_ID.Text = row.Cells(1).Text
        Numero_Record_PRM.Text = row.Cells(1).Text
        If row.Cells(1).Text.Trim <> "" Then

            Numero_Record_PRM.Text = row.Cells(2).Text.Trim
            Patient_Name.Text = row.Cells(6).Text.Trim
            Provider_Name.Text = row.Cells(8).Text.Trim
Brandon
Top achievements
Rank 1
 asked on 18 Mar 2022
2 answers
314 views
I have a grid that is in Batch edit mode. It has two GridDropdownColumn's. When I select the first GridDropdownColumn, I want the value to help load the second GridDropdownColumn. I assume that is somehow connecting to the SelectedIndexChanged event. How do I go about doing that.
Attila Antal
Telerik team
 answered on 18 Mar 2022
3 answers
475 views

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.

Doncho
Telerik team
 answered on 18 Mar 2022
1 answer
127 views

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

Rumen
Telerik team
 answered on 18 Mar 2022
2 answers
247 views

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?

 

Rumen
Telerik team
 answered on 18 Mar 2022
2 answers
322 views

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:

  1. Clicked on tool bar like Document,Image,Bold,Italic,Table all other tools in RadEditor ,

Observed Output: Cannot read properties of undefined (reading 'selection') in Script Resource.axd

 

Can any one help me out to resolve the issue?

Rumen
Telerik team
 answered on 18 Mar 2022
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?