Super Combo inside update panel

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
10/12/2010 4:11:43 AM
Gravatar
Total Posts 12

Super Combo inside update panel

Hi,

The super combo control is well desinged. I personally thank you.

But if we wrap the super combo with the update panel, after the asynchronous post back the drop down is not rendering any value. How ever, if we remove the update panel, the suber combo works as usual. Is this a know issue or is there any work around for this.

Actually, I am having the super combo in one of the tab, so I thought of going of ajax to retain the tab position after post back but super combo is not behaving as expected.

Thanks,

Syed

10/12/2010 7:29:52 AM
Gravatar
Total Posts 18439

Re: Super Combo inside update panel

I don't know what you mean by super combo, we have a control SmartCombo, but it probably does not work inside updatepanel.

You can probably use the ajaxcontroltoolkit ComboBox inside updatepanel

I implemented SmartCombo many years ago before ajaxcontroltoolkit existed, today I would just use the one from the toolkit.

Hope it helps,

Joe

10/21/2010 4:41:10 PM
Gravatar
Total Posts 18

Re: Super Combo inside update panel

It´s a common problem that within an update panel you loose the event binding.

Super Combo´s are working within an update panel, you simply have to rebind all java events after a postback.

Best way is something like:

function load(){  
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(DoStuff);
}

function DoStuff(){

 

//Rebind your events here

}

You must sign in to post in the forums. This thread is closed to new posts.