BTW, this is theh first time I've restored this project onto a new XP machine, where I previously was working on a Vista machine that died.
7 Answers, 1 is accepted
Can you send us this example project so that we can take a look at it and help you fix that? You can open a support ticket to attach it. Thank you in advance.
Kind regards,
Kamen Bundev
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
IsSticky property didnt work for me. I disabled the ajax temporarily to continue working on the page by setting the EnableAJAX property to false.
Ajax works fine for the first request and combobox freezes after that.
Here's my scenario in detail:
I have two comboboxes, second comboBox items changes based on the first combobox selection. So,I am populating the second comboBox items on the first comboBox's SelectedIndexChanged Event.
In the AjaxSettings of radAjaxManager I have set the first combox box as AjaxControlID and the second comboBox as the AjaxUpdatedControl.
<
telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="cboCategory">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="cboProducts"/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<
telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
<img src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading6.gif") %>'
alt="Loading.." />
</telerik:RadAjaxLoadingPanel>
Your AJAX settings look fine and should work. Are you getting JavaScript or server-side errors? Such problem can also be caused by invalid markup on the page. In this case the RadAjaxManager might not be able to update the controls correctly. You can check the page markup by using the W3C validator service.
I hope this helps.
Best wishes,
Tsvetomir Tsonev
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I am not getting any errors. Let me add some more detail.
I am using the asp.net ajax controls in the sharepoint site(MOSS 2007 WSS 3.0).
When I enable the Ajax I notice the following problems:
1) Clicking on any control on the page for the first time sends a postback and from the next request onwards it shows ajax behavior
2) The filter menu on the radGrid does not pop open as soon as ajax start working on the page
3) ComboBox(es) freezes - cannot even open the drop down/select anything. Replacing comboboxes with the dropdownlist works fine.
Any thoughts?
Probably there is a problem with the javascript web resources. Please check the following articles on how to property deploy RadControls in MOSS and everything should work as expected.
- Extending your MOSS site in ASP.NET 2.0 or ASP.NET 3.5
- Deploying RadControls for ASP.NET Ajax
- Incorporating RadControls for ASP.NET Ajax in MOSS WebSites
Kind regards,
Veskoni
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Please try for conditional Postback
<
telerik
:
RadAjaxPanel
ID
="uxRadAjaxPanel"
runat
="server"
LoadingPanelID
="uxRadAjaxLoadingPanel"
Width="100%" Height="100%" ClientEvents-OnRequestStart="conditionalPostback">
function
conditionalPostback(ajaxManager, args) {
if
(args.get_eventTarget().indexOf(
"idofcontrol"
) > 0)
args.set_enableAjax(
false
);
}