DevExpress ASPxScheduler in MP

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.
9/26/2008 12:26:38 PM
Gravatar
Total Posts 2

DevExpress ASPxScheduler in MP

Has anyone tried using the DevExpress ASPxScheduler system inside mojoPortal?  I can get the app to work on a standalone site, but when I integrate it into a module, the skin is all messed up and none of the events work.

Here's the page I am trying to add it to:

wellness.colostate.edu/calendarTest.aspx

Thanks,

Chris Hampton
Wellness Group Web Coordinator
Colorado State University
Chris.Hampton@colostate.edu
(970) 491-3066

 

9/26/2008 12:31:15 PM
Gravatar
Total Posts 18439

Re: DevExpress ASPxScheduler in MP

I've never used that product.

For the events to work as expected you may need to add Page.EnableViewState = true; in OnInit or PageLoad.

Might be wise to wrap it in an UpdatePanel if it can work in an update panel.

When you say the skin is all messed up do you mean the scheduler doesn't look right or including it in the page messes up the main mojoportal skin layout?

Hope it helps,

Joe

9/26/2008 12:34:07 PM
Gravatar
Total Posts 18439

Re: DevExpress ASPxScheduler in MP

I would check with their documentation you may need to include their css files. If they have css files you could put them into the skin folder and add them into the style.css file as imports like this:

@import url('thevendorprovidedcssfile.css');

Hope it helps,

Joe

9/26/2008 2:49:58 PM
Gravatar
Total Posts 2

Re: DevExpress ASPxScheduler in MP

Joe,

I tried putting the css files in the /data/sites/siteid/skins/skinname folder and it's still not looking right.

Here's what it should look like: http://wellness.colostate.edu/images/screenshot.jpg

and you can see from the link in the first post, that it definitely does not look like that.  I'll put it in an update panel, but I'm not sure if that will solve the skin issue.

Thanks,

Chris

9/26/2008 2:53:58 PM
Gravatar
Total Posts 18439

Re: DevExpress ASPxScheduler in MP

The UpdatePanel idea I mentioned before looking at your page. The only reason I suggested it is if other modules are on the same page using the UpdatePanel prevents strange behavior from other modules that may occur during postback. You probably don't need it if the sheduler is the only thing on the page.

Its not sufficient to just drop the css files in the skin folder, there is nothing to automatically include them in the page. Open up the styles.css file and add @import statements to include the css files for the scheduler.

Hope it helps,

Joe

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