as title

Comments

Odd Hill’s picture

No, as far as I know, it currently doesn't support it.

We're using admin hover on all our installations and we love it. However, on some occasions we use views to show nodes that are never intended to be viewed on the node page. We sometimes use the Views field "node: edit link" to make it easier for the end user (otherwise they would have to go to admin/content which can be cumbersome). However, it's not very consistent. I wouldn't mind putting our programmer on helping you out with the module when it comes to integrating this feature, if it's something you would want. For our sake, we would definitely want such a feature.

to Conortm:

You can contact me here or at adam.gerthel@oddhill.se if you need a co-maintaner.

/Adam @ Odd Hill

Anonymous’s picture

Also with regard to views intergration with views. It seems that if you click edit on a block created by a view the page specific settings (which pages the block displays on) are not there. You have to navigate to the blocks the old way to change the settings.

mdeltito’s picture

I believe this is technically already supported. If you were to customize the template of the view (row output) you could easily add the required class/id for Admin:hover to work properly.

jwaxman’s picture

I got this to work by rewriting the output of a field in my view to contain

<div id=node-[nid] class=node>[myfield]</div>

The node id was included as a field in the view and excluded from the display.
myfield is, of course, the field you're rewriting.