Comments on: JQuery for Everyone: Live Preview Pane http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/ No GeekSpeak on SharePoint 2007 WSS and MOSS Mon, 27 Dec 2010 14:28:49 -0500 http://wordpress.org/?v=2.8.6 hourly 1 By: Parth http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-72009 Parth Thu, 03 Jun 2010 21:01:38 +0000 http://www.endusersharepoint.com/?p=1514#comment-72009 I have implemented ur solution on SharePoint Calendar. Works just fine. Currently the tool tip would display all default columns for specific item. What if i just want to display "Title" and "Start Date" when an item has been mouse hover?? I have implemented ur solution on SharePoint Calendar. Works just fine.
Currently the tool tip would display all default columns for specific item.
What if i just want to display “Title” and “Start Date” when an item has been mouse hover??

]]>
By: AutoSponge http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-52516 AutoSponge Tue, 06 Apr 2010 17:54:41 +0000 http://www.endusersharepoint.com/?p=1514#comment-52516 There's a problem with some lists and the "wiki" configuration. If you have issues where certain links seem to need two mouse-overs to display, comment that line out like this: [sourcecode lang="xml"] //.preview({type:"wiki",links:"a[href*='.aspx']:has(img.ms-hidden)",key:"table",selector:"div#WebPartWPQ1"}) [/sourcecode] There’s a problem with some lists and the “wiki” configuration. If you have issues where certain links seem to need two mouse-overs to display, comment that line out like this:

//.preview({type:"wiki",links:"a[href*='.aspx']:has(img.ms-hidden)",key:"table",selector:"div#WebPartWPQ1"})
]]>
By: SharePoint http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-48362 SharePoint Mon, 22 Mar 2010 21:26:02 +0000 http://www.endusersharepoint.com/?p=1514#comment-48362 It keeps on asking me - To display the web page again, IE need to resent the information you've previously submitted. If you were making a purchase, you should cancel to avoid a duplicate transaction. Otherwise, click retry to display the webpage again! It keeps on asking me – To display the web page again, IE need to resent the information you’ve previously submitted.

If you were making a purchase, you should cancel to avoid a duplicate transaction. Otherwise, click retry to display the webpage again!

]]>
By: Bharat Sharma http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-33482 Bharat Sharma Tue, 16 Feb 2010 11:48:10 +0000 http://www.endusersharepoint.com/?p=1514#comment-33482 Hi, How can i use the above script with Calendar control? Thanks Hi,

How can i use the above script with Calendar control?

Thanks

]]>
By: Jason http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-19013 Jason Wed, 11 Nov 2009 16:21:28 +0000 http://www.endusersharepoint.com/?p=1514#comment-19013 FOUND IT. jQuery.fn.preview = function(options){ bind(this,options); if (!jQuery.fn.preview.preload){ jQuery.fn.preview.preload = cookie_read(this); } //return this; return; }; Changed it to just "return" and it works 1st time everytime. FOUND IT.

jQuery.fn.preview = function(options){
bind(this,options);
if (!jQuery.fn.preview.preload){
jQuery.fn.preview.preload = cookie_read(this);
}
//return this;
return;
};

Changed it to just “return” and it works 1st time everytime.

]]>
By: Jason http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-18969 Jason Tue, 10 Nov 2009 21:24:31 +0000 http://www.endusersharepoint.com/?p=1514#comment-18969 Did anyone ever figure out the double hover issue? I hover over an item and the gif fires but not results, mouseout and hover over the item again, it fires and then the list display item loads. Did anyone ever figure out the double hover issue? I hover over an item and the gif fires but not results, mouseout and hover over the item again, it fires and then the list display item loads.

]]>
By: AutoSponge http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-17624 AutoSponge Thu, 01 Oct 2009 12:23:57 +0000 http://www.endusersharepoint.com/?p=1514#comment-17624 @Jorge, You can override the preview defaults (or replace them) with a selector that drops most of the header, like this: <pre lang="javascript"> $("#previewContent").preview(remove: ":button, table.ms-formtoolbar:first, td.ms-toolbar:not(:contains('Alert Me')), td.ms-separator") </pre> @Jorge,

You can override the preview defaults (or replace them) with a selector that drops most of the header, like this:

$("#previewContent").preview(remove: ":button, table.ms-formtoolbar:first, td.ms-toolbar:not(:contains('Alert Me')), td.ms-separator")
]]>
By: Jorge http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-17590 Jorge Wed, 30 Sep 2009 15:36:29 +0000 http://www.endusersharepoint.com/?p=1514#comment-17590 Again the toolbar... So, is it possible to display only some os the item from the toolbar. I just want to display the "Alert Me" item? Again the toolbar… So, is it possible to display only some os the item from the toolbar. I just want to display the “Alert Me” item?

]]>
By: AutoSponge http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-17314 AutoSponge Mon, 21 Sep 2009 23:39:07 +0000 http://www.endusersharepoint.com/?p=1514#comment-17314 @Adam, The preview was designed to run in a specific area of the screen and accommodates basically whatever data the display form holds. It can display the toolbar and all of the "audit" data. Loadtip was designed for small bits (like Event data). It can't reasonably hold the toolbar. Otherwise, they're basically the same. They both pull in the HTML from the display form. @Adam,

The preview was designed to run in a specific area of the screen and accommodates basically whatever data the display form holds. It can display the toolbar and all of the “audit” data.

Loadtip was designed for small bits (like Event data). It can’t reasonably hold the toolbar. Otherwise, they’re basically the same. They both pull in the HTML from the display form.

]]>
By: Adam http://www.endusersharepoint.com/2009/04/11/jquery-for-everyone-live-preview-pane/comment-page-2/#comment-17281 Adam Sun, 20 Sep 2009 19:54:07 +0000 http://www.endusersharepoint.com/?p=1514#comment-17281 Hi AutoSponge this is a great script! My question is do I have to use the preview in a webpart or can it be displayed using your loadtip? Thanks! Hi AutoSponge this is a great script! My question is do I have to use the preview in a webpart or can it be displayed using your loadtip?

Thanks!

]]>