This module is not fully compatible with views, since I tried different ways to use Simple Dialog links without success:

Views strips out the styling parts of the "REL" link attribute.

For example, using "Rewrite the output of this field", with a link that includes, rel="width:500"
it becomes rel="500", which obviously does not work.
The option 'Output this field as a link' is useless since it does not provide a REL attribute field,
The same happens when using Global:Custom text field.

This is done by design in order to secure views, and it is expected that the styling is done on the theme level.

Comments

Yuri created an issue.

Yuri’s picture

A workaround is to use CSS:

.ui-dialog {
width: 500px !important;
margin: 150px auto 0;
}