Thread: Sharepoint
View Single Post
  #3 (permalink)  
Old 05-26-2009, 06:17 PM
Pelvir's Avatar
Pelvir Pelvir is offline
BES Administrator
 
Join Date: Jan 2009
Location: New Orleans, La
Posts: 27
Default

Quote:
Originally Posted by hdawg View Post
Sounds like an issue with how the page is displaying the button. Javascript? What if you view the source of the page ... do you see different methods of display for the Publish and Cancel button?

For example; on this page:

Code:
<input type="submit" class="button" value="Post Quick Reply" accesskey="s" title="(Alt + S)" name="sbutton" tabindex="2" id="qr_submit" onclick="clickedelm = this.value" />
<input type="submit" class="button" value="Go Advanced" accesskey="x" title="(Alt + X)" name="preview" tabindex="3" id="qr_preview" onclick="clickedelm = this.value" />
Here is what i have...

Code:
<input type="button" name="ctl00$m$g_988c061e_677c_444c_93d8_486db440a438$ctl00$toolBarTbltop$RightRptControls$ctl01$ctl00$diidIOSaveItem" value="Publish" onclick="if (!PreSaveItem()) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_988c061e_677c_444c_93d8_486db440a438$ctl00$toolBarTbltop$RightRptControls$ctl01$ctl00$diidIOSaveItem&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_988c061e_677c_444c_93d8_486db440a438_ctl00_toolBarTbltop_RightRptControls_ctl01_ctl00_diidIOSaveItem" accesskey="O" class="ms-ButtonHeightWidth" target="_self" />

<input type="button" name="ctl00$m$g_988c061e_677c_444c_93d8_486db440a438$ctl00$toolBarTbltop$RightRptControls$ctl02$ctl00$diidIOGoBack" value="Cancel" onclick="STSNavigate('\u002fIT\u002fpatrickeblog\u002f');return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_988c061e_677c_444c_93d8_486db440a438$ctl00$toolBarTbltop$RightRptControls$ctl02$ctl00$diidIOGoBack&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_988c061e_677c_444c_93d8_486db440a438_ctl00_toolBarTbltop_RightRptControls_ctl02_ctl00_diidIOGoBack" accesskey="C" class="ms-ButtonHeightWidth" target="_self" />
They look the same to me, but I am certainly no coder!
Reply With Quote