Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
141 views
I'm just curious, but are the images that are used in the demos available for download or are they installed somewhere when installing teh controls? I know in the older, non-AJAX versions, all the skins had all the toolbar button images, but that doesn't appear to be the case anymore.

Thanks,
Adam

Kate
Telerik team
 answered on 17 May 2011
1 answer
133 views

We are using the RAD chart and love it.  We are having a problem displaying XML data in non file format.  If we save the XML file the chart populates correctly, if we try using an object, we get :

 

“There is no or empty series”

Here is our code, any help would be appreciated:

We have to bind RadChart.

…..

Dim resp As HttpWebResponse = DirectCast(req.GetResponse(), HttpWebResponse)

Dim reader As New StreamReader(resp.GetResponseStream())

Dim d As New XmlDocument()

d.LoadXml(reader.ReadToEnd())

reader.Close()

d.Save(Server.MapPath("xmlFiles/Expense.xml"))

RadChart1.DataSource = Server.MapPath("~/xmlFiles/Expense.xml")

RadChart1.DataBind()

 

This is works, but if I try to bind without save xml file (d.Save(Server.MapPath("xmlFiles/Expense.xml"))) :

…..

Dim resp As HttpWebResponse = DirectCast(req.GetResponse(), HttpWebResponse)

Dim reader As New StreamReader(resp.GetResponseStream())

Dim d As New XmlDocument()

d.LoadXml(reader.ReadToEnd())

reader.Close()

RadChart1.DataSource = d.OuterXml

RadChart1.DataBind()

Tsvetie
Telerik team
 answered on 17 May 2011
1 answer
135 views

In radeditor, in design view,
When i highlight a hyperlink and set the color, it does not change. This is not the case in IE.
radeditor in firefox adds a font tag on the outside of the hyperlink where IE adds the font tag to the inside of the hyperlink.
When the font tag is on the outside of the hyperlink it gets ignored by all browsers.

How can I use firefox to conveniently change the font color of a hyperlink???

FIREFOX

<font color="#92d050"><a href="http://www.google.com/">click here</a></font>


IE
<a href="http://www.google.com/"><font color="#92d050click here</font></a>

Trevor
Rumen
Telerik team
 answered on 17 May 2011
1 answer
108 views
Hi
I need to set some string values for my chart X-Axis, Is this possible? I'm using 2010 Q1 Components.
Would you please help me in that? 
Shinu
Top achievements
Rank 2
 answered on 17 May 2011
1 answer
64 views
Hello,

I've got a problem with filtering string field using "between" and "not between" options from the standard available filter list. It just throw exception like "Operator '>=' incompatible with operand types 'Object' and 'String' (at index 20)"
ne.
I looked around the forum and I found out it can be "EnableLinqExpression" issue. So I add to my radGrid ( on the aspx page)
EnableLinqExpression=false. And all works fine!

Unfortunately another filter for the datetime field stoped working with "between" and "not between" options. This particular field filtering is handled separately by "OnItemCommand" (to allow filtering date without time).

What could be the best solution for this problem?

My telerik version is: 2008.3.1125.35

Thanks in advance,
Tom
 
Pavlina
Telerik team
 answered on 17 May 2011
1 answer
161 views
Hello,

I am opening an aspx page from a hyperlink in a RadWindow with the following markup:

 

<telerik:RadWindowManager ID="rwmCustomer" runat="server" ReloadOnShow="true" EnableViewState="false">
<Windows>
<telerik:RadWindow ID="rwCustomer" runat="server" Title="Find a customer" OpenerElementID='<%# Me.lnkCustomer.ClientID %>' NavigateUrl='<%# Me.lnkCustomer.NavigateUrl %>' />

 

 

</Windows>

 

</telerik:RadWindowManager>

 

<asp:HyperLink ID="lnkCustomer" runat="server" ToolTip="Search for a customer" NavigateUrl="someurl.aspx" />

The RadWindow opens up correctly in both IE 7 and Firefox 4.0.1. However, in Firefox, despite having MaintainScrollPositionOnPostback set to "true", the page scrolls back to the top but the RadWindow opens however far down the page the lnkCustomer link is placed, which means that users only see the very top of the RadWindow. Because the original page cannot be scrolled while the RadWindow is open, users therefore cannot use the RadWindow properly.

I would be grateful for any assistance.

Thanks in advance.

Georgi Tunev
Telerik team
 answered on 17 May 2011
1 answer
117 views
hi,

    when i create a non recurrence Appointment ,i can get the edited value with the code


    description = e.ModifiedAppointment.Description.ToString();

how can i get the edited value of  Recurrence appointment when updated
Veronica
Telerik team
 answered on 17 May 2011
1 answer
289 views
hi
i have a problem with this.

i have this code in the code behind = 
string href = @"<a class='tituloGrisClaro' href=""javascript:__doPostBack('getProduct','";

and  
this in the page load. 
  string argument = Page.Request.Params["__EVENTARGUMENT"];
  string target = Page.Request.Params["__EVENTTARGET"];

but the argument  and target always is empty

is there a way to reconcile telerik whith this?
thk

Georgi Tunev
Telerik team
 answered on 17 May 2011
1 answer
172 views

I'm using the RadMenu to show different UserControls, which are basically forms, that cause a PostBack when the buttons within them are clicked.  I had been using RadToolTips for these, but thought the RadMenu treatment looked better.  Now I'm wondering if maybe RadMenus aren't meant to be used this way?

Anyways, the problem I'm having is that whenever I execute a PostBack in the usercontrol, which is embedded in a RadMenuItem, it doesn't do a PostBack, and there is some Javascript error in the ScriptResource.axd that causes the page to become unstable - none of the controls seem to work after that until I reload the page.  I do have all of the RadMenus within an UpdatePanel, so Ajax is enabled and being used.  When I replace these menu items with tooltips, with the same usercontrols embedded within them, the postbacks DO work, so I'm just wondering if there is something I need to do in the command for these buttons because they are embedded in a RadMenuItem?  Here's an example of the code I use to add the UserControl to the RadMenuItem:

var followUp = menuSourceControl.FindItemByText("FollowUpScreen");
if(followUp != null)
{
    var followUpForm = LoadControl("~/controls/popups/FollowUpForm.ascx");
    ((FollowUpForm)followUpForm).RID = rid;
    followUp.Controls.Add(followUpForm);                
}

I couldn't find any mention or example of this on the site, but would welcome any guidance on this.

Thanks!
Eddie

Kate
Telerik team
 answered on 17 May 2011
5 answers
256 views
How do I get the client id drop down in a grid from within a javascript function?

Thank you

Regards
Raj
Shinu
Top achievements
Rank 2
 answered on 17 May 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?