Navigation

Search

Categories

On this page

Duplicate submit bar in SharePoint surveys

Archive

Blogroll

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 120
This Year: 1
This Month: 0
This Week: 0
Comments: 40

Sign In
Pick a theme:

# Thursday, July 13, 2006
Thursday, July 13, 2006 3:19:35 PM (Mountain Daylight Time, UTC-06:00) ( )

Per the awesome post from Jim Duncan http://dev.collutions.com/blog/Pages/CloneToolbar.aspx

<img src="/_layouts/images/blank.gif" onload="CloneToolBarAndInsertAfter(this)">
  <script language="javascript">
<!--
function CloneToolBarAndInsertAfter(element)
{
 var i = 0;
 var theTables;
 var theNewToolBar = document.createElement("TABLE");
 var theTables = document.all.tags("TABLE");
 while (theTables[i].className != "ms-toolbar") i++;
 theNewToolBar = theTables[i].cloneNode(true);
 element.insertAdjacentElement('afterEnd',theNewToolBar);
}

//-->
</script>

Comments [0] | | #