Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file query breaking Jforce Project Management

More
11 years 10 months ago #593 by macchick
In working with the developer on my issues, he stated that "Your javascript is breaking your site. JForce uses MooTools that is included with Joomla! - however you have a few other third party components that are using JQuery, as a result those are breaking the default Joomla! javascript - when it's broken you can't select a client and thus can't save the project"

I installed the plugin and it has not corrected my issue. I am not a coder but can figure most out but am stuck on this issue.

If there is anything you can do to assist, it would be much appreciated.

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago #596 by admin
Hello,
your issues probably cannot be resolved with jQuery Easy out of the box. You probably will have to go through the expert parameters in order to fix them.
- which version of jQuery Easy are you using? (I would suggest installing the latest beta as it deals closely with MooTools issues)
- What version of Joomla! is your web site based on?
- can you send me the URL of a page that has the issues reported by the developer (so I can see the code 'live')?

I should be able to analyse what is going on with the URL you send me and suggest corrections to make or parameters to use in jQuery Easy.

Olivier.

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago #597 by macchick
Replied by macchick on topic Re: query breaking Jforce Project Management
I downloaded version 1.1.3 of jQuery Easy and am using Joomla 2.5.6.

URL is: www.portagecountymastergardeners.com

login with jforce and project1 and click on Committees which brings you to the DashBoard, then click on Projects.

When I go to the Projects page and then click on New and fill out all the fields, I get an error which is what I sent to the developer.

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago - 11 years 10 months ago #599 by admin
First, you don't see your posts because they are reviewed before they are put online. So it may not be right away.

Second, I have reviewed your code and did not see anything wrong except for this piece of code:
window.addEvent(window.webkit ? 'load' : 'domready',function() {
// Companies
initAutoCompleter('company-field', com_tokens, null);
$('company-field').addEvent('change', function(e) {
    validateName('company', this.value, '', true);
});
//Added for updating leader list based on company selected
$('company-field').addEvent('blur', function(e) {
    updateLeaderList($('company').value);
});
// Categories
initAutoCompleter('category-field', cat_tokens, null);
$('category-field').addEvent('change', function(e) {
    validateCategory('project', this.value, '0', true);
});
if ($('projecttemplate') != null) {
    $('projecttemplate').addEvent('change', function (e) {
        if (this.value == 'existing') {
            SqueezeBox.initialize({});
            var el = document.createElement('a');
            el.setAttribute('href', '/index.php/committee/modal/projecttemplate/?tmpl=component');
            el.setAttribute('rel', '{size: {x: 400, y: 170}, handler: "iframe", classWindow: "jforceModal"}');
            el.setAttribute('class', 'modal');							SqueezeBox.fromElement(el);
        } else {
            if ($('existing_project') != null) {
                $('existing_project').value = '';
            }
        }
     });
   }
});

You cannot have the symbol '$' in this piece of code. Check with your developer what it can be replaced with.

Olivier.
Last edit: 11 years 10 months ago by admin.

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago #600 by macchick
Replied by macchick on topic Re: query breaking Jforce Project Management
Thanks, I've sent them your comments. Thanks for looking at it. I very much appreciate it.

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago #601 by admin
You are welcome!

Olivier.

Please Log in or Create an account to join the conversation.