This is a migrated thread and some comments may be shown as answers.

RadAjaxManager and ASP.NET wizard control

5 Answers 141 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Ferdinand
Top achievements
Rank 1
Ferdinand asked on 20 Oct 2009, 08:21 AM
Hi,
I tried to use the RadAjaxManager with the wizard control but there are some things I do not really understand.
1. Does the configuration dialog for the AjaxManager only work in the currently selected WizardStep?
2. If you declare some new AjaxSettings for controls in other wizard steps is it possible that those controls are not rendered correctly because the AjaxManager creates Panels around them which do not have the same settings as the controls?

Would help me a lot to know that.

Best regards
Ferdinand

5 Answers, 1 is accepted

Sort by
0
Iana Tsolova
Telerik team
answered on 21 Oct 2009, 12:34 PM
Hi Ferdinand,

I am afraid that the wizard controls are not compatible with ajax. You can see the list of all incompatible controls here.
I suggest that you consider using RadTabStrip/RadMultiPage or different user controls in order to achieve your goal instead.

Regards,
Iana
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.
0
Ferdinand
Top achievements
Rank 1
answered on 21 Oct 2009, 02:21 PM
Hi Iana,
somehow I expected something like this. Well, nevertheless I thing I found a little trick to achieve a little compatiblity...just for those who need this as much as I do ;)
I added my AjaxSettings programtically to the AjaxManager differentiating which WizardSteps is actually active:
switch (this.sqlFilterWizard.ActiveStepIndex) 
            { 
 
                case 0: 
                    AjaxSetting treeSetting = new AjaxSetting(this.rtvDatatypes.ID); 
                    updControl = new AjaxUpdatedControl(this.rlbFields.ID, ""); 
                    treeSetting.UpdatedControls.Add(updControl); 
                    this.ramSqlFilterAssistant.AjaxSettings.Add(treeSetting); 
                    break
                case 1:                     
                    AjaxSetting rblTooltipSetting = new AjaxSetting(this.rcbDataInput.ID); 
                    updControl = new AjaxUpdatedControl(this.panelParameterTooltip.ID, ""); 
                    rblTooltipSetting.UpdatedControls.Add(updControl); 
                    this.ramSqlFilterAssistant.AjaxSettings.Add(rblTooltipSetting); 
                default
                    break
          } 
 
 
This only the controls are axaified that really exist on the current page.

Best regards
Ferdinand


0
Iana Tsolova
Telerik team
answered on 26 Oct 2009, 09:12 AM
Hi Ferdinand,

Thank you for sharing your experience with the community. I assume that the provided solution can help other developers facing the same issue.

Sincerely yours,
Iana
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.
0
NORIS
Top achievements
Rank 1
answered on 18 Oct 2013, 04:53 PM

I checked again and found that I'm using the AJAXToolkit AJAX Manager.
It turns out the when I commented out

ajaxToolkit:MaskedEditExtender  control, the error no longer appears.
So, it seems like when I upgrade something happened to the AJAXToolkit control.

I'll try using the RadTimeTicker. How can I set a ValidationGroup on this?
0
Maria Ilieva
Telerik team
answered on 23 Oct 2013, 10:36 AM
Hi Noris,

Could I kindly ask you to open a separate support ticket and post the exact scenario you are trying to implement ind the issues you are facing with the RadControls? Thus we will be able to investigate your specific case and do the best to provide proper solution.

Regards,
Maria Ilieva
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Ajax
Asked by
Ferdinand
Top achievements
Rank 1
Answers by
Iana Tsolova
Telerik team
Ferdinand
Top achievements
Rank 1
NORIS
Top achievements
Rank 1
Maria Ilieva
Telerik team
Share this question
or