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

I have the following ComboBox on my page but although the Text value is persisted, the selected value is not. Therefore my grid loads all items regardless of what is in the ComboBox when the page loads. What do I need to change?

<telerik:RadComboBox runat="server" DataSourceID="AllWaterSystems" DataTextField="displayName" DataValueField="pwsid" EmptyMessage="Water System" Filter="Contains" Width="350" ID="SelectedWaterSystem" EnableItemCaching="True" OnClientDropDownOpening="RefreshHeight">
    <HeaderTemplate>
        <ul>
            <li class="col1">PWSID</li>
            <li class="col2">Name</li>
        </ul>
    </HeaderTemplate>
    <ItemTemplate>
        <ul>
            <li class="col1"><%# DataBinder.Eval(Container.DataItem, "PWSID") %></li>
            <li class="col2"><%# DataBinder.Eval(Container.DataItem, "Name") %></li>
        </ul>
    </ItemTemplate>
</telerik:RadComboBox>

 

Vessy
Telerik team
 answered on 02 Mar 2018
1 answer
52 views

I have very specific needs as far as how the calendar is formatted.  I need it to look like the attached file.  I can get the 2-month view working but not the text of the months.  I appreciate any help anyone can give.  Here's what I have so far:

 

<telerik:RadCalendar RenderMode="Lightweight" ID="radCalendar" runat="server" EnableNavigation="true" ShowRowHeaders="false" EnableMonthYearFastNavigation="true" ShowFastNavigationButtons="false" ShowNavigationButtons="false" MultiViewColumns="2" MultiViewRows="1" EnableMultiSelect="true">
<ClientEvents OnDateClick="radCalendar_OnDateClick" />

</telerik:RadCalendar>

Jutas Arthasarnprasit
Top achievements
Rank 1
 answered on 02 Mar 2018
2 answers
535 views

Hi,

 

I downloaded 2018Q1 yesterday. In previous downloads the Live demo folder contained all the demo's.

Now I do not find that folder anymore, why is that?

It was very usefull to test and copy code.

 

Regards, Marc

ghd258 ghd258
Top achievements
Rank 1
 answered on 02 Mar 2018
0 answers
87 views

Hi,

 

I'd like to copy down values from one row to multiple rows like I can do in Excel or in SharePoint Quick Edit. How can I achieve this in BulkEdit with RadGrid?

 

Thanks for any advice

Peter

Peter
Top achievements
Rank 1
 asked on 01 Mar 2018
1 answer
121 views

Hi

In page load i'm creating the funnel chart like this and populating the data

 funnelSeries = FunnelChart1.PlotArea.Series[0] as FunnelSeries;
            Decimal u = 0;
            Decimal v = 0;
            Decimal w = 0;
            Decimal x = 0;
            FunnelSeriesItem item1 = new FunnelSeriesItem(u, "name1", Color.Red);
            FunnelSeriesItem item2 = new FunnelSeriesItem(v, "name2", Color.Blue);
            FunnelSeriesItem item3 = new FunnelSeriesItem(w, "name3", Color.Green);
            FunnelSeriesItem item4 = new FunnelSeriesItem(x, "name4", Color.Black);
            funnelSeries.SeriesItems.Add(item1);
            funnelSeries.SeriesItems.Add(item2);
            funnelSeries.SeriesItems.Add(item3);
            funnelSeries.SeriesItems.Add(item4);

I could see the funnel chart in UI but when I try to set the funnelSeries.SeriesItems[1].Y value from one of the button click event code. the chart is not updating the set value. please help!

 

Rumen
Telerik team
 answered on 01 Mar 2018
1 answer
102 views

Hi, I've recently been interested in the track changes feature for the radeditor. Everything has been working well, but the tracking changes doesn't seem to support table deletion. Usually when text is deleted it is wrapped in a <del> tag, but whenever I delete any aspect of a table it is not, and thus the changes cannot be tracked. I was wondering if this feature isn't included, or if I am doing something wrong.

 

I also have problems deleting tables which I have loaded from external html. The text can be deleted but not the table as a whole. The only way to remove the table is to delete rows and columns individually.

 

 

Rumen
Telerik team
 answered on 01 Mar 2018
1 answer
266 views

As few browsers stop supporting Windows Media Player plugin, I m trying to convert Object/Embed Tags to Video Tags using "OnClientPasteHtml" method as mentioned here

https://www.telerik.com/support/kb/aspnet-ajax/editor/details/inserting-a-video-tag-via-the-media-manager-instead-of-the-default-object-embed-ones

but currently File extensions allowed by media manager are
*.wma, *.wmv, *.avi, *.wav, *.mpeg, *.mpg, *.mpe, *.mp3, *.m3u, *.mid, *.midi, *.snd, *.mkv

There is no *.mp4

How can i change this validation to accept other file types supported by HTML5 Video tag

 

Please suggest

 

Rumen
Telerik team
 answered on 01 Mar 2018
1 answer
142 views

The http://converter.telerik.com not work to converter from C# to VB.NET

 

 

Rumen
Telerik team
 answered on 01 Mar 2018
1 answer
123 views

RadGrid1 + SqlDataSource1(SQL NOT USED parameter) = WORK

GridView1 (Standart) + SqlDataSource1(SQL USED parameter) = WORK

RadGrid1 + SqlDataSource1 (SQL USED parameter) = NOT WORK

Problem: Only telerik not updated schema and not set data in Grid(empty). Standalone GridView - worked. It is bub or please give informations what is user parameters in mySQL query.

Manual dont worked (https://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/columns/column-types/defaultcs.aspx)

 

RadGrid1

<telerik:RadGrid ID="RadGrid1" runat="server" Culture="ru-RU" DataSourceID="SqlDataSource1" AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True" OnDeleteCommand="RadGrid1_DeleteCommand" OnEditCommand="RadGrid1_EditCommand" AllowAutomaticDeletes="True" Skin="Glow" CellSpacing="-1" GridLines="Both" Width="603px">
<GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings>
        <ExportSettings>
            <Pdf PageWidth="">
            </Pdf>
        </ExportSettings>
        <MasterTableView AutoGenerateColumns="False" DataKeyNames="id" DataSourceID="SqlDataSource1">
            <Columns>
                <telerik:GridBoundColumn DataField="id" DataType="System.Int32" FilterControlAltText="Filter id column" HeaderText="id" ReadOnly="True" SortExpression="id" UniqueName="id">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="title" FilterControlAltText="Filter title column" HeaderText="title" SortExpression="title" UniqueName="title">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="type" FilterControlAltText="Filter type column" HeaderText="type" SortExpression="type" UniqueName="type">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="city" FilterControlAltText="Filter city column" HeaderText="city" SortExpression="city" UniqueName="city">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="address" FilterControlAltText="Filter address column" HeaderText="address" SortExpression="address" UniqueName="address">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="area" DataType="System.Single" FilterControlAltText="Filter area column" HeaderText="area" SortExpression="area" UniqueName="area">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="comment" FilterControlAltText="Filter comment column" HeaderText="comment" SortExpression="comment" UniqueName="comment">
                </telerik:GridBoundColumn>
            </Columns>
            <GroupByExpressions>
                <telerik:GridGroupByExpression>
                </telerik:GridGroupByExpression>
            </GroupByExpressions>
        </MasterTableView>
</telerik:RadGrid>

 

SqlDataSource1

<asp:SqlDataSource ID="SqlDataSource1"
    runat="server"
    ConnectionString="<%$ ConnectionStrings:xesko %>"
      ProviderName="<%$ ConnectionStrings:xesko.ProviderName %>"
    SelectCommand="SELECT id, title, type, city, address, area, comment FROM building WHERE (id IN (SELECT id_building FROM user_atributes WHERE (id_user = @id_user)))"
 
  <SelectParameters>
    <asp:Parameter Name="id_user" Type="Int32" DefaultValue="100" />
  </SelectParameters>
 
</asp:SqlDataSource>

 

GridView1 - standart - work

<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1"></asp:GridView>

 

USED:

Visual Studio 2017 (15.5.7)

MySQL server 5.6

MySQL for Visual Studio 2.0.5 (MySQL Database (MySQL Data Provider))

MySQL Connector/ NET  6.9.9

Telerik ASP.NET Ajax 2017.2.503

 

 

andalit
Top achievements
Rank 1
 answered on 01 Mar 2018
0 answers
60 views

Hi,

I've an aspx page that contains a telerik grid, after an upgrade of Telerik.Web.UI.dll I started to get the following exception
"chrome.app is not available" I don't know if this related to inner call by the grid or other component.

the upgrade were from version 2013.1.* to 2014.3.1209.45.

How can I fix the issue ?

majdee
Top achievements
Rank 1
 asked on 01 Mar 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?