Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
90 views
I am using a WebUserControl mode for popup editing.  I want to include some javascript in the WebUserControl, however, it seems like the included script is never evaluated.
I have tried wrapping my client script block inside a radcodeblock and that did not help either.

Any ideas on how to get around this or is this a limitation of the popup.  Please advise.

Thanks.
anand
Top achievements
Rank 1
 answered on 11 Dec 2008
10 answers
530 views
I am using prometheus.

Everywhere I look in the documentation and on the web are references to a "RadControls" folder. WHERE IS IT?

How can I copy it to the root of my site when it does not exist -- I've looked in the installation directory under program files, I've looked in all the various .zip distributions? WHERE IS IT?

All the resources, scripts etc, are being served up by the axd. Nowhere does a folder organized like RadControls/Toolbar/Skins/Office2003/img/ exist.

-Al

Jim
Top achievements
Rank 1
 answered on 11 Dec 2008
4 answers
462 views
I want to open a Radwindow in some event. I need to open window programmitically....how could i do this?
For an example i`v taken a button and in its click event i want to do it....please help!
Thank you Telerik
fduverseau
Top achievements
Rank 1
 answered on 11 Dec 2008
12 answers
185 views

I'm using the scheduler and binding it to a datasource on the server-side like so: 

protected void Page_Load(object sender, EventArgs e)  
    {  
          
        if (!IsPostBack)  
        {  
            CTS.ChangeControl.DAL.cChangeControlDetail cb = new CTS.ChangeControl.DAL.cChangeControlDetail();  
            List<CTS.ChangeControl.DAL.cChangeControlsForGrid> lst = cb.GetChangeControlsForGrid();  
            this.ChangeCalendar.DataSource = lst;  
            this.ChangeCalendar.DataBind();  
        }  
    } 

This works fine, but when I hover my cursor over one of the following fields in the header: Day, Week, Month, Timeline, <, >, the contents of the schedular goes blank.  I have view-state enabled and am using ASP.NET in VS2008 SP1 with the 2008 Q3 ASP.NET AJAX telerik controls.  Clicking one of those controls will bring back the view since there is a post-back but the same behavior occurs again even after post-back.

Any thoughts anybody?

Thanks.
craig
Top achievements
Rank 1
 answered on 11 Dec 2008
3 answers
200 views

The images are not being displayed in the grid, such as the Next & Previous button images and the filter image. Same issue with all skins. DataSourceID is set to an object datasource. How do I go about getting the images to show up? They do show up in Visual Studio on the design tab but not when the site is running. Instead of the images there are just some little ugly boxes with borders around them that can be clicked like buttons. It works if i explicitly set the URL to the images but then I can't update the skin without modifying code. It should get the paths based on the skin but for some reason it doesn't work. The grid is in an ASCX page inside a RadPanelBar.

Here is the code:

<telerik:RadGrid ID="rgAlternativeWords"   
    AutoGenerateColumns="False"   
    AllowPaging="True"   
    AllowSorting="True" 
    AllowFilteringByColumn="True"   
    runat="server"   
    DataSourceID="odsAlternativeWords"   
    GridLines="None">  
 
    <HeaderContextMenu EnableTheming="True">  
    <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
    </HeaderContextMenu> 
 
    <PagerStyle NextPageText="Next" PrevPageText="Prev" Mode="NextPrevNumericAndAdvanced" /> 
 
    <MasterTableView DataSourceID="odsAlternativeWords" DataKeyNames="RecordID">  
 
        <RowIndicatorColumn> 
        <HeaderStyle Width="20px"></HeaderStyle> 
        </RowIndicatorColumn> 
 
        <ExpandCollapseColumn> 
        <HeaderStyle Width="20px"></HeaderStyle> 
        </ExpandCollapseColumn> 
 
        <Columns> 
            <telerik:GridBoundColumn DataField="BaseWord" HeaderText="Original Word"   
                ReadOnly="True" SortExpression="BaseWord" UniqueName="colBaseWord">  
                <ItemStyle Width="125px" HorizontalAlign="Left" /> 
            </telerik:GridBoundColumn> 
            <telerik:GridBoundColumn DataField="AlternativeWords"   
                HeaderText="Alternate Words" SortExpression="AlternativeWords"   
                UniqueName="colAlternateWords" AllowFiltering="false">  
                <ItemStyle Width="350px" HorizontalAlign="Left" /> 
            </telerik:GridBoundColumn> 
        </Columns> 
          
    </MasterTableView> 
 
    <ClientSettings AllowColumnsReorder="True" 
        ReorderColumnsOnClient="True">  
    </ClientSettings> 
 
    <FilterMenu EnableTheming="True" > 
        <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
    </FilterMenu> 
 
</telerik:RadGrid> 
 

Thanks!

jfkrueger
Top achievements
Rank 1
 answered on 11 Dec 2008
2 answers
143 views
When I am building a bar chart, the columns with the same value as the max always touch the top of the plot area.

I have tried setting the margin and the padding, but I cannot get extra "room" above the columns - is this possible?
CEsquibel
Top achievements
Rank 1
 answered on 11 Dec 2008
2 answers
131 views
I have this code in my RadGrid1_PreRender to display the Insert row when the page is displayed.  However, after I've clicked on the "Insert" on the row, the Insert row disappears.  I have to have the IsPostBack check because I have a dropdown that has a postpack event.

        protected void RadGrid1_PreRender(object sender, EventArgs e)
        {
            if (!this.IsPostBack)
            {
                // always display the insert link
                this.RadGrid1.MasterTableView.IsItemInserted = true;
                this.RadGrid1.MasterTableView.Rebind();
            }
        }

I've put the same code in the RadGrid1_InsertCommand and in the RadGrid1_ItemInserted events, but the Insert row does not reappear.

Anyone have any ideas how to keep the Insert row always displayed even after an Insert?

Thanks.
Kevin Schlegelmilch
Top achievements
Rank 1
 answered on 11 Dec 2008
1 answer
174 views
I'm populating my tree view nodes using code behind. I'm applying back ground color to the child nodes. Each chidl node is of different size. I want all the child nodes to be of the same size (like a table row). How do I set the width of the node? I tried to set the node width property, but it doesn't work.

Here is my code. In the following code, child node's text "hello" and "Hi there how are you and how is life" are of two different sizes. I would like to set the node width, so that both the nodes appear to look like they are in a table. I tried the text in table, still didn't work. Any ideas?

protected void st_NodeExpand(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
        {
                     rdr = ......
                    while (rdr.Read())
                    {

                        RadTreeNode node = new RadTreeNode();
                        if (rdr["Sex"].ToString() == "Male")
                        {
                            node.BackColor = System.Drawing.ColorTranslator.FromHtml("#dfe7fa");
                            node.Text = "<font color='#00685c'><a  href='" + rdr["PortraidID"] + "'>" + "Hello"+"</a></font>";
                        }
                        else
                        {
                            node.Text = "<font color='#00685c'><a  href='" + rdr["PortraidID"] + "'>" + "Hi there how are you and how is life"+"</a></font>";                          
                            node.BackColor = System.Drawing.ColorTranslator.FromHtml("#fdebfb");
                        }
                        node.Value = rdr["PortraidID"].ToString();
                        e.Node.Nodes.Add(node);
                        e.Node.Expanded = true;
                    }

rdr = new Select("PortraidID,BirthDate,FirstName,LastName,FatherFN,MotherFN,Sex")
                                                .From("BirthDetails")
                                                .Where("Month(BirthDate)").IsEqualTo(Convert.ToInt32(month))
                                                .And("Year(BirthDate)").IsEqualTo(Convert.ToInt32(my[1]))
                                                .OrderAsc("BirthDate")
                                                .ExecuteReader();
                    while (rdr.Read())
                    {

                        RadTreeNode node = new RadTreeNode();



                        if (rdr["Sex"].ToString() == "Male")
                        {
                            node.BackColor = System.Drawing.ColorTranslator.FromHtml("#dfe7fa");
                            node.Text = "<font color='#00685c'><a  href='BabyDetail.aspx?id=" + rdr["PortraidID"] + "'>" + Convert.ToDateTime(rdr["BirthDate"].ToString()).ToShortDateString() + " " + rdr["FirstName"] + " " + rdr["LastName"] + "- Son of " + rdr["FatherFN"] + " & " + rdr["MotherFN"] + "</a></font>";
                        }
                        else
                        {
                            node.Text = "<font color='#00685c'><a  href='BabyDetail.aspx?id=" + rdr["PortraidID"] + "'>" + Convert.ToDateTime(rdr["BirthDate"].ToString()).ToShortDateString() + " " + rdr["FirstName"] + " " + rdr["LastName"] + "- Daughter of " + rdr["FatherFN"] + " & " + rdr["MotherFN"] + "</a></font>";
                           
                            node.BackColor = System.Drawing.ColorTranslator.FromHtml("#fdebfb");
                        }
                        node.Value = rdr["PortraidID"].ToString();

                        e.Node.Nodes.Add(node);
                        e.Node.Expanded = true;
                    }
Atanas Korchev
Telerik team
 answered on 11 Dec 2008
3 answers
81 views
all the documentation for radupload additional fields is defined by html and javascript, and retrieved by c# or vb.  is there any way to define and set the fields in c#?
Atanas Korchev
Telerik team
 answered on 11 Dec 2008
2 answers
299 views
Hey there folks,

I have an issue, and I'm not sure if I'm just not getting it because documentation and examples are still pretty thin, or if it is just not possible.  I'll try to keep it as simple as I can (ya right!).

I'm using ADO.NET Data Services in a project, and I want to bind a Method called from this service to a RadGrid.  However, the resulting ATOM data contains the primary table, along with all of it's $EXPANDed tables.

When I bind to the RadGrid, I see the primary table, but I have no idea how to get to the data in the other tables.  Can the RadGrid even bind to that data?  If so, can someone provide an example?  Here is some more detail on what I am doing:

The Data Service Method:

[WebGet]   
public IQueryable<Customer> GetCustomerByID(int CustID)   
{   
    IQueryable<Customer> query =   
        from c in this.CurrentDataSource.Customer   
        where c.CustomerID == CustID   
        orderby c.CompanyName   
        select c;   
 
    return (query);  
}  
 


Simple enough, it pulls one record from the Customer table based on the primary key.  (Yes, I know the default entities do the exact same thing, but this service is actually more complicated then what I am presenting here!).

The Business Layer:

        public IQueryable<Customer> GetCustomerByID(int CustID)  
        {  
            NeoDemoDBEntities ctx = new NeoDemoDBEntities(new Uri("http://localhost/NeoDemoService/NeoDemoSvc.svc", UriKind.Absolute));  
            var query =  
                ctx.CreateQuery<Customer>("/GetCustomerByID")  
                    .AddQueryOption("CustID", CustID)  
                    .Expand("CustomerAddress")  
                    .Expand("CustomerDetail")  
                    .Expand("CustomerCharge")  
                    .Expand("CustomerGroup");  
 
            return query;  
        } 
Also pretty simple.  The code here in the BL is the equivilent of:

http://localhost/NeoDemoService/NeoDemoSvc.svc/GetCustomerByID()?$expand=CustomerAddress,CustomerDetail,CustomerCharge,CustomerGroup&CustID=699

The UI:

I know this is incomplete, but here is what the page does to the control:

        protected void Page_Load(object sender, EventArgs e)  
        {  
 
            NeoDemoBL.NeoDemoBL BL = new NeoDemoBL.NeoDemoBL();  
            RadGrid1.MasterTableView.DataSource = BL.GetCustomerByID(699);  
            RadGrid1.DataBind();  
        }  
 
The reason it is incomplete is I don't know where to go from here.


Here is the resulting XML.  The data looks strange becuase I used a data generator.  So, if anyone could smack me in the head and tell me what I'm missing, or tell me I can't do, or just tell me something!  I'd appreciate it! 

Thanks, Kuba

<?xml version="1.0" encoding="utf-8" standalone="yes"?>  
<feed xml:base="http://localhost/NeoDemoService/NeoDemoSvc.svc/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">  
  <title type="text">GetCustomerByID</title> 
  <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/GetCustomerByID</id> 
  <updated>2008-12-08T22:43:38Z</updated> 
  <link rel="self" title="GetCustomerByID" href="GetCustomerByID" /> 
  <entry> 
    <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/Customer(699)</id> 
    <title type="text"></title> 
    <updated>2008-12-08T22:43:38Z</updated> 
    <author> 
      <name /> 
    </author> 
    <link rel="edit" title="Customer" href="Customer(699)" /> 
    <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CustomerGroup" type="application/atom+xml;type=entry" title="CustomerGroup" href="Customer(699)/CustomerGroup">  
      <m:inline> 
        <entry> 
          <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerGroup(943)</id> 
          <title type="text"></title> 
          <updated>2008-12-08T22:43:38Z</updated> 
          <author> 
            <name /> 
          </author> 
          <link rel="edit" title="CustomerGroup" href="CustomerGroup(943)" /> 
          <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=feed" title="Customer" href="CustomerGroup(943)/Customer" /> 
          <category term="NeoDemoDBModel.CustomerGroup" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
          <content type="application/xml">  
            <m:properties> 
              <d:CustomerGroupID m:type="Edm.Int32">943</d:CustomerGroupID> 
              <d:GroupName>Henry Yoder</d:GroupName> 
              <d:Description>Pro linguens imaginator pars fecit.  Et quad ut no</d:Description> 
              <d:isSubGroup m:type="Edm.Boolean">false</d:isSubGroup> 
              <d:ParentGroupID m:type="Edm.Int32">943</d:ParentGroupID> 
              <d:CreatedByUser m:type="Edm.Int32">1172248618</d:CreatedByUser> 
              <d:CreatedDateTime m:type="Edm.DateTime">1993-06-22T23:21:08.47</d:CreatedDateTime> 
              <d:ModifiedByUser m:type="Edm.Int32">-1067266761</d:ModifiedByUser> 
              <d:ModifiedDateTime m:type="Edm.DateTime">1963-11-18T00:48:58.37</d:ModifiedDateTime> 
              <d:timestamp m:type="Edm.Binary">AAAAAAFYyCY=</d:timestamp> 
            </m:properties> 
          </content> 
        </entry> 
      </m:inline> 
    </link> 
    <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CustomerAddress" type="application/atom+xml;type=feed" title="CustomerAddress" href="Customer(699)/CustomerAddress">  
      <m:inline> 
        <feed> 
          <title type="text">CustomerAddress</title> 
          <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/Customer(699)/CustomerAddress</id> 
          <updated>2008-12-08T22:43:38Z</updated> 
          <link rel="self" title="CustomerAddress" href="Customer(699)/CustomerAddress" /> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerAddress(12)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerAddress" href="CustomerAddress(12)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerAddress(12)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerAddress" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerAddressID m:type="Edm.Int32">12</d:CustomerAddressID> 
                <d:AddressType>51 White First Freeway</d:AddressType> 
                <d:Contact>UV31W0WKRAGPWXA</d:Contact> 
                <d:Address1>381 North Hague Blvd.</d:Address1> 
                <d:Address2>15 East Nobel Street</d:Address2> 
                <d:Address3>670 White Milton Avenue</d:Address3> 
                <d:Address4>89 New Road</d:Address4> 
                <d:City>Garland</d:City> 
                <d:State>Ohio</d:State> 
                <d:PostalCode>74358</d:PostalCode> 
                <d:Country>Eire</d:Country> 
                <d:Region>IL-WU</d:Region> 
                <d:Phone>758647-7586</d:Phone> 
                <d:Fax>9208703855</d:Fax> 
                <d:Email>iivvcrea1@dwpkip.com</d:Email> 
                <d:CreatedDateTime m:type="Edm.DateTime">1961-05-06T17:21:23.17</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">1107057168</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1992-03-22T03:29:14.4</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">-1832928163</d:ModifiedByUser> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFE=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerAddress(40)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerAddress" href="CustomerAddress(40)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerAddress(40)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerAddress" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerAddressID m:type="Edm.Int32">40</d:CustomerAddressID> 
                <d:AddressType>17 North Clarendon Avenue</d:AddressType> 
                <d:Contact>S3UV97LO2209QX</d:Contact> 
                <d:Address1>691 White Hague Freeway</d:Address1> 
                <d:Address2>105 Hague Avenue</d:Address2> 
                <d:Address3>23 Milton Freeway</d:Address3> 
                <d:Address4>366 Rocky Milton St.</d:Address4> 
                <d:City>Baltimore</d:City> 
                <d:State>Ohio</d:State> 
                <d:PostalCode>78347</d:PostalCode> 
                <d:Country>South Africa</d:Country> 
                <d:Region>NH-ID</d:Region> 
                <d:Phone>816998-4583</d:Phone> 
                <d:Fax>588-143-1008</d:Fax> 
                <d:Email>jdzhwqu.tsygfzw@vrmgps.com</d:Email> 
                <d:CreatedDateTime m:type="Edm.DateTime">1989-05-26T00:10:11.05</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">1709308041</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1996-11-08T22:16:15.04</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">945275887</d:ModifiedByUser> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFI=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerAddress(61)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerAddress" href="CustomerAddress(61)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerAddress(61)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerAddress" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerAddressID m:type="Edm.Int32">61</d:CustomerAddressID> 
                <d:AddressType>91 First Blvd.</d:AddressType> 
                <d:Contact>E1E05BFGK4SEXMQ8GOWOL</d:Contact> 
                <d:Address1>83 West Cowley Road</d:Address1> 
                <d:Address2>97 White Fabien St.</d:Address2> 
                <d:Address3>316 Green Oak Road</d:Address3> 
                <d:Address4>586 Fabien Road</d:Address4> 
                <d:City>Omaha</d:City> 
                <d:State>Missouri</d:State> 
                <d:PostalCode>00961</d:PostalCode> 
                <d:Country>Madagascar</d:Country> 
                <d:Region>WI-SF</d:Region> 
                <d:Phone>266-5445765</d:Phone> 
                <d:Fax>5054591383</d:Fax> 
                <d:Email>mqpw.hqcnccifs@dilvbgdv.cbxict.org</d:Email> 
                <d:CreatedDateTime m:type="Edm.DateTime">1985-10-08T11:25:57.6</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">220543920</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1987-04-29T05:58:50.15</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">2096046239</d:ModifiedByUser> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFM=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerAddress(1399)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerAddress" href="CustomerAddress(1399)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerAddress(1399)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerAddress" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerAddressID m:type="Edm.Int32">1399</d:CustomerAddressID> 
                <d:AddressType>72 Green Hague Street</d:AddressType> 
                <d:Contact>S82UBER9L0NOMZX0046Z1E3QSJBASFKZIG9RSTAXH</d:Contact> 
                <d:Address1>626 Rocky Hague Boulevard</d:Address1> 
                <d:Address2>893 Cowley Blvd.</d:Address2> 
                <d:Address3>782 Clarendon Drive</d:Address3> 
                <d:Address4>83 Milton Street</d:Address4> 
                <d:City>Riverside</d:City> 
                <d:State>Pennsylvania</d:State> 
                <d:PostalCode>47846</d:PostalCode> 
                <d:Country>Taiwan</d:Country> 
                <d:Region>ID-EM</d:Region> 
                <d:Phone>882359-2934</d:Phone> 
                <d:Fax>080-7809038</d:Fax> 
                <d:Email>fhwsm.akyhh@urgf--.org</d:Email> 
                <d:CreatedDateTime m:type="Edm.DateTime">1962-12-14T10:52:24.29</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">-1869840069</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1969-08-28T13:59:17.07</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">-1271843384</d:ModifiedByUser> 
                <d:timestamp m:type="Edm.Binary">AAAAAAFvxEo=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
        </feed> 
      </m:inline> 
    </link> 
    <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CustomerCharge" type="application/atom+xml;type=feed" title="CustomerCharge" href="Customer(699)/CustomerCharge">  
      <m:inline> 
        <feed> 
          <title type="text">CustomerCharge</title> 
          <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/Customer(699)/CustomerCharge</id> 
          <updated>2008-12-08T22:43:38Z</updated> 
          <link rel="self" title="CustomerCharge" href="Customer(699)/CustomerCharge" /> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerCharge(8)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerCharge" href="CustomerCharge(8)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerCharge(8)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerCharge" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerChargeID m:type="Edm.Int32">8</d:CustomerChargeID> 
                <d:LastInvoiceDate m:type="Edm.DateTime">1993-09-27T07:53:03.31</d:LastInvoiceDate> 
                <d:LongTermDays m:type="Edm.Decimal">242428591000000000</d:LongTermDays> 
                <d:ShortLongBreakDays m:type="Edm.Decimal">744112993000000000</d:ShortLongBreakDays> 
                <d:LongTermStartDays m:type="Edm.Decimal">245797396000000000</d:LongTermStartDays> 
                <d:CreatedByUser m:type="Edm.Int32">-1664979409</d:CreatedByUser> 
                <d:CreatedDateTime m:type="Edm.DateTime">1966-09-15T00:02:10.22</d:CreatedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">376368382</d:ModifiedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1966-11-21T16:05:48.99</d:ModifiedDateTime> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFU=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerCharge(30)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerCharge" href="CustomerCharge(30)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerCharge(30)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerCharge" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerChargeID m:type="Edm.Int32">30</d:CustomerChargeID> 
                <d:LastInvoiceDate m:type="Edm.DateTime">2005-11-27T23:21:43.52</d:LastInvoiceDate> 
                <d:LongTermDays m:type="Edm.Decimal">767373501000000000</d:LongTermDays> 
                <d:ShortLongBreakDays m:type="Edm.Decimal">572733091000000000</d:ShortLongBreakDays> 
                <d:LongTermStartDays m:type="Edm.Decimal">378092682000000000</d:LongTermStartDays> 
                <d:CreatedByUser m:type="Edm.Int32">787549904</d:CreatedByUser> 
                <d:CreatedDateTime m:type="Edm.DateTime">2007-05-20T06:20:02.1</d:CreatedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">-1283348979</d:ModifiedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1985-12-21T18:43:21.52</d:ModifiedDateTime> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFQ=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerCharge(64)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerCharge" href="CustomerCharge(64)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerCharge(64)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerCharge" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerChargeID m:type="Edm.Int32">64</d:CustomerChargeID> 
                <d:LastInvoiceDate m:type="Edm.DateTime">1978-10-01T19:17:46.97</d:LastInvoiceDate> 
                <d:LongTermDays m:type="Edm.Decimal">786560625000000000</d:LongTermDays> 
                <d:ShortLongBreakDays m:type="Edm.Decimal">104917734000000000</d:ShortLongBreakDays> 
                <d:LongTermStartDays m:type="Edm.Decimal">423274844000000000</d:LongTermStartDays> 
                <d:CreatedByUser m:type="Edm.Int32">1027149572</d:CreatedByUser> 
                <d:CreatedDateTime m:type="Edm.DateTime">1956-04-20T00:00:28.43</d:CreatedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">1769314128</d:ModifiedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1991-04-26T16:17:33.03</d:ModifiedDateTime> 
                <d:timestamp m:type="Edm.Binary">AAAAAAIQmFY=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerCharge(1399)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerCharge" href="CustomerCharge(1399)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerCharge(1399)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerCharge" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerChargeID m:type="Edm.Int32">1399</d:CustomerChargeID> 
                <d:LastInvoiceDate m:type="Edm.DateTime">1994-06-12T23:46:35.65</d:LastInvoiceDate> 
                <d:LongTermDays m:type="Edm.Decimal">814584337000000000</d:LongTermDays> 
                <d:ShortLongBreakDays m:type="Edm.Decimal">875547392000000000</d:ShortLongBreakDays> 
                <d:LongTermStartDays m:type="Edm.Decimal">936510447000000000</d:LongTermStartDays> 
                <d:CreatedByUser m:type="Edm.Int32">705971517</d:CreatedByUser> 
                <d:CreatedDateTime m:type="Edm.DateTime">1956-03-19T19:33:47.58</d:CreatedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">107974832</d:ModifiedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1962-12-02T22:40:40.36</d:ModifiedDateTime> 
                <d:timestamp m:type="Edm.Binary">AAAAAAFoG4E=</d:timestamp> 
              </m:properties> 
            </content> 
          </entry> 
        </feed> 
      </m:inline> 
    </link> 
    <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CustomerDetail" type="application/atom+xml;type=feed" title="CustomerDetail" href="Customer(699)/CustomerDetail">  
      <m:inline> 
        <feed> 
          <title type="text">CustomerDetail</title> 
          <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/Customer(699)/CustomerDetail</id> 
          <updated>2008-12-08T22:43:38Z</updated> 
          <link rel="self" title="CustomerDetail" href="Customer(699)/CustomerDetail" /> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerDetail(16)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerDetail" href="CustomerDetail(16)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerDetail(16)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerDetail" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerDetailID m:type="Edm.Int32">16</d:CustomerDetailID> 
                <d:CustomerType>Longam, e funem.  Quad rarendum habitatio quoque p</d:CustomerType> 
                <d:AccountTermsID m:type="Edm.Int32">16</d:AccountTermsID> 
                <d:AccountSalesAgentID m:type="Edm.Int32">32</d:AccountSalesAgentID> 
                <d:AccountPriceLevelID m:type="Edm.Int32">16</d:AccountPriceLevelID> 
                <d:ShipMethod>QCBJLFTXS90VMQ6710</d:ShipMethod> 
                <d:ShipVendor>I1Z960YCYAH5NBA2DJFRUBGMS0LJYPJ7V6</d:ShipVendor> 
                <d:ShipAccountNumber>SUV4523</d:ShipAccountNumber> 
                <d:CreditLimit m:type="Edm.Decimal">423591388000000000</d:CreditLimit> 
                <d:PaymentMethod></d:PaymentMethod> 
                <d:CardNumber>25725</d:CardNumber> 
                <d:NameOnCard>Teresa Melendez</d:NameOnCard> 
                <d:ExpirationDate m:type="Edm.DateTime">2003-09-09T16:26:40.3</d:ExpirationDate> 
                <d:AddressID m:type="Edm.Int32">16</d:AddressID> 
                <d:PostalCode>17242</d:PostalCode> 
                <d:CreatedDateTime m:type="Edm.DateTime">1996-09-25T22:32:02.7</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">1214105238</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1955-06-09T10:35:37.63</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">652227917</d:ModifiedByUser> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerDetail(25)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerDetail" href="CustomerDetail(25)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerDetail(25)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerDetail" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerDetailID m:type="Edm.Int32">25</d:CustomerDetailID> 
                <d:CustomerType>Longam, e gravis delerium.  Versus esset in doloru</d:CustomerType> 
                <d:AccountTermsID m:type="Edm.Int32">25</d:AccountTermsID> 
                <d:AccountSalesAgentID m:type="Edm.Int32">40</d:AccountSalesAgentID> 
                <d:AccountPriceLevelID m:type="Edm.Int32">25</d:AccountPriceLevelID> 
                <d:ShipMethod>B7YR2NNXL9LUS</d:ShipMethod> 
                <d:ShipVendor>SIESET70S7VUN02FU59VSJ8S3LZA3S2YIGWCNRES2D7J</d:ShipVendor> 
                <d:ShipAccountNumber>YUB51289</d:ShipAccountNumber> 
                <d:CreditLimit m:type="Edm.Decimal">959660756000000000</d:CreditLimit> 
                <d:PaymentMethod>33MQI3L3BUINW87RT66ILIYAOKIM48</d:PaymentMethod> 
                <d:CardNumber>22518</d:CardNumber> 
                <d:NameOnCard>Kisha Lester</d:NameOnCard> 
                <d:ExpirationDate m:type="Edm.DateTime">1972-05-05T06:26:54.74</d:ExpirationDate> 
                <d:AddressID m:type="Edm.Int32">25</d:AddressID> 
                <d:PostalCode>60254</d:PostalCode> 
                <d:CreatedDateTime m:type="Edm.DateTime">1988-07-06T04:35:01.44</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">-1975701240</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1999-04-17T11:20:25.9</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">-247808879</d:ModifiedByUser> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerDetail(35)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerDetail" href="CustomerDetail(35)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerDetail(35)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerDetail" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerDetailID m:type="Edm.Int32">35</d:CustomerDetailID> 
                <d:CustomerType>Versus esset in dolorum cognitio, travissimantor q</d:CustomerType> 
                <d:AccountTermsID m:type="Edm.Int32">35</d:AccountTermsID> 
                <d:AccountSalesAgentID m:type="Edm.Int32">29</d:AccountSalesAgentID> 
                <d:AccountPriceLevelID m:type="Edm.Int32">35</d:AccountPriceLevelID> 
                <d:ShipMethod>O3V5BMG3ZRMOR</d:ShipMethod> 
                <d:ShipVendor>PYPM9JC0D3PN2UZAVSCDYLYSJQUR7</d:ShipVendor> 
                <d:ShipAccountNumber>DEJ8</d:ShipAccountNumber> 
                <d:CreditLimit m:type="Edm.Decimal">993710639000000000</d:CreditLimit> 
                <d:PaymentMethod>R539F4TCJ1FY8PQGZ9SGR3TSCLJOQMKIVQES4FS7LJ590FSY</d:PaymentMethod> 
                <d:CardNumber>26378</d:CardNumber> 
                <d:NameOnCard>Timothy Pham</d:NameOnCard> 
                <d:ExpirationDate m:type="Edm.DateTime">1974-06-22T11:16:19.49</d:ExpirationDate> 
                <d:AddressID m:type="Edm.Int32">35</d:AddressID> 
                <d:PostalCode>84626</d:PostalCode> 
                <d:CreatedDateTime m:type="Edm.DateTime">1977-02-01T07:44:41.71</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">58385253</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1960-07-01T05:23:36.52</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">793153851</d:ModifiedByUser> 
              </m:properties> 
            </content> 
          </entry> 
          <entry> 
            <id>http://localhost/NeoDemoService/NeoDemoSvc.svc/CustomerDetail(1399)</id> 
            <title type="text"></title> 
            <updated>2008-12-08T22:43:38Z</updated> 
            <author> 
              <name /> 
            </author> 
            <link rel="edit" title="CustomerDetail" href="CustomerDetail(1399)" /> 
            <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="CustomerDetail(1399)/Customer" /> 
            <category term="NeoDemoDBModel.CustomerDetail" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
            <content type="application/xml">  
              <m:properties> 
                <d:CustomerDetailID m:type="Edm.Int32">1399</d:CustomerDetailID> 
                <d:CustomerType>Et quad estis vobis homo, si quad estis vobis homo</d:CustomerType> 
                <d:AccountTermsID m:type="Edm.Int32">1399</d:AccountTermsID> 
                <d:AccountSalesAgentID m:type="Edm.Int32">32</d:AccountSalesAgentID> 
                <d:AccountPriceLevelID m:type="Edm.Int32">1399</d:AccountPriceLevelID> 
                <d:ShipMethod>RD3HXJ6Q6KGGR1V76MH7BUB0DA6</d:ShipMethod> 
                <d:ShipVendor>JNWPI6K2BSYB9CUO2POSGWF4HAXEU0XTG5R8NTTTU</d:ShipVendor> 
                <d:ShipAccountNumber>SAZ3479</d:ShipAccountNumber> 
                <d:CreditLimit m:type="Edm.Decimal">606531138000000000</d:CreditLimit> 
                <d:PaymentMethod>JE54H0M</d:PaymentMethod> 
                <d:CardNumber>62597</d:CardNumber> 
                <d:NameOnCard>Kathy Downs</d:NameOnCard> 
                <d:ExpirationDate m:type="Edm.DateTime">1999-10-08T15:36:46.69</d:ExpirationDate> 
                <d:AddressID m:type="Edm.Int32">1399</d:AddressID> 
                <d:PostalCode>90962</d:PostalCode> 
                <d:CreatedDateTime m:type="Edm.DateTime">1954-10-31T08:17:05.84</d:CreatedDateTime> 
                <d:CreatedByUser m:type="Edm.Int32">1554074021</d:CreatedByUser> 
                <d:ModifiedDateTime m:type="Edm.DateTime">1961-07-15T11:23:58.62</d:ModifiedDateTime> 
                <d:ModifiedByUser m:type="Edm.Int32">956077336</d:ModifiedByUser> 
              </m:properties> 
            </content> 
          </entry> 
        </feed> 
      </m:inline> 
    </link> 
    <category term="NeoDemoDBModel.Customer" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
    <content type="application/xml">  
      <m:properties> 
        <d:CustomerID m:type="Edm.Int32">699</d:CustomerID> 
        <d:CustomerCode>R4950NA92</d:CustomerCode> 
        <d:CustomerName>Trent Colon</d:CustomerName> 
        <d:isActive m:type="Edm.Boolean">false</d:isActive> 
        <d:isArchive m:type="Edm.Boolean">true</d:isArchive> 
        <d:isSent m:type="Edm.Boolean">true</d:isSent> 
        <d:isOwner m:type="Edm.Boolean">false</d:isOwner> 
        <d:isVendor m:type="Edm.Boolean">false</d:isVendor> 
        <d:isCarrier m:type="Edm.Boolean">false</d:isCarrier> 
        <d:isSupplier m:type="Edm.Boolean">true</d:isSupplier> 
        <d:isCatchWeight m:type="Edm.Boolean">true</d:isCatchWeight> 
        <d:MailAddressID m:type="Edm.Int32">699</d:MailAddressID> 
        <d:ShipAddressID m:type="Edm.Int32">699</d:ShipAddressID> 
        <d:BillToAddressID m:type="Edm.Int32">699</d:BillToAddressID> 
        <d:CompanyName>Winglibexantor WorldWide Group</d:CompanyName> 
        <d:Website>JVE1SSPHXC4FJUZSXD47IU</d:Website> 
        <d:Comment>Longam, e funem.  Quad rarendum habitatio quoque p</d:Comment> 
        <d:Note>Id eudis quo plorum fecundio, et nomen transit. Pr</d:Note> 
        <d:CreatedDate m:type="Edm.DateTime">2001-06-22T18:47:03.99</d:CreatedDate> 
        <d:CreatedByUser m:type="Edm.Int32">-1734476941</d:CreatedByUser> 
        <d:ModifiedDate m:type="Edm.DateTime">1977-07-22T03:08:19.15</d:ModifiedDate> 
        <d:ModifiedByUser m:type="Edm.Int32">-1462488253</d:ModifiedByUser> 
        <d:timestamp m:type="Edm.Binary">AAAAAAFgb/k=</d:timestamp> 
      </m:properties> 
    </content> 
  </entry> 
</feed> 

Rosen
Telerik team
 answered on 11 Dec 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?