• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Disappearing edit buttons in Directory View

Disappearing edit buttons in Directory View 9 years 1 week ago #34906

Issue with the directory submissions view on our test site:

When you move the mouse off the Edit, Detail, PDF buttons and the column headers, they disappear. See this video for an example: screencast.com/t/4mWlk7NW

I think I've tracked down the problem to these lines of code in a jquery.min.css file:
m.fn.extend({
        hover: function(a, b) {
            return this.mouseenter(a).mouseleave(b || a)
        },

(\media\jui\js)

If I remove these lines, I have problems with buttons all over the site. I think I could override it in the Directory custom javascript, just on this page, but I know very little about these languages. Does anyone have any ideas?
The administrator has disabled public write access.

Disappearing edit buttons in Directory View 8 years 9 months ago #35381

Had the same problem.
Did you get it solved?
The administrator has disabled public write access.

Disappearing edit buttons in Directory View 8 years 5 months ago #35999

  • mojtabapordel
  • mojtabapordel's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 16
  • Thank you received: 6
Hi
I have the same problem
The administrator has disabled public write access.

Disappearing edit buttons in Directory View 8 years 5 months ago #36003

  • mojtabapordel
  • mojtabapordel's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 16
  • Thank you received: 6
In Helix Template, I inserted this code into Custom JavaScript text box in template administration and the problem solved:
//remove conflict of mootools more show/hide function of element
(function(){
    if(window.MooTools && window.MooTools.More && Element && Element.implement){
 
        var mthide = Element.prototype.hide,
            mtshow = Element.prototype.show,
            mtslide = Element.prototype.slide;
 
        Element.implement({
            show: function(args){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mtshow) && mtshow.apply(this, args);
            },
 
            hide: function(){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mthide) && mthide.apply(this, arguments);
            },
 
            slide: function(args){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mtslide) && mtslide.apply(this, args);
            }
        })
    }
})();
The administrator has disabled public write access.
The following user(s) said Thank You: projinitech

Disappearing edit buttons in Directory View 8 years 5 months ago #36049

  • projinitech
  • projinitech's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 1
Your suggestion solved the problem for me.
Thanks
The administrator has disabled public write access.
The following user(s) said Thank You: mojtabapordel
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!