Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
145 views
Hi, we have a RadRotator in a DIV.
We have also jQuery code that do "slideUp" and "slideDown" of this DIV.

if I include <script src="js/jquery-1.9.1.min.js" /> RadRotator don't work fine, if I omit <script src="js/jquery-1.9.1.min.js" />, "slideUp" and "slideDown" don't work.

I have read this article

http://www.telerik.com/help/aspnet-ajax/introduction-using-jquery.html

but no solution suggested work fine

How is possible solve the problem?
Slav
Telerik team
 answered on 21 May 2013
1 answer
104 views
Hi,

I have enabled paging in radgrid. There is a combobox to select the number of records to display. My client does not want to show such an option. How do you hide this control. Got an idea. Please share.

thank you
Allen
Princy
Top achievements
Rank 2
 answered on 21 May 2013
5 answers
183 views
Greetings,

I am new to Telerik, AJAX and C#. So please bear with me. I will explain my situation, then post my code below.

I need for a popup box to appear using jquery. This box has to appear when the user clicks the button to add an item to the cart.

I have a Master page with a RadMenu on it. I have also added some temporary css formatting for the popup box.

I have a child page called Catalog. Catalog has the user controls "AddToCart" and "CartFlyout" on them. Also, Catalog has a placeholder for the "CartFlyout" popup. I have a custom event handler on Catalog that runs a function called "Header_AddedToCart." When this function fires, it loads the "Flyout" control with data, and then adds it to the placeholder.

The "CartFlyout" control has a function called "Show_Product_Flyout" that registers the jquery script for sliding the popup down.
This works fine. When I add an item to the cart, the flyout appears.

When I tried to "ajaxify" this set up i get a problem. When I click a button to add an item to the cart, the "AddToCart" updates asynchronously. That's great but now the flyout doesn't appear at all. I debugged the code and the code to execute the flyout is running; but it isn't actually appearing on the page.

There are many moving parts to this system so I cannot post all of the controls needed to run a true test. I will post as much as I can, but I have ripped out much of unimportant stuff for the sake of brevity:

CATALOG.ASPX:
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPages/default.master" Inherits="E.Web.UI.Catalog" CodeFile="~/Catalog.aspx.cs" Title="Catalog"%>

<%@ MasterType VirtualPath="~/MasterPages/default.master" %>

<%--Since we're building these controls dynamically, we have to reference them here for some damn reason. --%>
<%@ Register TagPrefix="E" TagName="AddToCart" Src="~/UserControls/AddToCart.ascx"  %>
<%@ Register TagPrefix="E" TagName="CartFlyout" Src="~/UserControls/CartFlyout.ascx"  %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>


<asp:Content ID="CenterContent" runat="server" ContentPlaceHolderID="CenterContent">
    <telerik:RadAjaxManager ID="AjaxManager1" runat="server"/>
    
    <div><asp:PlaceHolder ID="phCartFlyout" runat="server"/></div>    
    
    <EbscoWebControl:SeparatedRepeater ID="rptCategories" runat="server" RecordsToSeparate="3" OnItemCreated="rptCategories_ItemCreated">
        <HeaderTemplate>
            <div class="categories">
                <table cellpadding="0" cellspacing="0" border="0" class="layout">
                    <tr>
        </HeaderTemplate>
            <ItemTemplate>
                <td id="tdCat" runat="server" class="category">
                    <h2><asp:HyperLink ID="hlCategoryLink" runat="server" NavigateUrl='<%# "/catalog.aspx?catid=" + DataBinder.Eval(Container.DataItem, "CategoryName").ToString().ToLower() %>' Text='<%#DataBinder.Eval(Container.DataItem, "DisplayNameOfCategory")%>' /></h2>
                    <asp:Image ID="imgCategoryImage" runat="server" ImageUrl='<%# ImagePath + DataBinder.Eval( Container.DataItem, "DefaultImage" ).ToString().ToLower() + "?w=100" %>'/>                    
                    <div class="description"><asp:Label ID="CategoryDescription" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "ShortDescription")%>' /></div>
                    <p><asp:HyperLink ID="hlCategoryLinkMore" runat="server" NavigateUrl='<%# "/catalog.aspx?catid=" + DataBinder.Eval(Container.DataItem, "CategoryName").ToString().ToLower()%>' >View <%#DataBinder.Eval(Container.DataItem, "DisplayName").ToString() %> &#155;&#155;</asp:HyperLink></p>
                </td>
            </ItemTemplate>

        <SeparatorTemplate>
                    </tr>
                    <tr>
        </SeparatorTemplate>
        
        <FooterTemplate>
                    </tr>
                </table>
            </div>
        </FooterTemplate>
    </EbscoWebControl:SeparatedRepeater>
    
    <div class="controlsContainer"></div>
    

<div class="products">
    <asp:PlaceHolder ID="phProducts" runat="server" />
</div>
</asp:Content>

<asp:Content ID="RightContent" runat="server" ContentPlaceHolderId="RightContent" Visible="false" />

CATALOG CODE-BEHIND:
protected void Page_Load( object sender, EventArgs e )
        {
             Page.ItemAdded += new EventHandler(Header_AddedToCart); //custom event handler
        }

public void Header_AddedToCart(object sender, EventArgs e)
        {
            CartChangedEventArgs ce = (CartChangedEventArgs)e;
            CartFlyout CartFlyout = (CartFlyout)Page.LoadControl("~/UserControls/CartFlyout.ascx");
            CartFlyout.Show_Product_Flyout(ce.ProductId); //function on control user control CartFlyout.
            phCartFlyout.Controls.Add(CartFlyout);
          }

CARTFLYOUT.ASCX:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="~/UserControls/CartFlyout.ascx.cs" Inherits="Ebsco.Web.UI.UserControls.CartFlyout" %>

<asp:Panel ID="panel2" runat="server">
<div class="box">
    <div id="contactFormContainer">
        <div id="contactForm">
        <div id="closeflyoutLink"><a style="float:right; font: arial normal x-small; color: Blue; text-align:right; background-color: White;" onclick="$(document).ready(function(){$('#contactForm').slideUp('slow');});">Close X</a></div>
            <fieldset>
                <label for="FlyoutTitle" style="background-color:Green;    color: Black; font-family: Arial; font-size:medium; font-weight:bold; text-align:center;">My Account</label>
                <img id="imgProductFlyout" src="" alt="No Image Available" runat="server" style="float:left; border: solid thin black;" />
                <asp:label runat="server" id="lblProductName" style="float:left; color: Black; font-family: Arial; font-size:medium; text-align:left;"/> <br /><br />
                <asp:label id="lblLineItemCount" runat="server" style="color: Black; font-family: Arial; font-size:medium; text-align:center;" />
                <asp:label id="lblPrice" runat="server" style="color: Black; font-family: Arial; font-size:medium; text-align:center; font-weight:bold;" /><br /><br />
                <asp:label id="lblQtyInCart" runat="server" style="color: Black; font-family: Arial; font-size:medium; text-align:center;" />
                <asp:label id="lblSubtotal" runat="server" style="color: Black; font-family: Arial; font-size:medium; text-align:center; font-weight:bold;" /><br /><br />
                <div style="width:80px; height:20px; background-color:Red; border: solid thin blue;">
                    <a id="hlCheckOut" href="#Nogo" runat="server" style=" font-family:Arial; font-size:medium; font-weight:bold; color:White; text-decoration:none;">Checkout</a>
                </div>
           </fieldset>
        </div>
    </div>
</div>
</asp:Panel>




CODE-BEHIND for CartFlyout:
protected void Page_Load(object sender, EventArgs e)
        {
            
        }

        public void Show_Product_Flyout(string strProductId)
        {
            if (null != strProductId)
            {
                _Product = ((Esws.Web.UI.Page)Page).CurrentProductCatalog.GetProduct(strProductId);
                ProductName = _Product.Name;
                String csname1 = "PopupScript";
                Type cstype = this.GetType();
                ClientScriptManager cs = Page.ClientScript;
                if (!cs.IsStartupScriptRegistered(cstype, csname1))
                {
                    string cstext1 = @"$(document).ready(
                    function()
                    {
                        if ($('#contactForm').is(':hidden'))
                        {
                            $('#contactForm').slideDown('slow');
                            $('#contactForm').animate({opacity: 1.0}, 2000);
                            $('#contactForm').slideUp('slow');                    
                        }
                        else
                        {
                            $('#contactForm').slideUp('slow');
                        }
                    });";
                    cs.RegisterStartupScript(cstype, csname1, cstext1, true);
                    string strQuantity = ((Esws.Web.UI.Page)Page).ShoppingCart.LineItemQuantity(strProductId.ToString()).ToString();
                    LineItemCount = "qty: " + strQuantity;
                    DataView drv = _Product.GetProductProperties().DefaultView;
                    DataRow dr = drv.Table.Rows[0];
                    string strPrice = "";
                    strPrice = dr["cy_list_price"].ToString();
                    ProductPrice = strPrice;
                    int nCartQty = ((Esws.Web.UI.Page)Page).ShoppingCart.LineItemCount();
                    CartQuantity = nCartQty + "item(s) in shopping cart.";
                    string strSubTotal = ((Esws.Web.UI.Page)Page).ShoppingCart.SubTotal.ToString();
                    ProductSubtotal = strSubTotal;
                    imgProductFlyout.Src = ConfigurationManager.AppSettings["CatalogImageServer"] + dr["DefaultImage"].ToString() + "?w=" + _ImageWidth;
                    ProductImageHyperlink = ConfigurationManager.AppSettings["SitePath"] + "/viewcart.aspx/";
                }
            }
        }
    }

ADDTOCART.ASPX:
<%@ Control Language="c#" AutoEventWireup="true" Inherits="Ebsco.Web.UI.UserControls.AddToCart" CodeFile="~/UserControls/AddToCart.ascx.cs" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

<asp:Panel ID="panel1" runat="server">

<div class="purchase">
    <div class="price">
        <asp:Label ID="lblSalePrice" runat="server" Text="Sale Price:" />
        <asp:Label ID="lblSalePriceValue" runat="server" Text="" /><br />
        <asp:Label ID="lblPrice" runat="server" Text="Regular Price:" />
        <asp:Label ID="lblPriceValue" runat="server" Text="" /><br />
        <asp:Label ID="lblYouSave" runat="server" Text="You Save:" />
        <asp:Label ID="lblYouSaveValue" runat="server" Text="" />
    </div>
    
    <div runat="server" class="number quantity" visible="<%# ShowQuantity %>">
        <asp:Label ID="lblQuantity" runat="server" Text="Qty." />
        <asp:TextBox ID="txtQuantity" runat="server" Text="1" MaxLength="3" />
        
        <strong style="color:#CC0000;">
            <asp:Label ID="lblNotAvailableForSale" runat="server">
                Contact Us at <br /><%= ConfigurationManager.AppSettings[ "SiteContactPhone" ].ToString() %>
            </asp:Label>
        </strong>        
    </div>
    
    <div class="button">
        <div class="calltoaction">
            <asp:LinkButton ID="lbAddToCart" runat="server" Text="Add to Order" CommandName="AddToCart" OnCommand="lbAddToCart_Command" />
        </div>
    </div>
</div>

</asp:Panel>
<telerik:RadAjaxManagerProxy ID="AjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="lbAddToCart">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="lbAddToCart" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>

CODE-BEHIND for ADDTOCART:

protected void Page_Load( object sender, System.EventArgs e )
        {
        }
        protected override void OnPreRender( EventArgs e )
        {
            base.OnPreRender( e );

            if( null != _ProductId )
            {
                _Product =  Page.CurrentProductCatalog.GetProduct( _ProductId );

                if( _Product[ "AvailableForSale" ].ToString().ToUpper().Equals( "YES" ) )
                {
                    lbAddToCart.Visible = true;
                    lblQuantity.Visible = _ShowQuantity;
                    txtQuantity.Visible = _ShowQuantity;

                    lblNotAvailableForSale.Visible = false;
                }
                else
                {
                    lbAddToCart.Visible = false;
                    lblQuantity.Visible = false;
                    txtQuantity.Visible = false;

                    lblNotAvailableForSale.Visible = true;
                }
            }
        }

        protected void lbAddToCart_Command( object sender, CommandEventArgs e )
        {
            int Qty;

            if( !Int32.TryParse( txtQuantity.Text, out Qty ) || Int32.Parse( txtQuantity.Text ) < 1 )
                txtQuantity.Text = "1";

            // Add the selected item
            Page .ShoppingCart.AddItem( Page .CurrentCatalogName, lbAddToCart.CommandArgument.ToString(), null, Convert.ToInt32( txtQuantity.Text ), null );

            // Reset Quantity
            QuantityValue = "1";

            // Bubble the event up, should anyone care
            if( null != CartChangedEvent )
                CartChangedEvent( this, e );

Page.ShoppingCart.LineItems()[ lbAddToCart.CommandArgument.ToString() ] ) );

            // Save the ProductId housekeeping
            ProductId = lbAddToCart.CommandArgument.ToString();
        }
    }






Andrey
Telerik team
 answered on 21 May 2013
1 answer
134 views
I am new to RadEditor and for the most part, love it; however, I must require that the user enters information and I cannot get the required field validators or custom validators to work with it. In fact, when form validation fails, the content area of the editor disappears and the menu bar is relocated.

What can I do to make sure that the field passes form validation (just needs to have text) and doesn't disappear (i.e. css gets dropped)? Setting the content type doesn't make any difference.

BTW, I know that it doesn't truly disappear but the styling still gets lost or messed up.

Thanks.
Nikolay
Telerik team
 answered on 21 May 2013
1 answer
57 views
Hi
     How shall I change the font color for no records to display . Please share if anybody has a solution for this.

thanks
Savyo
Princy
Top achievements
Rank 2
 answered on 21 May 2013
2 answers
114 views
Hi,

Is there a way to access te EditForm just by a reference to the grid? I'm trying to manipulate a certain control of the template, without having access to the GridCommandEventArgs of the ItemCommand event (where e.Item is the PopupForm),  when the Popup is shown (so I know the control is accessible)

I've looked into the grid.MasterTableView.Items[0].EditFormItem, but can't find any reference.

Any idea?

Thanks!

--
Frank
Francois
Top achievements
Rank 1
 answered on 21 May 2013
2 answers
143 views
Hi,

I have a requirement to bind the JSON response to RAD Scheduler and insert, update and delete the appointments using the JSON request. Please suggest the possible way to do it.

Regards
Kuldeep
Genady Sergeev
Telerik team
 answered on 21 May 2013
1 answer
134 views
Question: We are currently adding 100's of nodes in a tree view control using javascirpt function. We are getting json objects in java script method from WCF service which we then add to tree view, The problem is that this whole process is taking huge amount of time. What could be an efficient way to perform this operation...???
Genady Sergeev
Telerik team
 answered on 21 May 2013
1 answer
45 views
Hi,

Is there any way to use the external style sheet while exporting rad grid to PDF or Excel file, if yes, please let me know how this can be implemented.
Kostadin
Telerik team
 answered on 21 May 2013
4 answers
208 views
Hi,  Presently I'm using the rad grid and facing a problem with PDF download where data is not getting displayed in the downloaded PDF file.  I investigated the cause and found that <table> tag is creating the issue. Since I'm using the <table> tag inside the <ItemTemplate> and while downloading data in PDF, data is not getting displayed. Not sure why rad grid is behaving in this way.
I'm attaching the demo code for your look, please go through it and let me know the solution to proceed further.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PDFXLDownload.aspx.cs"
    Inherits="PDFXLDownload.PDFXLDownload" %>
  
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <link href="Styles/Site.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnableScriptCombine="false">
    </telerik:RadScriptManager>
    <telerik:RadGrid runat="server" ID="myGrid" EnableEmbeddedSkins="false" GridLines="None"
        ShowFooter="false" AllowFilteringByColumn="false" AllowSorting="false" ShowGroupPanel="false"
        AllowPaging="false" PageSize="10">
        <mastertableview autogeneratecolumns="False" commanditemdisplay="Bottom">
            <Columns>
                <telerik:GridTemplateColumn>                   
                    <HeaderTemplate>
                        <asp:Label ID="labelName" runat="server" Text="Name"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <asp:Label ID="labelName" runat="server" Text='<%# Bind("Name") %>'></asp:Label>  
                        <asp:Label ID="labelSName" runat="server" Text='<%# Bind("SName") %>'></asp:Label>  
                        <asp:Label ID="labelStatus" runat="server" CssClass="FundStatus" Text='<%# Bind("Status") %>'></asp:Label>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="labelSymbol" runat="server" Text="Symbol"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <table>
                            <tr>
                                <td>
                                    <asp:Label ID="labelSymbol" runat="server" Text='<%# Bind("Symbol") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="labelMER" runat="server" Text="Rating"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <table>
                            <tr>
                                <td>
                                    <asp:Label ID="labelMER" runat="server" Text='<%# Bind("MSN") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="lblNER" runat="server" Text="NER"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                     <table>
                            <tr>
                                <td>
                                    <asp:Label ID="lblNER" runat="server" Text='<%# Bind("NER") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                         
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="lblGER" runat="server" Text="GER"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <table>
                            <tr>
                                <td>
                                    <asp:Label ID="lblGER" runat="server" Text='<%# Bind("GER") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="lbl3Y" runat="server" Text="3Y"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <table>
                            <tr>
                                <td>
                                    <asp:Label ID="lbl3Y" runat="server" Text='<%# Bind("ThreeYear") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn>
                    <HeaderStyle CssClass="GridHeaderItem" />
                    <ItemStyle CssClass="GridItem" />
                    <HeaderTemplate>
                        <asp:Label ID="lbl5Y" runat="server" Text="5Y"></asp:Label>
                    </HeaderTemplate>
                    <ItemTemplate>
                      <table>
                            <tr>
                                <td>
                                    <asp:Label ID="lbl5Y" runat="server" Text='<%# Bind("FiveYear") %>'></asp:Label>
                                </td>
                            </tr>
                        </table>
                         
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
            </Columns>           
        </mastertableview>
    </telerik:RadGrid>
    <asp:Button ID="DownloadPDFButton" runat="server" OnClick="DownloadPDFButton_Click"
        Text="Download PDF" Width="184px" />
    </form>
</body>
</html>

using

 

 

System;

 

using

 

 

System.Collections.Generic;

 

using

 

 

System.Web.UI.WebControls;

 

using

 

 

Telerik.Web.UI;

 

namespace

 

 

PDFXLDownload

 

{

 

 

public partial class PDFXLDownload : System.Web.UI.Page

 

{

#region

 

 

Event Handler

 

 

 

protected void Page_Load(object sender, EventArgs e)

 

{

myGrid.DataSource =

 

MyTestData.GetMyTestDataData();

 

myGrid.DataBind();

}

 

 

protected void DownloadPDFButton_Click(object sender, EventArgs e)

 

{

myGrid.ExportSettings.OpenInNewWindow =

 

true;

 

myGrid.ExportSettings.FileName =

 

"PDFExportDemo";

 

myGrid.ExportSettings.ExportOnlyData =

 

false;

 

 

 

//Landscape

 

myGrid.ExportSettings.Pdf.PageHeight =

 

Unit.Parse("10in");

 

myGrid.ExportSettings.Pdf.PageWidth =

 

Unit.Parse("16in");

 

 

 

//// 1/2 inch margins

 

myGrid.ExportSettings.Pdf.PageLeftMargin =

 

Unit.Parse("1in");

 

myGrid.ExportSettings.Pdf.PageRightMargin =

 

Unit.Parse("1in");

 

myGrid.ExportSettings.Pdf.PageTopMargin =

 

Unit.Parse("1in");

 

myGrid.ExportSettings.Pdf.PageBottomMargin =

 

Unit.Parse("1in");

 

myGrid.ExportSettings.FileName =

 

"IP";

 

myGrid.MasterTableView.ExportToPdf();

}

#endregion

#region

 

 

Test Data

 

 

 

public class MyTestData

 

{

 

 

public string Name { get; set; }

 

 

 

public string SName { get; set; }

 

 

 

public string Status { get; set; }

 

 

 

public string Symbol { get; set; }

 

 

 

public string MSN { get; set; }

 

 

 

public string NER { get; set; }

 

 

 

public string GER { get; set; }

 

 

 

public string OneQ { get; set; }

 

 

 

public string YTD { get; set; }

 

 

 

public string OneYear { get; set; }

 

 

 

public string ThreeYear { get; set; }

 

 

 

public string FiveYear { get; set; }

 

 

 

public string TenYear { get; set; }

 

 

 

public string Risk { get; set; }

 

 

 

public static List<MyTestData> GetMyTestDataData()

 

{

 

 

List<MyTestData> myDummyData = new List<MyTestData>

 

{

 

 

new MyTestData

 

{

Name =

 

"SRW1", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW2", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW3", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW4", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW5", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW6", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW7", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW8", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW9", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

 

 

new MyTestData

 

{

Name =

 

"SRW10", SName="S2", Status="R",

 

Symbol =

 

"N/A", MSN="N/A", NER="0.46", GER="0.46",

 

OneYear=

 

"00.00%", ThreeYear="00.00%", FiveYear="00.00%"

 

 

},

};

 

 

return myDummyData;

 

}

}

#endregion

}

}

Kostadin
Telerik team
 answered on 21 May 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?