Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
75 views
Is there a RadEditor version for NET 1.1  that works on IE8 and IE11?
Danail Vasilev
Telerik team
 answered on 28 Aug 2015
1 answer
100 views

Hello,

 I am working on a concept much like in your demo here (http://demos.telerik.com/aspnet-ajax/listview/examples/itemdragdrop/defaultcs.aspx), however, the difference is that instead of Link Buttons for the genre, I have RadListView instead so it looks something like this.

 

<RadListView ID='tracksListView'></RadListView> /* List of all tracks */
  
<Repeater ID='genreRepeater'>    /* List of all Genre */
   <ItemTemplate>
      <RadListView ID='genreListView' OnItemDrop="RadListView_ItemDrop">
          <ItemTemplate> /*List of tracks per Genre */ </ItemTemplate>
      </RadListView>
   </ItemTemplate>
</Repeater>

 I've created the server side event for the Item Drop of RadListView however, when I'm ​dragging an item to another RadListView (either tracksListView or genreListView), the e.DestinationHtml on the ItemDrop event shows the ID of the origin.

 

For example,

 

The repeater generated 3 genre (pop, love, classic) and when I drag a track from pop to love, the e.DestinationHtml returns the ID of the radlistview of pop.

 

Please help, thank you.

      

Konstantin Dikov
Telerik team
 answered on 27 Aug 2015
0 answers
75 views

before all hi and as i wrote on title VSB don't save my project simply. to be more specify it tells:

"missing data

default  DLL does not exist in:

<program> \ Data \ AveStyle.msstyles"

 

but if the name <program> is just the path where is situated the program into "programms (x86)" folder; then that file exist

 

thank you in advantage

TERA
Top achievements
Rank 1
 asked on 27 Aug 2015
1 answer
60 views

TileEventArgs doesnt exist?

 

from the doco;

Event Data

sender Telerik.Web.UI.RadBaseTile
The RadBaseTile instance raised the event.

args Telerik.Web.UI.TileEventArgs
The arguments of the Clicked event.

 

But this class doesnt exist in Telerik.Web.UI (v 2015.2.623.45)

Vessy
Telerik team
 answered on 27 Aug 2015
1 answer
163 views

Hi, i want to ask why OnEntryAdded on RadDropDownTree is not working. I have a RadDropDownTree and RadHTMLChart

The scenario is when i pick one of the nodes, get the value, set it on RadHTMLChart, and render it using AJAX

This is piece of the code:

<telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RDDTreeTeam">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="ProgressChart" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1" Skin="Silk"></telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
<div>
    <table width="100%" border="1">
        <tr>
            <td rowspan="2" valign="top">
                <telerik:RadDropDownTree ID="RDDTreeTeam" runat="server" Width="250" EnableFiltering="true"
                    DataFieldID="ID" DataFieldParentID="ParentID" DataTextField="Text" DataValueField="Value"
                    Skin="Silk" OnEntryAdded="RDDTreeTeam_EntryAdded" OnClientDropDownClosing="OnClientDropDownClosing">
                    <DropDownSettings Height="200" OpenDropDownOnLoad="true" CloseDropDownOnSelection="false"/>
                    <ButtonSettings ShowClear="true" />
                    <FilterSettings Highlight="Matches" EmptyMessage="Type here" />
                </telerik:RadDropDownTree>
            </td>
            <td class="style1" align="center">
                <telerik:RadHtmlChart runat="server" ID="ProgessChart" Width="300px"
                    Height="300px" Transitions="true" Skin="Silk">
                    <ChartTitle Text="Progress Sales">
                        <Appearance Align="Center" Position="Top">
                        </Appearance>
                    </ChartTitle>
                    <Legend>
                        <Appearance Position="Bottom" Visible="true">
                        </Appearance>
                    </Legend>
                    <PlotArea>
                        <Series>
                            <telerik:PieSeries StartAngle="90" DataFieldY="ProgressAmount" NameField="ProgressType">
                                <LabelsAppearance Position="OutsideEnd" DataFormatString="{0}">
                                </LabelsAppearance>
                                <TooltipsAppearance Color="White" DataFormatString="{0}"></TooltipsAppearance>
                            </telerik:PieSeries>
                        </Series>
                    </PlotArea>
                </telerik:RadHtmlChart>
            </td>
        </tr>
    </table>
</div>
</telerik:RadAjaxPanel>

protected void RDDTreeTeam_EntryAdded(object sender, DropDownTreeEntryEventArgs e)
{
    if (e.Entry.Value == "1")
    {
        DataTable dtPie = new DataTable();
        dtPie.Columns.Add(new DataColumn("ProgressAmount"));
        dtPie.Columns.Add(new DataColumn("ProgressType"));
        dtPie.Columns.Add(new DataColumn("Color"));
        dtPie.Columns.Add(new DataColumn("IsExploded"));
 
        dtPie.Rows.Add(new object[] { 803, "On Progress", "Red", false });
        dtPie.Rows.Add(new object[] { 464, "Close Selling", "Green", false });
        dtPie.Rows.Add(new object[] { 505, "Rejected", "Blue", false });
        dtPie.Rows.Add(new object[] { 201, "Not Yet Follow Up", "Yellow", false });
 
        ProgessChart.DataSource = dtPie;
        ProgessChart.DataBind();
    }
    else if (e.Entry.Value == "2")
    {
        DataTable dtPie = new DataTable();
        dtPie.Columns.Add(new DataColumn("ProgressAmount"));
        dtPie.Columns.Add(new DataColumn("ProgressType"));
        dtPie.Columns.Add(new DataColumn("Color"));
        dtPie.Columns.Add(new DataColumn("IsExploded"));
 
        dtPie.Rows.Add(new object[] { 203, "On Progress", "Red", false });
        dtPie.Rows.Add(new object[] { 464, "Close Selling", "Green", false });
        dtPie.Rows.Add(new object[] { 805, "Rejected", "Blue", false });
        dtPie.Rows.Add(new object[] { 401, "Not Yet Follow Up", "Yellow", false });
 
        ProgessChart.DataSource = dtPie;
        ProgessChart.DataBind();
    }
}

 

But, when i click on the node, there's nothing happened. 

Please help me.

Thank you in advance

 

 

Ivan Danchev
Telerik team
 answered on 27 Aug 2015
1 answer
68 views

Hi,

 

In the following code, the default sorting is by "clientId". How do I make the  sorting default by "Name"?

 

 

<telerik:RadGrid ID="RadGrid1" runat="server" AllowMultiRowSelection="true" CssClass="RadGrid RadGrid_Silk" OnItemCommand="itemClickRadGrid" Visible="true" OnItemDataBound="RadGrid1_ItemDataBound"                 AllowSorting="True" AllowPaging="True" PageSize="100" AutoGenerateColumns="false" AllowFilteringByColumn="false" OnNeedDataSource="RadGrid1_NeedDataSource1">                 <MasterTableView GroupLoadMode="Client" TableLayout="Fixed" EnableGroupsExpandAll="false" DataKeyNames="FilingIdentifier" ShowHeader="false">                     <GroupByExpressions>                         <telerik:GridGroupByExpression>                             <SelectFields>                                 <telerik:GridGroupByField HeaderValueSeparator=" " HeaderText=" " FieldName="Name" SortOrder="Ascending"></telerik:GridGroupByField>                             </SelectFields>                             <GroupByFields>                                 <telerik:GridGroupByField FieldName="clientId"></telerik:GridGroupByField>                             </GroupByFields>                         </telerik:GridGroupByExpression>                     </GroupByExpressions>                     <Columns>                                                 <telerik:GridBoundColumn DataField="TaxYear" HeaderText="Year" UniqueName="TaxYear"></telerik:GridBoundColumn>                         <telerik:GridBoundColumn DataField="PreviousFiling" Visible="false" UniqueName="PreviousFiling"></telerik:GridBoundColumn>                         <telerik:GridBoundColumn DataField="ForwardFiling" Visible="false" UniqueName="ForwardFiling"></telerik:GridBoundColumn>                         <telerik:GridButtonColumn Text="Launch" UniqueName="lauchrow" CommandName="launchRow" ButtonType="PushButton" HeaderStyle-Width="70px"></telerik:GridButtonColumn>                         <telerik:GridButtonColumn Text="Add tax year" UniqueName="addTaxYear" CommandName="cf" ButtonType="PushButton" HeaderStyle-Width="110px"></telerik:GridButtonColumn>                     </Columns>                 </MasterTableView>                 <GroupingSettings />                 <ClientSettings AllowDragToGroup="false">                     <Selecting AllowRowSelect="true" />                 </ClientSettings>             </telerik:RadGrid>

 

 

Thanks

Pavlina
Telerik team
 answered on 27 Aug 2015
1 answer
344 views

I'm binding a country list data to radcombobox with multiple selection option. Its working fine, but if i want to search the items by typing the text. I'm facing some problem. 

 Say if i search for "India", i will type "indi" in textfield of a radcombobox it will show "india" so that i will check it.

It is working as of the situation now, but if want to select one more country by typing the text like for "United states", 

Now the issue is " I need to clear the existing text "indi" in the field by giving backspace" to search for a new one which is "united states", but  in combobox it remains checked. so there is no problem with the logic. But for a user will be like he is unchecking the existing country for selecting the new one.

 

It would be better to have a separator for each selected item which is checked. 

 like this..

If i type "indi" it will showup "india" then after i checked it, if i want to search a new one.

i can do this way.. India, "countryname to search for" , so that i can search new items by giving the comma 

 

Ivan Danchev
Telerik team
 answered on 27 Aug 2015
1 answer
42 views

Is it possible to show  specific days - not a day range;

 For instance show Monday, Tuesday and Friday?

Ivan Danchev
Telerik team
 answered on 27 Aug 2015
4 answers
1.1K+ views
Hi,

I have installed RAD controls Q2 2008 release suit.How can i know version number of the ontrols. I saw so many version listed out like 2008.2.826,2008.2.723 etc. Actually i want to raise a support ticket with appropriate version.

Please help me to know my controls's version number.

Thanks in advance.

Nataraj
Ivan Danchev
Telerik team
 answered on 27 Aug 2015
10 answers
113 views

Hi

When I try to drag a node in a diagram, the whole diagram is being dragged.

I am using Google chrome version 41.0.2272.118 m.

This does not happen in IE10 nor in FF.

Vessy
Telerik team
 answered on 27 Aug 2015
Narrow your results
Selected tags
Tags
+124 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?