Event Clendar Pro Problem

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
2/3/2009 10:40:15 AM
Gravatar
Total Posts 118

Event Calendar Pro Problem

I am having a small problem with Event Calendar Pro. If you look at http://demo.mojoportal.com/Events/ListView.aspx?pageid=1196&mid=2313  you will see an extra paragraph space between each event that shouldnt be there.

Neil

2/3/2009 11:04:39 AM
Gravatar
Total Posts 18439

Re: Event Clendar Pro Problem

Hi Neil,

I see the problem. Whats happening is that FCKeditor by default is putting <p>&#160;</p> into the Summary field.

I will try to get a fix for this out very soon. In the meantime there is a hacky way it can be fixed right now.

If you edit with a text editor the file /Events/Controls/ListView.ascx

Replace this:

<div class="description">
<%# Eval("Excerpt") %>
</div>

with this:

<div class="description" runat="server" Visible='<%# (Eval("Excerpt").ToString().Length > 13) %>'>
<%# Eval("Excerpt") %>
</div>

Best,

Joe

2/3/2009 11:09:40 AM
Gravatar
Total Posts 118

Re: Event Clendar Pro Problem

thanks joe

2/3/2009 11:11:11 AM
Gravatar
Total Posts 18439

Re: Event Clendar Pro Problem

Hey Neil,

Instead of making that change let me email you a new dll with a better fix. Then if it works correctly in your testing I will update the download package so its fixed right away.

Best,

Joe

2/3/2009 11:27:54 AM
Gravatar
Total Posts 18439

Re: Event Clendar Pro Problem

I've fixed this and updated both the demo site and the download package of Event Calendar Pro.

Best,

Joe

2/3/2009 11:59:35 AM
Gravatar
Total Posts 118

Re: Event Clendar Pro Problem

thanks for the quick fix joe - quick question - is there anyway to control the no of items in a page on the list view

2/3/2009 12:14:44 PM
Gravatar
Total Posts 18439

Re: Event Clendar Pro Problem

Hi Neil,

No, not currently, its hard coded to 5 which is the number I found could generally fit on a page without scrolling.

But it will be easy to add a setting for that, I've put it on the list of things to do for the next release. I will probably make a new release of Event Calendar Pro after the next release of mojoPortal. I'm doing some work now to move commerce reporting into the core so I don't have to re-implement it for every commerce enabled feature, all I have to do is make the commerce enabled feature push its data into the common reporting table. So, once I have the reporting implemented in the core I will want to make a new release of event Calendar Pro so that it does push its data in and then you can have reporting on event sales revenue. We will also be able to aggregate reporting across features at the site level to get a total picture of revenue coming into the site.

Best,

Joe

 

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