Hi

In Drupal 6.22 and Views 6.x-2.11

I am having a node image and node nid and node title in grid view.

Node nid is "Excluded from display*
I am rewriting the output of image (sing replacement patterns) as:
<a href="/node/[nid]/lightbox2" rel="lightframe">[field_image_cache_fid]</a>

I have also copied the file page-node-lightbox2.tpl.php from the lightbox2 module directory to my theme directory. And cleared the cache. However it does not show anything in lightbox but just empty popup window with background set to body tag.

Just to ensure if lightbox2 is configure correctly, I displayed the full nodepage in lightbox2 using following code:
<a href="/node/[nid]" rel="lightframe">[field_image_cache_fid]</a>

With this, it is working properly showing the same node in lightbox. It shows header, footer and sidebar which I don't want.

Also If I include dimensions in the last mentioned code as:
<a href="/node/[nid]" rel="lightframe[|width:400px;height:400px;]">[field_image_cache_fid]</a>

then it opens the link in new window and not the lightbox.

Are there any points which I am missing.