Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
110 views
Hi,

I thought Rad menu would put out some "SEO friendly" navigation - but today I gave it a try with http://seo-browser.com/
No matter what Bot I simulate my links look like: http://mysite/mydir/mypage.aspx?link=%23&action=PARSE+URL
I guess this in not really seo friendly (although it is an a tag :)).
By the way - following these link I get a wrong result like http://mysite/mydir/# (listing denied)

I generate my menu from a sitemap datasource - did I do anithing wrong?
Or is it a mistake to think "SEO friendly" means submittion "real urls" in the case a bot passes by.

Regards

Manfred
ManniAT
Top achievements
Rank 2
 answered on 21 Apr 2009
0 answers
66 views
my problem is when the user created an appointment and hit refresh (F5) the appointment is Re-created, i was told to use the AjaxManager so here is my code

<telerik:RadScriptManager ID="ScriptManager1" runat="server"
        EnableTheming="True">
    </telerik:RadScriptManager>
    
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
    </telerik:RadStyleSheetManager>
    
    <asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
    <telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1" />
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="Panel1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="ConfiguratorPanel1" />
                        <telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>
    <telerik:RadScheduler ID="RadScheduler1" runat="server" DataEndField="End"  (not pasting the rest (usual code)

but AJAX doesnt seem to work.
i followed this example
http://demos.telerik.com/aspnet-ajax/scheduler/examples/resources/defaultcs.aspx

is there any documentation on how to use this?

Thanks



Raul
Top achievements
Rank 1
 asked on 21 Apr 2009
0 answers
58 views

I have just downloaded the Telerik 2009 Q1 trial and used a RadEditor.  This works correctly using the control on my Local IIS but when published I get an error about the telerik chart.  I remove this from the web.config file.  I then get an error with the Telerik namespace declaration <%@ ........ you get the picture.

 

Has anyone come accross this.  I am using both Visual Studio 2008 professional and Visual Web Developer 2008.

 

When using VS2008 Pro Telerik then crashes VS when applying skins or when selecting the control from the properties window.

When using VWD Express it works fine???  Can this be expained.

I would like to get this sorted before I buy the product.

Kind regards

Simon Westwood

Simon
Top achievements
Rank 1
 asked on 21 Apr 2009
0 answers
133 views
Hi guys. I'm here to ask for help. I would appreciate any tip or comment.

I got a PanelBar which its content is created dynamically given a RadMenuItem that the user clicks.

I got this code:
myRadPanelBar.Datasource =  mycode.GetDatasource(string menuItemClicked);
myRadPanelBar.DataBind();

everything here is working  I load the page and the first load works good.

But then i go to click another RadMenuItem that will cause the radpanelbar to be updated but it displays the first content that mypanelbar had and no matter what menu items i click the radpanelbar is not updated.

I had debugged  mycode.GetDatasource(string menuItemClicked); to verify that the content is created correctly, and indeed it is correct.
I have deleted the cache, temp files, cookies, close the browser, use IE and Firefox and the radpanelbar is not updated it always shows me the first content that was loaded in.
I also tryed to use RadAjaxManager to say that the RadMenu is going to update the RadPanel.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"  >
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadMenu">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadPanelBar" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>



The only thing that make the panelbar to be updated is if i do an IISRESET

What could be wrong?


Sergio Cortez
Top achievements
Rank 2
 asked on 21 Apr 2009
1 answer
283 views
Hi,
I'm encountering a strange problem. I'm using rad controls through out my web application. I have set the session timeout value as 60 minutes in the web.config. But the application logged out after few minutes(20 minutes). I have also set the IIS session timeout as 60 minutes in the internet information server. But still the application timed out after 20 minutes. I was puzzled. Another thing is, im using cookies that destroys after 60 minutes. So, there is no problem in that also. Then what can make my application to time out in 20 minutes. I think this session timeout problem may be because of rad controls(some ajax kind of thing). Can any one helpme on this.


Regards,
Jawahar
Scott Eoff
Top achievements
Rank 2
 answered on 21 Apr 2009
4 answers
312 views

Hi,

I am designing an RSS Feed reader using a RAD Grid and RAD Combo box.

My combo box will list all the sites whose feeds I subscribe to (e.g. this site, MSDN, etc etc).

On the selection of a feed, I want to fire an event handler (implemented) but I want to get the corresponding feed URL of a site title (using my dictionary collection in C#).

However, you cannot add new parameters to an event handler unless you override it.

This raises confusion for me. I have an event which is derived from RADComboBox... (can't remember exact name), and I've added the extra field in the derived constructor.

However, when I call the event handler at onSelectionChanged, I get this error:

Error 5 No overload for 'NewEventHandler' matches delegate 'Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventHandler' 

Code:

public class NewEventHandler : Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs
{
public string Url;

public NewEventHandler(string text, string oldtext, string value, string oldValue, string Url) : base(text, oldtext, value, oldValue)
{
}
}

I then call this event handler on the appropriate/relevant event, and pass in the parameters in the constructor of the event handler, like so:

  onselectedindexchanged="NewEventHandler"

  protected void NewEventHandler(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e, string Url)
{

What am I doing wrong?

Thanks

G S S
Top achievements
Rank 1
 answered on 21 Apr 2009
0 answers
95 views
Hi,

I am using RadUpload control inside the Rad TabStrip control. The RadUpload control script is not firing when i click the browse or file upload textbox control. Under each Tab i am having lot of asp.net control. Please help to solve this problem.
Senthilkumar
Top achievements
Rank 1
 asked on 21 Apr 2009
2 answers
217 views
Version 2009.1.311.35

I have a RadGrid in a Web UserControl that is loaded into another Page. In that Grid, I have defined a custom CommandItemTemplate that contains a RadComboBox for selection and a ASP Button to execute (which causes a postback calling the OnItemCommand event of the Grid).

I fill the contents of the RadComboBox during the OnItemCreated event of the Grid. When EnableViewState is true on the Grid, I have no problem reading the value of the selection of the RadComboBox through the OnItemCommand event of the Grid, but when set to false, I can never get the value of the RadComboBox because it is reset to default.

At what point and how would I get the value of the RadComboBox when EnableViewState is false? Also, I seem to only be able to reference the controls in the CommandItemTemplate during the OnItemCreated and OnItemCommand events of the Grid. Is there way to reference these controls during any other time (e.g. Page_Load)?
Dennis
Top achievements
Rank 1
 answered on 21 Apr 2009
6 answers
138 views
I'm having trouble using the AdvancedForm.ascx file in our website.  Is there a correct way to copy over and build the file?  I was going through the "Customize the Advanced Template" tutorial and it said something about using "Convert to Web Application".  But that selection does not appear for me.  (BTW, what does that do?)

So I'm getting the above error whenever I try to build our website and the blue squiggly line under Owner in the code file.  (It's under all the Appointment members, Owner just happens to be the one generating the error)

Any direction would be greatly appreciated! Thanks
Matt
Top achievements
Rank 1
 answered on 21 Apr 2009
1 answer
74 views
Hi!!

I install mono for window on my pc, but now I'd like to test Radcontrols on this enviroment but I dont find any trial to do that, where can I find a trial to work with mono and Telerik controls? Because I have to be sure I this scenario works for my. And I apreciate if anyone like to give more information or a reference manual. I'm sorry, I'm new.

Thanks in advance.
Nenita.
Daniel
Telerik team
 answered on 21 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?