
Patrick Haggerty
Top achievements
Rank 1
Patrick Haggerty
asked on 17 Feb 2011, 07:16 PM
Hey Y'all,
I have a RadTabStrip on a site page I've built for SharePoint. The formatting worked perfectly on SharePoint 2007, but now that I've upgraded to 2010 I have a formatting issue. The tabs are displaying below the level of the quick launch (See Figure1.png). I've used the web dev tool in IE8 and tracked it to the clear:both coming from the .RadTabStrip .rtsLevel style (See Figure2.png, notice that forcing the style in the browser causes the tabs to display properly). The style is coming from your WebResource.axd and I can't seem to make my style take priority over the one you have coming in. Is there a way in the page or in my code to manually change that one style setting?
Thanks.
I have a RadTabStrip on a site page I've built for SharePoint. The formatting worked perfectly on SharePoint 2007, but now that I've upgraded to 2010 I have a formatting issue. The tabs are displaying below the level of the quick launch (See Figure1.png). I've used the web dev tool in IE8 and tracked it to the clear:both coming from the .RadTabStrip .rtsLevel style (See Figure2.png, notice that forcing the style in the browser causes the tabs to display properly). The style is coming from your WebResource.axd and I can't seem to make my style take priority over the one you have coming in. Is there a way in the page or in my code to manually change that one style setting?
Thanks.
6 Answers, 1 is accepted
0

Patrick Haggerty
Top achievements
Rank 1
answered on 18 Feb 2011, 02:27 PM
I found a solution to this, though I doubt it's the best solution to the problem. It breaks the editor full screen mode and things jump around some when you refresh, which is ugly. I have the JQuery JavaScript library attached to the page for some other things that I do and I used it to manually reset the clear when the page first loads by placing the following at the bottom of the page:
As I said, it's pretty much a hack, but it works. If you have any other suggestions, please let me know.
Take care.
<
script
type
=
"text/javascript"
>
function fixTabPosition(){
$(".RadTabStrip .rtsLevel").css("clear", "none");
}
fixTabPosition();
</
script
>
Then I added a client event to the RadAjaxManager to force the formatting each time the page does an AJAX refresh
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
<
ClientEvents
OnResponseEnd
=
"fixTabPosition"
/>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"MainAJAXPanel"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"MainAJAXPanel"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
As I said, it's pretty much a hack, but it works. If you have any other suggestions, please let me know.
Take care.
0
Hello Patrick Haggerty,
Please excuse us for the delay.
There is a difference between SharePoint 2007 and 2010 - SharePoint 2010 uses a new css file called "corev4.css", located at layouts/1033/styles/Themable/corev4.css on the server.
However the styles defined in this file sometimes can change your pages appearance after an upgrade.
If you want to override the .RadTabStrip .rtsLevel style, you can open your master page in SharePoint Designer and add this style in the head section:
If the issue persists - could you please provide us a live URL where we will be able to observe it? Thank you.
Best wishes,
Kalina
the Telerik team
Please excuse us for the delay.
There is a difference between SharePoint 2007 and 2010 - SharePoint 2010 uses a new css file called "corev4.css", located at layouts/1033/styles/Themable/corev4.css on the server.
However the styles defined in this file sometimes can change your pages appearance after an upgrade.
If you want to override the .RadTabStrip .rtsLevel style, you can open your master page in SharePoint Designer and add this style in the head section:
div.RadTabStrip .rtsLevel {
/* your style definition is here */
}
If the issue persists - could you please provide us a live URL where we will be able to observe it? Thank you.
Best wishes,
Kalina
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0

Tag
Top achievements
Rank 1
answered on 17 Apr 2012, 04:42 PM
I had the same problem so just added
div.RadTabStrip .rtsLevel {clear:none}
to my page. But that only moves the tab strip to the top aligned, not the RadMultiPage or PageViews.
I've tried a couple styles but can't fina anything similar to move the Page Views up. They are still aligned with the bottom of the quick links. Even tried wrapping them.
Any suggestions?
div.RadTabStrip .rtsLevel {clear:none}
to my page. But that only moves the tab strip to the top aligned, not the RadMultiPage or PageViews.
I've tried a couple styles but can't fina anything similar to move the Page Views up. They are still aligned with the bottom of the quick links. Even tried wrapping them.
Any suggestions?
0
Hello Tag,
Can you paste here (using the Format Code block tool) the full RadTabStrip, RadMultiPage and RadPageView markup that you use?
Do you use the embedded SharePoint 2010 master pages?
Regards,
Kalina
the Telerik team
Can you paste here (using the Format Code block tool) the full RadTabStrip, RadMultiPage and RadPageView markup that you use?
Do you use the embedded SharePoint 2010 master pages?
Regards,
Kalina
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Edwin
Top achievements
Rank 1
answered on 23 Apr 2015, 09:32 AM
I am having the same problem. Any suggestion for fixing radmultipage position in Sharepoint 2010?
Master Page
<%@Master language="C#"%>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="wssuc" TagName="Welcome" src="~/_controltemplates/Welcome.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="MUISelector" src="~/_controltemplates/MUISelector.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="DesignModeConsole" src="~/_controltemplates/DesignModeConsole.ascx" %>
<%@ Register Assembly="Telerik.Web.UI, Version=2015.1.225.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
<
html
lang="<%$Resources:wss,language_value%>" dir="<%$Resources:wss,multipages_direction_dir_value%>" runat="server" xmlns:o="urn:schemas-microsoft-com:office:office" __expr-val-dir="ltr">
<
head
runat
=
"server"
>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=8"
/>
<
meta
name
=
"GENERATOR"
content
=
"Microsoft SharePoint"
/>
<
meta
name
=
"progid"
content
=
"SharePoint.WebPartPage.Document"
/>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
/>
<
meta
http-equiv
=
"Expires"
content
=
"0"
/>
<
SharePoint:RobotsMetaTag
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl00'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
title
id
=
"onetidTitle"
><
asp:ContentPlaceHolder
id
=
"PlaceHolderPageTitle"
runat
=
"server"
/></
title
>
<
SharePoint:CssLink
runat
=
"server"
Version
=
"4"
__designer:Preview="<link rel="stylesheet" type="text/css" href="/_layouts/1033/styles/Themable/corev4.css"/>
" __designer:Values="<
P
N
=
'UIVersion'
T
=
'4'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl01'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:Theme
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl02'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:ULSClientConfig
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl03'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
script
type
=
"text/javascript"
>
var _fV4UI = true;
</
script
>
<
SharePoint:ScriptLink
language
=
"javascript"
name
=
"core.js"
OnDemand
=
"true"
runat
=
"server"
__designer:Preview="<script type="text/javascript">
//
<![CDATA[
document.write('<script type="text/javascript" src="/_layouts/1033/init.js?rev=lEi61hsCxcBAfvfQNZA%2FsQ%3D%3D"></' + 'script>');
// ]]>
</
script
>
" __designer:Values="<
P
N
=
'Language'
T
=
'javascript'
/><
P
N
=
'Name'
T
=
'core.js'
/><
P
N
=
'OnDemand'
T
=
'True'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl04'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:CustomJSUrl
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl05'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:SoapDiscoveryLink
runat
=
"server"
__designer:Preview="<link type="text/xml" rel="alternate" href="/_vti_bin/spsdisco.aspx" />" __designer:Values="<
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl06'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
link
href
=
"/_layouts/css/menu.css"
type
=
"text/css"
rel
=
"stylesheet"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderAdditionalPageHead"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"AdditionalPageHead"
AllowMultipleControls
=
"true"
__designer:Preview
=
"[ MyLinksRibbon "ctl00_ctl08" ][ SpellCheckV4Action "ctl00_ctl09" ]"
__designer:Values="<P
N
=
'ControlId'
T
=
'AdditionalPageHead'
/><
P
N
=
'AllowMultipleControls'
T
=
'True'
/><
P
N
=
'ID'
T
=
'ctl07'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:SPShortcutIcon
runat
=
"server"
IconUrl
=
"/BII%20Picture%20Library/favicon.ico"
__designer:Preview="<link rel="shortcut icon" href="/BII%20Picture%20Library/favicon.ico" type="image/vnd.microsoft.icon" />" __designer:Values="<
P
N
=
'IconUrl'
T
=
'/BII%20Picture%20Library/favicon.ico'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl10'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderBodyAreaClass"
runat
=
"server"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTitleAreaClass"
runat
=
"server"
/>
<
SharePoint:SPPageManager
runat
=
"server"
__designer:Preview
=
"[ SPPageManager "Unnamed10" ]"
__designer:Values="<P
N
=
'ID'
T
=
'ctl11'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
SharePoint:SPHelpPageComponent
Visible
=
"false"
runat
=
"server"
__designer:Preview="<span></
span
>" __designer:Values="<
P
N
=
'Visible'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl12'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
link
href
=
"/Styles/Grid.BII.css"
rel
=
"stylesheet"
type
=
"text/css"
></
link
>
<
style
type
=
"text/css"
>
.style1 {
margin-bottom: 0px;
}
.style2 {
font-size: medium;
}
div.RadTabStrip .rtsLevel {clear:none}
div.RadTabStrip {clear:none}
</
style
>
</
head
>
<
body
scroll
=
"no"
onload
=
"if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();"
class
=
"v4master"
>
<
form
runat
=
"server"
onsubmit
=
"if (typeof(_spFormOnSubmitWrapper) != 'undefined') {return _spFormOnSubmitWrapper();} else {return true;}"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
EnablePageMethods
=
"false"
EnablePartialRendering
=
"true"
EnableScriptGlobalization
=
"false"
EnableScriptLocalization
=
"true"
__designer:Preview="<table style="border:1px solid #CCCCCC;" cellspacing="0" cellpadding="0">
<
tr
>
<
td
nowrap style="font:messagebox;background-color:#ffffff;color:#444444;background-image:url();background-position:bottom;background-repeat:repeat-x;padding:4px;"><
strong
>RadScriptManager</
strong
> - RadScriptManager1</
td
>
</
tr
>
</
table
>" __designer:Values="<
P
N
=
'ID'
T
=
'RadScriptManager1'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"></
telerik:RadScriptManager
>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
__designer:Preview="Telerik AJAX Manager v2015.1.225.35</p>" __designer:Values="<
P
N
=
'ID'
T
=
'RadAjaxManager1'
/><
P
N
=
'IsAjaxRequest'
T
=
'False'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
</
telerik:RadAjaxManager
>
<
WebPartPages:SPWebPartManager
id
=
"m"
runat
=
"Server"
/>
<
SharePoint:SPNoScript
runat
=
"server"
__designer:Preview="<noscript><
div
class
=
'noindex'
>You may be trying to access this site from a secured browser on the server. Please enable scripts and reload this page.</
div
></
noscript
>" __designer:Values="<
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl13'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
div
id
=
"TurnOnAccessibility"
style
=
"display:none"
class
=
"s4-notdlg noindex"
>
<
a
id
=
"linkTurnOnAcc"
href
=
"#"
class
=
"ms-TurnOnAcc"
onclick
=
"SetIsAccessibilityFeatureEnabled(true);UpdateAccessibilityUI();document.getElementById('linkTurnOffAcc').focus();return false;"
>
<
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,master_turnonaccessibility%>" EncodeMethod="HtmlEncode" __designer:Preview="Turn on more accessible mode" __designer:Values="<
P
N
=
'Text'
Bound
=
'True'
T
=
'Resources:wss,master_turnonaccessibility'
/><
P
N
=
'ID'
T
=
'ctl14'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/></
a
>
</
div
>
<
div
id
=
"TurnOffAccessibility"
style
=
"display:none"
class
=
"s4-notdlg noindex"
>
<
a
id
=
"linkTurnOffAcc"
href
=
"#"
class
=
"ms-TurnOffAcc"
onclick
=
"SetIsAccessibilityFeatureEnabled(false);UpdateAccessibilityUI();document.getElementById('linkTurnOnAcc').focus();return false;"
>
<
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,master_turnoffaccessibility%>" EncodeMethod="HtmlEncode" __designer:Preview="Turn off more accessible mode" __designer:Values="<
P
N
=
'Text'
Bound
=
'True'
T
=
'Resources:wss,master_turnoffaccessibility'
/><
P
N
=
'ID'
T
=
'ctl15'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/></
a
>
</
div
>
<
div
class
=
"s4-notdlg s4-skipribbonshortcut noindex"
>
<
a
href
=
"javascript:;"
onclick
=
"javascript:this.href='#startNavigation';"
class
=
"ms-SkiptoNavigation"
accesskey="<%$Resources:wss,skipribbon_accesskey%>" runat="server">
<
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,skipRibbonCommandsLink%>" EncodeMethod="HtmlEncode" __designer:Preview="Skip Ribbon Commands" __designer:Values="<
P
N
=
'Text'
Bound
=
'True'
T
=
'Resources:wss,skipRibbonCommandsLink'
/><
P
N
=
'ID'
T
=
'ctl16'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/></
a
>
</
div
>
<
div
class
=
"s4-notdlg noindex"
>
<
a
href
=
"javascript:;"
onclick
=
"javascript:this.href='#mainContent';"
class
=
"ms-SkiptoMainContent"
accesskey="<%$Resources:wss,maincontent_accesskey%>" runat="server">
<
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,mainContentLink%>" EncodeMethod="HtmlEncode" __designer:Preview="Skip to main content" __designer:Values="<
P
N
=
'Text'
Bound
=
'True'
T
=
'Resources:wss,mainContentLink'
/><
P
N
=
'ID'
T
=
'ctl17'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/></
a
>
</
div
>
<
a
id
=
"HiddenAnchor"
href
=
"javascript:;"
style
=
"display:none;"
></
a
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"GlobalNavigation"
__designer:Preview="<span style="display:none"></
span
>" __designer:Values="<
P
N
=
'ControlId'
T
=
'GlobalNavigation'
/><
P
N
=
'ID'
T
=
'ctl18'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
div
id
=
"s4-ribbonrow"
class
=
"s4-pr s4-ribbonrowhidetitle"
>
<
div
id
=
"s4-ribboncont"
>
<
SharePoint:SPRibbon
runat
=
"server"
PlaceholderElementId
=
"RibbonContainer"
CssFile
=
""
__designer:Preview="<input id="RibbonContainer_activeTabId" name="ctl00$ctl19" type="hidden" value=""></
input
><
div
id
=
'RibbonContainer'
><
div
class="ms-cui-ribbon" id="Ribbon" unselectable="on" aria-describedby="ribboninstructions" oncontextmenu="return false" role="toolbar"><
span
class="ms-cui-hidden" id="ribboninstructions" unselectable="on">To navigate through the Ribbon, use standard browser navigation keys. To skip between groups, use Ctrl+LEFT or Ctrl+RIGHT. To jump to the first Ribbon tab use Ctrl+[. To jump to the last selected command use Ctrl+]. To activate a command, use Enter.</
span
><
div
class="ms-cui-ribbonTopBars" unselectable="on"><
div
class="ms-cui-topBar1" unselectable="on" style="display:none"><
div
class="ms-cui-qat-container" unselectable="on"></
div
></
div
><
div
class="ms-cui-topBar2" unselectable="on"><
div
class="ms-cui-jewel-container" id="jewelcontainer" unselectable="on" style="display:none"></
div
><
div
class="ms-cui-TabRowLeft ms-siteactionscontainer s4-notdlg" id="RibbonContainer-TabRowLeft" unselectable="on">
<
span
class="ms-siteactionsmenu" id="siteactiontd">
<
span
style="display:none"><
menu
type
=
'ServerMenu'
id="zz1_SiteActionsMenuMain" largeiconmode="true"><
ie:menuitem
id="ctl00_SiteActionsMenuMain_ctl00_MenuItem_TakeOffline" type="option" iconSrc="/_layouts/images/connecttospworkspace32.png" onMenuClick="javaScript:CoreInvoke('TakeOfflineToClientReal',1, 1, 'http:\u002f\u002fdlx:94', -1, -1, '', '')" hidden="TakeOfflineDisabled(1, 1, -1, -1)" menuGroupId="100"></
ie:menuitem
>
<
ie:menuitem
id="zz2_MenuItem_CreatePage" type="option" iconSrc="/_layouts/images/NewContentPageHH.png" onMenuClick="if (LaunchCreateHandler('Page')) { OpenCreateWebPageDialog('\u002f_layouts/createwebpage.aspx') }" menuGroupId="200"></
ie:menuitem
>
<
ie:menuitem
id="zz3_MenuItem_CreateDocLib" type="option" iconSrc="/_layouts/images/NewDocLibHH.png" onMenuClick="if (LaunchCreateHandler('DocLib')) { GoToPage('\u002f_layouts/new.aspx?FeatureId={00bfea71-e717-4e80-aa17-d0c71b360101}&
ListTemplate
=
101
') }" menuGroupId="200"></
ie:menuitem
>
<
ie:menuitem
id="zz4_MenuItem_CreateSite" type="option" iconSrc="/_layouts/images/newweb32.png" onMenuClick="if (LaunchCreateHandler('Site')) { STSNavigate('\u002f_layouts/newsbweb.aspx') }" menuGroupId="200"></
ie:menuitem
>
<
ie:menuitem
id="zz5_MenuItem_Create" type="option" onMenuClick="if (LaunchCreateHandler('All')) { STSNavigate('\u002f_layouts/create.aspx') }" menuGroupId="200"></
ie:menuitem
>
<
ie:menuitem
id="zz6_MenuItem_ViewAllSiteContents" type="option" iconSrc="/_layouts/images/allcontent32.png" onMenuClick="STSNavigate2(event,'/_layouts/viewlsts.aspx');" menuGroupId="300"></
ie:menuitem
>
<
ie:menuitem
id="zz7_MenuItem_EditSite" type="option" iconSrc="/_layouts/images/SharePointDesigner32.png" onMenuClick="EditInSPD('\u002f',true);" menuGroupId="300"></
ie:menuitem
>
<
ie:menuitem
id="zz8_MenuItem_SitePermissions" type="option" iconSrc="/_layouts/images/Permissions32.png" onMenuClick="STSNavigate2(event,'/_layouts/user.aspx');" menuGroupId="300"></
ie:menuitem
>
<
ie:menuitem
id="zz9_MenuItem_Settings" type="option" iconSrc="/_layouts/images/settingsIcon.png" onMenuClick="STSNavigate2(event,'/_layouts/settings.aspx');" menuGroupId="300"></
ie:menuitem
>
<
ie:menuitem
id="zz10_MenuItem_CommitNewUI" type="option" iconSrc="/_layouts/images/visualupgradehh.png" onMenuClick="GoToPage('\u002f_layouts/prjsetng.aspx')" menuGroupId="300"></
ie:menuitem
>
</
menu
></
span
><
span
id="zz11_SiteActionsMenu_t" class="ms-siteactionsmenuinner" title="Open Menu" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoveractive="ms-siteactionsmenuhover" hoverinactive="ms-siteactionsmenuinner" onclick=" CoreInvoke('MMU_Open',byid(''), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0); return false;" foa="MMU_GetMenuFromClientId('zz11_SiteActionsMenu')" oncontextmenu="ClkElmt(this); return false;" style="white-space:nowrap"><
a
class="ms-menu-a" id="zz11_SiteActionsMenu" href="javascript:;" style="cursor:pointer;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid(''), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid(''), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'), event);" onclick=" CoreInvoke('MMU_Open',byid(''), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0); return false;" oncontextmenu="ClkElmt(this); return false;" menutokenvalues="
MENUCLIENTID
=
zz11_SiteActionsMenu
,
TEMPLATECLIENTID
=
zz1_SiteActionsMenuMain
" serverclientid="zz11_SiteActionsMenu"><
span
>Site Actions</
span
><
img
src="/_layouts/images/blank.gif"
style
=
'border:0px'
alt="Use SHIFT+ENTER to open the menu (new window)."/></
a
><
span
style="height:3px;width:5px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust ms-viewselector-arrow"><
img
src="/_layouts/images/fgimg.png" alt="Open Menu" style="border-width:0px;position:absolute;left:-0px !important;top:-491px !important;" /></
span
></
span
></
span
>
<
span
class="s4-breadcrumb-anchor"><
span
style="height:16px;width:16px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust"><
a
id="GlobalBreadCrumbNavPopout-anchor" onclick="CoreInvoke('callOpenBreadcrumbMenu', event, 'GlobalBreadCrumbNavPopout-anchor', 'GlobalBreadCrumbNavPopout-menu', 'GlobalBreadCrumbNavPopout-img', 's4-breadcrumb-anchor-open', 'ltr', '', false); return false;" onmouseover="" onmouseout="" title="" href="javascript:;" style="display:inline-block;height:16px;width:16px;"><
img
src="/_layouts/images/fgimg.png" style="border:0;position:absolute;left:-0px !important;top:-112px !important;" /></
a
></
span
></
span
><
div
class="ms-popoutMenu s4-breadcrumb-menu" id="GlobalBreadCrumbNavPopout-menu" style="display:none;">
<
div
class="s4-breadcrumb-top">
<
span
class="s4-breadcrumb-header"></
span
>
</
div
>
<
ul
class="s4-breadcrumb">
</
ul
>
</
div
>
<
div
class="s4-die">
</
div
>
</
div
><
ul
class="ms-cui-tts" unselectable="on" role="tablist"><
li
class="ms-cui-tt ms-browseTab ms-cui-tt-s" id="Ribbon.Read-title" unselectable="on" role="tab"><
a
class="ms-cui-tt-a" unselectable="on" href="javascript:;" onclick="_ribbonStartInit('Ribbon.Read',false, event);" unselectable="on" title="Browse" onkeypress="if(event != null && event.keyCode == 13){ if(typeof(_ribbon) != 'undefined')
_ribbon.launchedByKeyboard
=
true
; _ribbonStartInit('Ribbon.Read',false, event); }"><
span
class="ms-cui-tt-span" unselectable="on">Browse</
span
><
span
class="ms-cui-hidden" unselectable="on">Tab 1 of 1.</
span
></
a
></
li
></
ul
><
div
class="ms-cui-TabRowRight s4-trc-container s4-notdlg" id="RibbonContainer-TabRowRight" unselectable="on">
<
a
href="#" tabindex="-1" style="display:none"></
a
><
a
href="#" tabindex="-1" style="display:none"></
a
>
<
div
class="s4-trc-container-menu">
<
div
>
</
div
>
</
div
>
<
span
>
<
span
class="s4-devdashboard">
<
span
style="height:16px;width:16px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust"><
a
id="ctl00_DeveloperDashboardLauncher" Href="javascript:ToggleDeveloperDashboard()" style="display:inline-block;height:16px;width:16px;"><
img
src="/_layouts/images/fgimg.png" style="border:0;position:absolute;left:-0px !important;top:-222px !important;" /></
a
></
span
>
</
span
>
</
span
>
</
div
></
div
></
div
></
div
></
div
>
<
script
type="text/javascript">
//
<![CDATA[
var _ribbon = new Object();
_ribbon.initialTabId = 'Ribbon.Read';
_ribbon.buildMinimized = true;
_ribbon.initStarted = false;
_ribbon.initialTabSelectedByUser = false;
_ribbon.launchedByKeyboard = false;
function _ribbonInitFunc1()
{
try
{
var temp = new CUI.RibbonBuildOptions();
}
catch(e)
{
return;
}
var options = new CUI.RibbonBuildOptions();
options.lazyTabInit = true;
options.shallowTabs = true;
options.lazyMenuInit = true;
options.attachToDOM = false;
options.initialScalingIndex = 0;
options.validateServerRendering = false;
options.showQATId = '';
options.showJewelId = '';
options.minimized = _ribbon.buildMinimized;
options.shownTabs = {'Ribbon.Read':true};;
options.shownContextualGroups = null;
options.initiallyVisibleContextualGroups = null;
options.normalizedContextualGroups = null;
options.trimmedIds = null;
options.enabledVisibilityContexts = null;
options.fixedPositioningEnabled = false;
options.clientID = 'RibbonContainer';
options.trimEmptyGroups = true;
options.dataExtensions = null;
options.scalingHint = '777660796';
options.initialTabSelectedByUser = _ribbon.initialTabSelectedByUser;
options.launchedByKeyboard = _ribbon.launchedByKeyboard;
try
{
var temp = SP.Ribbon.PageManager.get_instance();
}
catch(e)
{
return;
}
g_builder = new CUI.RibbonBuilder(options, document.getElementById('RibbonContainer'), SP.Ribbon.PageManager.get_instance());
var dataSource = new CUI.DataSource('\u002f_layouts\u002fcommandui.ashx', '850970359', '1033');
g_builder.set_dataSource(dataSource);
g_builder.buildRibbonAndInitialTab(_ribbon.initialTabId);
}
function _ribbonStartInit(initialTabId, buildMinimized, e)
{
if (true && typeof(_ribbonReadyForInit) == 'function' && !_ribbonReadyForInit())
return;
if (e)
{
_ribbon.initialTabSelectedByUser = true;
}
var firstTabId = null;
var evt = e || window.event;
if (evt)
{
if (!evt.preventDefault)
evt.returnValue = false;
else
evt.preventDefault();
}
if (_ribbon.initStarted)
return;
_ribbon.initStarted = true;
if(typeof(CUI) != 'undefined' && typeof(CUI.PMetrics) != 'undefined')
CUI.PMetrics.perfMark(CUI.PMarker.perfCUIRibbonInitStart);
if (initialTabId)
{
firstTabId = _ribbon.initialTabId;
_ribbon.initialTabId = initialTabId;
}
if (typeof(buildMinimized) != 'undefined')
_ribbon.buildMinimized = buildMinimized;
if(initialTabId && initialTabId != "undefined" && _ribbonOnStartInit)
{
_ribbonOnStartInit(_ribbon);
var oldTab = document.getElementById(firstTabId + "-title");
if (oldTab)
oldTab.className = "ms-cui-tt";
var newTab = document.getElementById(initialTabId + "-title");
if (newTab)
newTab.className = "ms-cui-tt ms-cui-tt-s";
}
var _spRibbonInstantiateByRibbonControl = true;
function _registerCommonComponents()
{
SP.Ribbon.HelpPageComponent.registerWithPageManager();
SP.Ribbon.UserInterfacePageComponent.registerWithPageManager();
}
ExecuteOrDelayUntilScriptLoaded(_registerCommonComponents, "sp.ribbon.js");
function _registerCUIEComponent()
{
var instance = SP.Ribbon.CommandUIExtensionPageComponent.get_instance();
instance.set_dataUrl('\u002f_layouts\u002fcommandui.ashx');
instance.set_dataLCID('1033');
instance.set_dataVersion('850970359');
SP.Ribbon.CommandUIExtensionPageComponent.registerWithPageManager();
}
ExecuteOrDelayUntilScriptLoaded(_registerCUIEComponent, "sp.ribbon.js");
var defd;
try
{
defd = typeof(SP.Ribbon.PageManager);
}
catch (e)
{
defd = "undefined";
}
EnsureScript("ribbon", defd, _ribbonInitFunc1);
}
function _ribbonKeyboardTitleShortcut(e)
{
var evt = e || window.event;
if (evt)
{
var key = (evt.ctrlKey) ? 't' : 'f';
key += (evt.altKey) ? 't' : 'f';
key += (evt.shiftKey) ? 't' : 'f';
try
{
key += String.fromCharCode(_processKeyCodes(evt.keyCode));
}
catch (error)
{
return;
}
if(key == 'tff[')
{
if(document.selection && document.selection.type == 'Control')
{
var r = document.selection.createRange();
var len = r.length;
for (; len > 0; len--)
{
r.remove(len - 1);
}
r.select();
}
var tabHead = document.getElementById('Ribbon.Read-title');
if(tabHead)
{
tabHead = tabHead.firstChild.focus();
}
}
}
}
if (false)
_spBodyOnLoadFunctionNames.push("_ribbonStartInit");
function _ribbonOnWindowResizeForHeaderScaling(evt)
{
if (_ribbon.initStarted)
return;
_ribbonScaleHeader(document.getElementById('RibbonContainer').firstChild.childNodes[1], false);
}
if (typeof(_ribbonScaleHeader) == 'function' && true)
{
_ribbonScaleHeader(document.getElementById('RibbonContainer').firstChild.childNodes[1], false);
if (window.addEventListener)
window.addEventListener('resize', _ribbonOnWindowResizeForHeaderScaling, false);
else if(window.attachEvent)
window.attachEvent('onresize', _ribbonOnWindowResizeForHeaderScaling);
}
if(document.addEventListener)
document.addEventListener('keydown', _ribbonKeyboardTitleShortcut, false);
else
document.attachEvent('onkeydown', _ribbonKeyboardTitleShortcut);
//]]>
</
script
>
<
script
type="text/javascript">
//
<![CDATA[
var g_commandUIHandlers = {"name":"CommandHandlers","attrs":{},"children":[]};
//]]>
</
script
>" __designer:Values="<
P
N
=
'CommandUIVisible'
T
=
'True'
/><
P
N
=
'CssFile'
R
=
'-1'
/><
P
N
=
'PermissionsString'
T
=
'EmptyMask'
/><
P
N
=
'InitialTabId'
T
=
'Ribbon.Read'
/><
P
N
=
'HasAvailableTabs'
T
=
'True'
/><
P
N
=
'ID'
T
=
'ctl19'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
SharePoint:SPRibbonPeripheralContent
runat
=
"server"
Location
=
"TabRowLeft"
CssClass
=
"ms-siteactionscontainer s4-notdlg"
>
<
span
class
=
"ms-siteactionsmenu"
id
=
"siteactiontd"
>
<
SharePoint:SiteActions
runat
=
"server"
accesskey="<%$Resources:wss,tb_SiteActions_AK%>" id="SiteActionsMenuMain"
PrefixHtml=""
SuffixHtml=""
MenuNotVisibleHtml=" "
>
<
CustomTemplate
>
<
SharePoint:FeatureMenuTemplate
runat
=
"server"
FeatureScope
=
"Site"
Location
=
"Microsoft.SharePoint.StandardMenu"
GroupId
=
"SiteActions"
UseShortId
=
"true"
>
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_EditPage"
Text="<%$Resources:wss,siteactions_editpage%>"
Description="<%$Resources:wss,siteactions_editpagedescriptionv4%>"
ImageUrl="/_layouts/images/ActionsEditPage.png"
MenuGroupId="100"
Sequence="110"
ClientOnClickNavigateUrl="javascript:ChangeLayoutMode(false);"
/>
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_TakeOffline"
Text="<%$Resources:wss,siteactions_takeoffline%>"
Description="<%$Resources:wss,siteactions_takeofflinedescription%>"
ImageUrl="/_layouts/images/connecttospworkspace32.png"
MenuGroupId="100"
Sequence="120"
/>
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_CreatePage"
Text="<%$Resources:wss,siteactions_createpage%>"
Description="<%$Resources:wss,siteactions_createpagedesc%>"
ImageUrl="/_layouts/images/NewContentPageHH.png"
MenuGroupId="200"
Sequence="210"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="if (LaunchCreateHandler('Page')) { OpenCreateWebPageDialog('~site/_layouts/createwebpage.aspx') }"
PermissionsString="AddListItems, EditListItems"
PermissionMode="All" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_CreateDocLib"
Text="<%$Resources:wss,siteactions_createdoclib%>"
Description="<%$Resources:wss,siteactions_createdoclibdesc%>"
ImageUrl="/_layouts/images/NewDocLibHH.png"
MenuGroupId="200"
Sequence="220"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="if (LaunchCreateHandler('DocLib')) { GoToPage('~site/_layouts/new.aspx?FeatureId={00bfea71-e717-4e80-aa17-d0c71b360101}&ListTemplate=101') }"
PermissionsString="ManageLists"
PermissionMode="Any"
VisibilityFeatureId="00BFEA71-E717-4E80-AA17-D0C71B360101" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_CreateSite"
Text="<%$Resources:wss,siteactions_createsite%>"
Description="<%$Resources:wss,siteactions_createsitedesc%>"
ImageUrl="/_layouts/images/newweb32.png"
MenuGroupId="200"
Sequence="230"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="if (LaunchCreateHandler('Site')) { STSNavigate('~site/_layouts/newsbweb.aspx') }"
PermissionsString="ManageSubwebs,ViewFormPages"
PermissionMode="All" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_Create"
Text="<%$Resources:wss,siteactions_create%>"
Description="<%$Resources:wss,siteactions_createdesc%>"
MenuGroupId="200"
Sequence="240"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="if (LaunchCreateHandler('All')) { STSNavigate('~site/_layouts/create.aspx') }"
PermissionsString="ManageLists, ManageSubwebs"
PermissionMode="Any" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_ViewAllSiteContents"
Text="<%$Resources:wss,quiklnch_allcontent%>"
Description="<%$Resources:wss,siteactions_allcontentdescription%>"
ImageUrl="/_layouts/images/allcontent32.png"
MenuGroupId="300"
Sequence="302"
UseShortId="true"
ClientOnClickNavigateUrl="~site/_layouts/viewlsts.aspx"
PermissionsString="ViewFormPages"
PermissionMode="Any" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_EditSite"
Text="<%$Resources:wss,siteactions_editsite%>"
Description="<%$Resources:wss,siteactions_editsitedescription%>"
ImageUrl="/_layouts/images/SharePointDesigner32.png"
MenuGroupId="300"
Sequence="304"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="EditInSPD('~site/',true);"
PermissionsString="AddAndCustomizePages"
PermissionMode="Any"
/>
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_SitePermissions"
Text="<%$Resources:wss,people_sitepermissions%>"
Description="<%$Resources:wss,siteactions_sitepermissiondescriptionv4%>"
ImageUrl="/_layouts/images/Permissions32.png"
MenuGroupId="300"
Sequence="310"
UseShortId="true"
ClientOnClickNavigateUrl="~site/_layouts/user.aspx"
PermissionsString="EnumeratePermissions"
PermissionMode="Any" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_Settings"
Text="<%$Resources:wss,settings_pagetitle%>"
Description="<%$Resources:wss,siteactions_sitesettingsdescriptionv4%>"
ImageUrl="/_layouts/images/settingsIcon.png"
MenuGroupId="300"
Sequence="320"
UseShortId="true"
ClientOnClickNavigateUrl="~site/_layouts/settings.aspx"
PermissionsString="EnumeratePermissions,ManageWeb,ManageSubwebs,AddAndCustomizePages,ApplyThemeAndBorder,ManageAlerts,ManageLists,ViewUsageData"
PermissionMode="Any" />
<
SharePoint:MenuItemTemplate
runat
=
"server"
id
=
"MenuItem_CommitNewUI"
Text="<%$Resources:wss,siteactions_commitnewui%>"
Description="<%$Resources:wss,siteactions_commitnewuidescription%>"
ImageUrl="/_layouts/images/visualupgradehh.png"
MenuGroupId="300"
Sequence="330"
UseShortId="true"
ClientOnClickScriptContainingPrefixedUrl="GoToPage('~site/_layouts/prjsetng.aspx')"
PermissionsString="ManageWeb"
PermissionMode="Any"
ShowOnlyIfUIVersionConfigurationEnabled="true" />
</
SharePoint:FeatureMenuTemplate
>
</
CustomTemplate
>
</
SharePoint:SiteActions
></
span
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderGlobalNavigation"
runat
=
"server"
>
<
SharePoint:PopoutMenu
runat
=
"server"
ID
=
"GlobalBreadCrumbNavPopout"
IconUrl
=
"/_layouts/images/fgimg.png"
IconAlt="<%$Resources:wss,master_breadcrumbIconAlt%>"
IconOffsetX=0
IconOffsetY=112
IconWidth=16
IconHeight=16
AnchorCss="s4-breadcrumb-anchor"
AnchorOpenCss="s4-breadcrumb-anchor-open"
MenuCss="s4-breadcrumb-menu">
<
div
class
=
"s4-breadcrumb-top"
>
<
asp:Label
runat
=
"server"
CssClass
=
"s4-breadcrumb-header"
Text="<%$Resources:wss,master_breadcrumbHeader%>" />
</
div
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTitleBreadcrumb"
runat
=
"server"
>
<
SharePoint:ListSiteMapPath
runat
=
"server"
SiteMapProviders
=
"SPSiteMapProvider,SPContentMapProvider"
RenderCurrentNodeAsLink
=
"false"
PathSeparator
=
""
CssClass
=
"s4-breadcrumb"
NodeStyle-CssClass
=
"s4-breadcrumbNode"
CurrentNodeStyle-CssClass
=
"s4-breadcrumbCurrentNode"
RootNodeStyle-CssClass
=
"s4-breadcrumbRootNode"
NodeImageOffsetX
=
0
NodeImageOffsetY
=
353
NodeImageWidth
=
16
NodeImageHeight
=
16
NodeImageUrl
=
"/_layouts/images/fgimg.png"
RTLNodeImageOffsetX
=
0
RTLNodeImageOffsetY
=
376
RTLNodeImageWidth
=
16
RTLNodeImageHeight
=
16
RTLNodeImageUrl
=
"/_layouts/images/fgimg.png"
HideInteriorRootNodes
=
"true"
SkipLinkText
=
""
/>
</
asp:ContentPlaceHolder
>
</
SharePoint:PopoutMenu
>
<
div
class
=
"s4-die"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderGlobalNavigationSiteMap"
runat
=
"server"
Visible
=
"false"
>
</
asp:ContentPlaceHolder
>
</
div
>
</
asp:ContentPlaceHolder
>
<
SharePoint:PageStateActionButton
id
=
"PageStateActionButton"
runat
=
"server"
Visible
=
"false"
/>
</
SharePoint:SPRibbonPeripheralContent
>
<
SharePoint:SPRibbonPeripheralContent
runat
=
"server"
Location
=
"TabRowRight"
ID
=
"RibbonTabRowRight"
CssClass
=
"s4-trc-container s4-notdlg"
>
<
SharePoint:DelegateControl
runat
=
"server"
ID
=
"GlobalDelegate0"
ControlId
=
"GlobalSiteLink0"
/>
<
a
href
=
"#"
tabindex
=
"-1"
style
=
"display:none"
></
a
><
a
href
=
"#"
tabindex
=
"-1"
style
=
"display:none"
></
a
>
<
div
class
=
"s4-trc-container-menu"
>
<
div
>
<
wssuc:Welcome
id
=
"IdWelcome"
runat
=
"server"
EnableViewState
=
"false"
>
</
wssuc:Welcome
>
<
wssuc:MUISelector
ID
=
"IdMuiSelector"
runat
=
"server"
/>
</
div
>
</
div
>
<
SharePoint:DelegateControl
ControlId
=
"GlobalSiteLink2"
ID
=
"GlobalDelegate2"
Scope
=
"Farm"
runat
=
"server"
/>
<
span
>
<
span
class
=
"s4-devdashboard"
>
<
Sharepoint:DeveloperDashboardLauncher
ID
=
"DeveloperDashboardLauncher"
NavigateUrl
=
"javascript:ToggleDeveloperDashboard()"
runat
=
"server"
ImageUrl
=
"/_layouts/images/fgimg.png"
Text="<%$Resources:wss,multipages_launchdevdashalt_text%>"
OffsetX=0
OffsetY=222
Height=16
Width=16 />
</
span
>
</
span
>
</
SharePoint:SPRibbonPeripheralContent
>
</
SharePoint:SPRibbon
>
</
div
>
<
div
id
=
"notificationArea"
class
=
"s4-noti"
>
</
div
>
<
asp:ContentPlaceHolder
ID
=
"SPNavigation"
runat
=
"server"
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"PublishingConsole"
Id
=
"PublishingConsoleDelegate"
__designer:Preview="<span style="display:none"></
span
>" __designer:Values="<
P
N
=
'ControlId'
T
=
'PublishingConsole'
/><
P
N
=
'ID'
T
=
'PublishingConsoleDelegate'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
</
SharePoint:DelegateControl
>
</
asp:ContentPlaceHolder
>
<
div
id
=
"WebPartAdderUpdatePanelContainer"
>
<
asp:UpdatePanel
ID
=
"WebPartAdderUpdatePanel"
UpdateMode
=
"Conditional"
ChildrenAsTriggers
=
"false"
runat
=
"server"
>
<
ContentTemplate
>
<
WebPartPages:WebPartAdder
ID
=
"WebPartAdder"
runat
=
"server"
__designer:Preview="<span id="ctl00_WebPartAdder"></
span
>" __designer:Values="<
P
N
=
'ID'
T
=
'WebPartAdder'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
ContentTemplate
>
<
Triggers
>
<
asp:PostBackTrigger
ControlID
=
"WebPartAdder"
/>
</
Triggers
>
</
asp:UpdatePanel
>
</
div
>
</
div
>
<
div
id
=
"s4-workspace"
>
<
div
id
=
"s4-bodyContainer"
>
<
div
id
=
"s4-titlerow"
class
=
"s4-pr s4-notdlg s4-titlerowhidetitle"
>
<
div
class
=
"s4-title s4-lp"
>
<
div
class
=
"s4-title-inner"
>
<
table
class
=
"s4-titletable"
cellspacing
=
"0"
>
<
tbody
>
<
tr
>
<
td
class
=
"s4-titlelogo"
>
<
SharePoint:SPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/"
id
=
"onetidProjectPropertyTitleGraphic"
__designer:Preview="<a id="ctl00_onetidProjectPropertyTitleGraphic" href="/">
<
img
id="ctl00_onetidHeadbnnr2" name="onetidHeadbnnr0" Src="/_layouts/images/siteIcon.png" alt="BII" style="border-width:0px;" />
</
a
>" __designer:Values="<
P
N
=
'NavigateUrl'
T
=
'~site/'
/><
P
N
=
'PermissionsString'
T
=
'EmptyMask'
/><
P
N
=
'ID'
T
=
'onetidProjectPropertyTitleGraphic'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
SharePoint:SiteLogoImage
name
=
"onetidHeadbnnr0"
id
=
"onetidHeadbnnr2"
LogoImageUrl
=
"/_layouts/images/siteIcon.png"
runat
=
"server"
/>
</
SharePoint:SPLinkButton
>
</
td
>
<
td
class
=
"s4-titletext"
>
<
h1
name
=
"onetidProjectPropertyTitle"
>
<
br
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderSiteName"
runat
=
"server"
>
<
SharePoint:SPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/"
id
=
"onetidProjectPropertyTitle"
class
=
"style2"
__designer:Preview="<a id="ctl00_onetidProjectPropertyTitle" class="style2" href="/">BII</
a
>" __designer:Values="<
P
N
=
'NavigateUrl'
T
=
'~site/'
/><
P
N
=
'PermissionsString'
T
=
'EmptyMask'
/><
P
N
=
'HasAttributes'
T
=
'True'
/><
P
N
=
'ID'
T
=
'onetidProjectPropertyTitle'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"><
SharePoint:ProjectProperty
Property
=
"Title"
runat
=
"server"
/></
SharePoint:SPLinkButton
>
</
asp:ContentPlaceHolder
>
</
h1
>
<
span
id
=
"onetidPageTitleSeparator"
class
=
"s4-nothome s4-bcsep s4-titlesep"
>
<
SharePoint:ClusteredDirectionalSeparatorArrow
runat
=
"server"
__designer:Preview="<span></
span
>" __designer:Values="<
P
N
=
'ID'
T
=
'ctl23'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/> </
span
>
<
h2
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderPageTitleInTitleArea"
runat
=
"server"
/>
</
h2
>
<
div
class
=
"s4-pagedescription"
tabindex
=
"0"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderPageDescription"
runat
=
"server"
>
<
img
alt
=
""
src
=
"/SiteAssets/footer.jpg"
width
=
"1037"
height
=
"9.5"
class
=
"style1"
/>
</
asp:ContentPlaceHolder
>
</
div
>
</
td
>
<
td
class
=
"s4-socialdata-notif"
>
<
SharePoint:DelegateControl
ControlId
=
"GlobalSiteLink3"
Scope
=
"Farm"
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'ControlId'
T
=
'GlobalSiteLink3'
/><
P
N
=
'Scope'
T
=
'Farm'
/><
P
N
=
'ID'
T
=
'ctl24'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
td
>
</
tr
>
</
tbody
>
</
table
>
</
div
>
</
div
>
<
div
id
=
"s4-topheader2"
class
=
"s4-pr s4-notdlg"
>
<
a
name
=
"startNavigation"
></
a
>
<
div
id
=
"s4-searcharea"
class
=
"s4-search s4-rp"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderSearchArea"
runat
=
"server"
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"SmallSearchInputBox"
Version
=
"4"
__designer:Preview="<div id="SRSB"> <
div
id="ctl00_ctl27">
<
input
name="ctl00$ctl27$ctl00" type="hidden" value="http://dlx:94" /><
table
class="ms-sbtable ms-sbtable-ex s4-search" cellpadding="0" cellspacing="0" border="0">
<
tr
class="ms-sbrow">
<
td
class="ms-sbcell"><
input
name="ctl00$ctl27$InputKeywords" type="text" maxlength="200" id="ctl00_ctl27_InputKeywords" accesskey="S" title="Search..." class="ms-sbplain" alt="Search..." onkeypress="javascript: return OSBEK(event);" style="width:170px;" /></
td
><
td
class="ms-sbgo ms-sbcell"><
a
id="ctl00_ctl27_go" title="Search"><
img
title="Search" onmouseover="
this.src
=
'\u002f_layouts\u002fimages\u002fgosearchhover15.png'
" onmouseout="
this.src
=
'\u002f_layouts\u002fimages\u002fgosearch15.png'
" class="srch-gosearchimg" alt="Search" src="/_layouts/images/gosearch15.png" style="border-width:0px;" /></
a
></
td
><
td
class="ms-sbLastcell"></
td
>
</
tr
>
</
table
>
</
div
></
div
>" __designer:Values="<
P
N
=
'ControlId'
T
=
'SmallSearchInputBox'
/><
P
N
=
'Version'
T
=
'4'
/><
P
N
=
'ID'
T
=
'ctl26'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
asp:ContentPlaceHolder
>
<
span
class
=
"s4-help"
>
<
span
style
=
"height:17px;width:17px;position:relative;display:inline-block;overflow:hidden;"
class
=
"s4-clust"
><
a
href
=
"#"
style
=
"height:17px;width:17px;display:inline-block;"
onclick
=
"TopHelpButtonClick('HelpHome');return false"
accesskey="<%$Resources:wss,multipages_helplink_accesskey%>" id="TopHelpLink" title="<%$Resources:wss,multipages_helplinkalt_text%>" runat="server"><
img
src
=
"/_layouts/images/fgimg.png"
alt="<%$Resources:wss,multipages_helplinkalt_text%>" style="left:-0px !important;top:-309px !important;position:absolute;" align="absmiddle" border="0" runat="server" /></
a
></
span
>
</
span
>
</
div
>
<
div
class
=
"s4-rp s4-app"
>
</
div
>
<
div
class
=
"s4-lp s4-toplinks"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTopNavBar"
runat
=
"server"
>
<
h2
class
=
"ms-hidden"
>
<
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,topnav_pagetitle%>" EncodeMethod="HtmlEncode" __designer:Preview="Top Link Bar" __designer:Values="<
P
N
=
'Text'
Bound
=
'True'
T
=
'Resources:wss,topnav_pagetitle'
/><
P
N
=
'ID'
T
=
'ctl28'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/></
h2
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderHorizontalNav"
runat
=
"server"
>
<
SharePoint:AspMenu
ID
=
"TopNavigationMenuV4"
Runat
=
"server"
EnableViewState
=
"false"
DataSourceID
=
"topSiteMap"
AccessKey="<%$Resources:wss,navigation_accesskey%>"
UseSimpleRendering="true"
UseSeparateCss="false"
Orientation="Horizontal"
StaticDisplayLevels="2"
MaximumDynamicDisplayLevels="1"
SkipLinkText=""
CssClass="s4-tn" __designer:Preview="<
link
rel="stylesheet" type="text/css" href="/_layouts/1033/styles/menu-21.css"/>
<
div
id="zz12_TopNavigationMenuV4" class="s4-tn">
<
div
class="menu horizontal menu-horizontal">
<
ul
class="root static">
<
li
class="static selected"><
a
class="static selected menu-item" href="/" accesskey="1"><
span
class="additional-background"><
span
class="menu-item-text">Home</
span
><
span
class="ms-hidden">Currently selected</
span
></
span
></
a
></
li
><
li
class="static"><
a
class="static menu-item" href="/aponline/"><
span
class="additional-background"><
span
class="menu-item-text">AP Online</
span
></
span
></
a
></
li
>
</
ul
>
</
div
>
</
div
>" __designer:Values="<
P
N
=
'ID'
T
=
'TopNavigationMenuV4'
/><
P
N
=
'UseSimpleRendering'
T
=
'True'
/><
P
N
=
'MaximumDynamicDisplayLevels'
T
=
'1'
/><
P
N
=
'Orientation'
E
=
'0'
/><
P
N
=
'SkipLinkText'
R
=
'-1'
/><
P
N
=
'StaticDisplayLevels'
T
=
'2'
/><
P
N
=
'DataSourceID'
T
=
'topSiteMap'
/><
P
N
=
'AccessKey'
Bound
=
'True'
T
=
'Resources:wss,navigation_accesskey'
/><
P
N
=
'CssClass'
T
=
's4-tn'
/><
P
N
=
'EnableViewState'
T
=
'False'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>" __designer:Templates="<
Group
Name="Item Templates"><
Template
Name="StaticItemTemplate" Flags="D" Content="" /><
Template
Name="DynamicItemTemplate" Flags="D" Content="" /></
Group
>"/>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"TopNavigationDataSource"
Id
=
"topNavigationDelegate"
__designer:Preview="<span style="display:none">
<
table
cellpadding
=
4
cellspacing
=
0
style="font:messagebox;color:buttontext;background-color:buttonface;border: solid 1px;border-top-color:buttonhighlight;border-left-color:buttonhighlight;border-bottom-color:buttonshadow;border-right-color:buttonshadow">
<
tr
><
td
nowrap><
span
style="font-weight:bold">SiteMapDataSource</
span
> - topSiteMap</
td
></
tr
>
<
tr
><
td
></
td
></
tr
>
</
table
>
</
span
>" __designer:Values="<
P
N
=
'ControlId'
T
=
'TopNavigationDataSource'
/><
P
N
=
'ID'
T
=
'topNavigationDelegate'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
Template_Controls
>
<
asp:SiteMapDataSource
ShowStartingNode
=
"False"
SiteMapProvider
=
"SPNavigationProvider"
id
=
"topSiteMap"
runat
=
"server"
StartingNodeUrl
=
"sid:1002"
/>
</
Template_Controls
>
</
SharePoint:DelegateControl
>
</
asp:ContentPlaceHolder
>
</
asp:ContentPlaceHolder
>
</
div
>
</
div
>
</
div
>
<
div
id
=
"s4-statusbarcontainer"
>
<
div
id
=
"pageStatusBar"
class
=
"s4-status-s1"
>
</
div
>
</
div
>
<
SharePoint:VisualUpgradePreviewStatus
runat
=
"server"
__designer:Preview
=
"[ VisualUpgradePreviewStatus "Unnamed23" ]"
__designer:Values="<P
N
=
'ID'
T
=
'ctl31'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
<
div
id
=
"s4-mainarea"
class
=
"s4-pr s4-widecontentarea"
>
<
div
id
=
"s4-leftpanel"
style
=
" width:155px; height:auto; min-height:500px;"
class
=
"s4-notdlg"
>
<
div
id
=
"s4-leftpanel-content"
>
<!-- Custom Menu. -->
<
ul
id
=
"css3menu1"
class
=
"topmenu"
>
<
li
class
=
"topfirst"
><
a
href
=
"/_layouts/Dashboard/Dashboard.aspx"
title
=
"Home"
style
=
"width:110px;"
>Home</
a
></
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Master"
style
=
"width:110px;"
>Master</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/Master/Holiday/holiday.aspx"
title
=
"Hari Libur"
> Hari Libur</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Bank/bank.aspx"
title
=
"Bank"
> Bank</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Branch/Branch.aspx"
title
=
"Unit Kerja"
> Unit Kerja</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Organisasi/organisasi.aspx"
title
=
"Organisasi"
> Organisasi</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Vendor/Vendor.aspx"
title
=
"Data Pemasok"
> Data Pemasok</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Currency/Currency.aspx"
title
=
"Mata Uang"
> Mata Uang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Ratemain/Ratemain.aspx"
title
=
"Nilai Tukar Mata Uang"
> Nilai Tukar Mata Uang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Pajak/Pajak.aspx"
title
=
"Pajak"
> Pajak</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/TarifPajak/Tarifpajak.aspx"
title
=
"Tarif Pajak"
> Tarif Pajak</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/GroupCoA/GroupCoA.aspx"
title
=
"Group CoA Costing"
> Group CoA Costing</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/COA/COA.aspx"
title
=
"CoA Costing"
> CoA Costing</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/COAInterface/COAInterface.aspx"
title
=
"CoA Interface PMS"
> CoA Interface PMS</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/Otoritas/Otoritas.aspx"
title
=
"Otoritas"
> Otoritas</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/ApprovalOnline/ApprovalOnline.aspx"
title
=
"Approval Online"
> Approval Online</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Master/FADMember/FADMember.aspx"
title
=
"FAD Member"
> FAD Member</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Transaksi"
style
=
"width:110px;"
>Transaksi</
a
>
<
ul
>
<
li
><
a
href
=
"#"
title
=
"FPUT"
>FPUT</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPUT/Fput.aspx"
title
=
"FPUT"
>FPUT</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPUT/KonfirmasiCairFPUT.aspx"
title
=
"Konfirmasi Uang Cair"
>Konfirmasi Uang Cair</
a
></
li
>
</
ul
>
</
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPTP/Fptp.aspx"
title
=
"FPTP"
>FPTP</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPUT/KonfirmasiMasukFPUT.aspx"
title
=
"Konfirmasi Uang Masuk"
>Konfirmasi Uang Masuk</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/Memo/memosrc.aspx"
title
=
"Penyelesaian Memo"
>Penyelesaian Memo</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPK2/FPK2.aspx"
title
=
"FPK2"
>FPK2</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/FPK3/FPK3.aspx"
title
=
"FPK3"
>FPK3</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Transaksi/Jurnal/JurnalAdhoc.aspx"
title
=
"Jurnal Adhoc"
>Jurnal Adhoc</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Transaksi PMS"
style
=
"width:110px;"
>Transaksi PMS</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/PMS/PO.aspx"
title
=
"Purchase Order"
>Purchase Order</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/SPK.aspx"
title
=
"SPK"
>SPK</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/PenerimaanBarang.aspx"
title
=
"Penerimaan Barang"
>Penerimaan Barang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/PenggunaanBarang.aspx"
title
=
"Penggunaan Barang"
>Penggunaan Barang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/PembayaranTunggal.aspx"
title
=
"Pembayaran Tunggal"
>Pembayaran Tunggal</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/PembayaranBertahap.aspx"
title
=
"Pembayaran Bertahap"
>Pembayaran Bertahap</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Review Pajak"
style
=
"width:110px;"
>Review Pajak</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/PMS/ReviewPajak.aspx"
title
=
"Review Pajak"
>Review Pajak</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Pembayaran"
style
=
"width:110px;"
>Pembayaran</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/PMS/PembuatanDokumen.aspx"
title
=
"Pembuatan Dokumen Pembayaran"
>Pembuatan Dokumen Pembayaran</
a
></
li
>
<
li
><
a
href
=
"/_layouts/PMS/DokumenPembayaran.aspx"
title
=
"Dokumen Pembayaran"
>Dokumen Pembayaran</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"topmenu"
><
a
href
=
"#"
title
=
"Laporan"
style
=
"width:110px;"
>Laporan</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/Reports/LapAgingHutang.aspx"
title
=
"Laporan Aging Hutang"
>Laporan Aging Hutang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapDetailTransaksiHarian.aspx"
title
=
"Laporan Detail Transaksi Harian"
>Laporan Detail Transaksi Harian</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapKartuHutang.aspx"
title
=
"Laporan Kartu Hutang"
>Laporan Kartu Hutang</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapListingPembayaran.aspx"
title
=
"Laporan Listing Pembayaran"
>Laporan Listing Pembayaran</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapLogPersetujuan.aspx"
title
=
"Laporan Log Persetujuan"
>Laporan Log Persetujuan</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapPajak.aspx"
title
=
"Laporan Pajak"
>Laporan Pajak</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapRealisasiPembayaran.aspx"
title
=
"Laporan Realisasi Pembayaran"
>Laporan Realisasi Pembayaran</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapRencanaPembayaran.aspx"
title
=
"Laporan Rencana Pembayaran"
>Laporan Rencana Pembayaran</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapPendelegasianDokumen.aspx"
title
=
"Laporan Pendelegasian Dokumen"
>Laporan Pendelegasian Dokumen</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapOutstandingDokumenAP.aspx"
title
=
"Laporan Outstanding Dokumen AP"
>Laporan Outstanding Dokumen AP</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapSuspendCOA.aspx"
title
=
"Laporan Suspend COA"
>Laporan Suspend COA</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapSLISLA.aspx"
title
=
"Laporan SLI/SLA"
>Laporan SLI/SLA</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapOutstandingUangMuka.aspx"
title
=
"Laporan Outstanding Uang Muka"
>Laporan Outstanding Uang Muka</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapKartuVendor.aspx"
title
=
"Laporan Kartu Vendor"
>Laporan Kartu Vendor</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapPerformance.aspx"
title
=
"Laporan Performance"
>Laporan Performance</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapAuditTrail.aspx"
title
=
"Laporan Kartu Vendor"
>Laporan Audit Trail</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Reports/LapAuditTrailData.aspx"
title
=
"Laporan Performance"
>Laporan Audit Trail Data</
a
></
li
>
</
ul
>
</
li
>
<
li
class
=
"toplast"
><
a
href
=
"#"
title
=
"Administrasi"
style
=
"width:110px;"
>Administrasi</
a
>
<
ul
>
<
li
><
a
href
=
"/_layouts/Administrasi/DelegasiDokumen.aspx"
title
=
"Ubah Pendelegasian Dokumen"
>Ubah Pendelegasian Dokumen</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/PersetujuanDokumen.aspx"
title
=
"Ubah Pendelegasian Persetujuan Dokumen"
>Ubah Pendelegasian Persetujuan Dokumen</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/PersetujuanDokumenOnline.aspx"
title
=
"Ubah Pendelegasian Persetujuan Dokumen Online"
>Ubah Pendelegasian Persetujuan Dokumen Online</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/SummaryInterface.aspx"
title
=
"Summary Interface"
>Summary Interface</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/InquiryData/InquiryData.aspx"
title
=
"Inquiry Data"
> Inquiry Data</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/KodeGlobal/KodeGlobal.aspx"
title
=
"Kode Global"
> Kode Global</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/RolesLevel/RolesLevel.aspx"
title
=
"Roles Level"
> Roles Level</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/User/User.aspx"
title
=
"User Level"
> User Level</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/CutOff/CutOff.aspx"
title
=
"Cut Off"
> Cut Off</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/Closing/Closing.aspx"
title
=
"Closing"
> Closing</
a
></
li
>
<
li
><
a
href
=
"/_layouts/Administrasi/ApprovalMaintenance/AppMaintenance.aspx"
title
=
"Approval Maintenance"
> Approval Maintenance</
a
></
li
>
</
ul
>
</
li
>
</
ul
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderLeftNavBarDataSource"
runat
=
"server"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderCalendarNavigator"
runat
=
"server"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderLeftActions"
runat
=
"server"
></
asp:ContentPlaceHolder
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderLeftNavBarTop"
runat
=
"server"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderLeftNavBar"
runat
=
"server"
>
<
div
class
=
"ms-quicklaunchouter"
>
<
div
class
=
"ms-quickLaunch"
>
<
Sharepoint:UIVersionedContent
runat
=
"server"
UIVersion
=
"4"
__designer:Preview="
<h2 style="display:inline;" class="ms-hidden">Quick Launch</
h2
>
" __designer:Values="<
P
N
=
'UIVersion'
T
=
'4'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl32'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
h2
style
=
"display:inline;"
class
=
"ms-hidden"
><
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,quiklnch_pagetitle%>" EncodeMethod="HtmlEncode"/></
h2
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderQuickLaunchTop"
runat
=
"server"
>
<
SharePoint:UIVersionedContent
UIVersion
=
"3"
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl33'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
h3
class
=
"ms-standardheader"
><
label
class
=
"ms-hidden"
><
SharePoint:EncodedLiteral
runat
=
"server"
text="<%$Resources:wss,quiklnch_pagetitle%>" EncodeMethod="HtmlEncode"/></
label
>
<
Sharepoint:SPSecurityTrimmedControl
runat
=
"server"
PermissionsString
=
"ViewFormPages"
>
<
div
class
=
"ms-quicklaunchheader"
><
SharePoint:SPLinkButton
id
=
"idNavLinkViewAll"
runat
=
"server"
NavigateUrl
=
"~site/_layouts/viewlsts.aspx"
Text="<%$Resources:wss,quiklnch_allcontent%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/></
div
>
</
SharePoint:SPSecurityTrimmedControl
>
</
h3
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
</
asp:ContentPlaceHolder
>
<
Sharepoint:SPNavigationManager
id
=
"QuickLaunchNavigationManager"
runat
=
"server"
QuickLaunchControlId
=
"QuickLaunchMenu"
ContainedControl
=
"QuickLaunch"
EnableViewState
=
"false"
CssClass
=
"ms-quicklaunch-navmgr"
__designer:Preview="<Regions><
Region
Name="0" Editable="True" Content="
 <div>
 <SharePoint:DelegateControl runat="server" ControlId="QuickLaunchDataSource" __designer:Preview="&lt;span style=&quot;display:none&quot;&gt;
 &lt;table
cellpadding
=
4
cellspacing
=
0
style=&quot;font:messagebox;color:buttontext;background-color:buttonface;border: solid 1px;border-top-color:buttonhighlight;border-left-color:buttonhighlight;border-bottom-color:buttonshadow;border-right-color:buttonshadow&quot;&gt;
 &lt;tr&gt;&lt;td nowrap&gt;&lt;span style=&quot;font-weight:bold&quot;&gt;SiteMapDataSource&lt;/span&gt; - QuickLaunchSiteMap&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;/table&gt;
 &lt;/span&gt;" __designer:Values="&lt;P
N
=
'ControlId'
T
=
'QuickLaunchDataSource'
/&gt;&lt;P
N
=
'ID'
T
=
'ctl42'
/&gt;&lt;P
N
=
'Page'
ID
=
'1'
/&gt;&lt;P
N
=
'TemplateControl'
ID
=
'2'
/&gt;&lt;P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/&gt;">
 <Template_Controls>
 <asp:SiteMapDataSource SiteMapProvider="SPNavigationProvider" ShowStartingNode="False" id="QuickLaunchSiteMap" StartingNodeUrl="sid:1025" runat="server" />
 </Template_Controls>
 </SharePoint:DelegateControl>
 <SharePoint:UIVersionedContent UIVersion="3" runat="server" __designer:Preview="" __designer:Values="&lt;P
N
=
'InDesign'
T
=
'False'
/&gt;&lt;P
N
=
'ID'
T
=
'ctl45'
/&gt;&lt;P
N
=
'Page'
ID
=
'1'
/&gt;&lt;P
N
=
'TemplateControl'
ID
=
'2'
/&gt;&lt;P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/&gt;">
 <ContentTemplate>
 <SharePoint:AspMenu id="QuickLaunchMenu" runat="server" DataSourceId="QuickLaunchSiteMap" Orientation="Vertical" StaticDisplayLevels="2" ItemWrap="true" MaximumDynamicDisplayLevels="0" StaticSubMenuIndent="0" SkipLinkText="" CssClass="s4-die">
 <LevelMenuItemStyles>
 <asp:menuitemstyle CssClass="ms-navheader" />
 <asp:menuitemstyle CssClass="ms-navitem" />
 </LevelMenuItemStyles>
 <LevelSubMenuStyles>
 <asp:submenustyle CssClass="ms-navSubMenu1" />
 <asp:submenustyle CssClass="ms-navSubMenu2" />
 </LevelSubMenuStyles>
 <LevelSelectedStyles>
 <asp:menuitemstyle CssClass="ms-selectednavheader" />
 <asp:menuitemstyle CssClass="ms-selectednav" />
 </LevelSelectedStyles>
 </SharePoint:AspMenu>
 </ContentTemplate>
 </SharePoint:UIVersionedContent>
 <SharePoint:UIVersionedContent UIVersion="4" runat="server" __designer:Preview="
 
 " __designer:Values="&lt;P
N
=
'UIVersion'
T
=
'4'
/&gt;&lt;P
N
=
'InDesign'
T
=
'False'
/&gt;&lt;P
N
=
'ID'
T
=
'ctl46'
/&gt;&lt;P
N
=
'Page'
ID
=
'1'
/&gt;&lt;P
N
=
'TemplateControl'
ID
=
'2'
/&gt;&lt;P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/&gt;">
 <ContentTemplate>
 <SharePoint:AspMenu id="V4QuickLaunchMenu" runat="server" EnableViewState="false" DataSourceId="QuickLaunchSiteMap" UseSimpleRendering="true" UseSeparateCss="false" Orientation="Vertical" StaticDisplayLevels="2" MaximumDynamicDisplayLevels="0" SkipLinkText="" CssClass="s4-ql" />
 </ContentTemplate>
 </SharePoint:UIVersionedContent>
 </div>
 " /></
Regions
><
div
style=";" class="ms-quicklaunch-navmgr"
_designerRegion
=
0
></
div
>" __designer:Values="<
P
N
=
'ID'
T
=
'QuickLaunchNavigationManager'
/><
P
N
=
'QuickLaunchControlId'
T
=
'QuickLaunchMenu'
/><
P
N
=
'ContainedControl'
T
=
'QuickLaunch'
/><
P
N
=
'CssClass'
T
=
'ms-quicklaunch-navmgr'
/><
P
N
=
'EnableViewState'
T
=
'False'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
div
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"QuickLaunchDataSource"
>
<
Template_Controls
>
<
asp:SiteMapDataSource
SiteMapProvider
=
"SPNavigationProvider"
ShowStartingNode
=
"False"
id
=
"QuickLaunchSiteMap"
StartingNodeUrl
=
"sid:1025"
runat
=
"server"
/>
</
Template_Controls
>
</
SharePoint:DelegateControl
>
<
SharePoint:UIVersionedContent
UIVersion
=
"3"
runat
=
"server"
>
<
ContentTemplate
>
<
SharePoint:AspMenu
id
=
"QuickLaunchMenu"
runat
=
"server"
DataSourceId
=
"QuickLaunchSiteMap"
Orientation
=
"Vertical"
StaticDisplayLevels
=
"2"
ItemWrap
=
"true"
MaximumDynamicDisplayLevels
=
"0"
StaticSubMenuIndent
=
"0"
SkipLinkText
=
""
CssClass
=
"s4-die"
>
<
LevelMenuItemStyles
>
<
asp:menuitemstyle
CssClass
=
"ms-navheader"
/>
<
asp:menuitemstyle
CssClass
=
"ms-navitem"
/>
</
LevelMenuItemStyles
>
<
LevelSubMenuStyles
>
<
asp:submenustyle
CssClass
=
"ms-navSubMenu1"
/>
<
asp:submenustyle
CssClass
=
"ms-navSubMenu2"
/>
</
LevelSubMenuStyles
>
<
LevelSelectedStyles
>
<
asp:menuitemstyle
CssClass
=
"ms-selectednavheader"
/>
<
asp:menuitemstyle
CssClass
=
"ms-selectednav"
/>
</
LevelSelectedStyles
>
</
SharePoint:AspMenu
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
<
SharePoint:UIVersionedContent
UIVersion
=
"4"
runat
=
"server"
>
<
ContentTemplate
>
<
SharePoint:AspMenu
id
=
"V4QuickLaunchMenu"
runat
=
"server"
EnableViewState
=
"false"
DataSourceId
=
"QuickLaunchSiteMap"
UseSimpleRendering
=
"true"
UseSeparateCss
=
"false"
Orientation
=
"Vertical"
StaticDisplayLevels
=
"2"
MaximumDynamicDisplayLevels
=
"0"
SkipLinkText
=
""
CssClass
=
"s4-ql"
/>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
</
div
>
</
Sharepoint:SPNavigationManager
>
<
Sharepoint:UIVersionedContent
runat
=
"server"
UIVersion
=
"3"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl37'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
Sharepoint:SPNavigationManager
id
=
"TreeViewNavigationManager"
runat
=
"server"
ContainedControl
=
"TreeView"
>
<
table
class
=
"ms-navSubMenu1"
cellpadding
=
"0"
cellspacing
=
"0"
border
=
"0"
>
<
tr
>
<
td
>
<
table
class
=
"ms-navheader"
width
=
"100%"
cellpadding
=
"0"
cellspacing
=
"0"
border
=
"0"
>
<
tr
>
<
td
nowrap
=
"nowrap"
id
=
"idSiteHierarchy"
>
<
SharePoint:SPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/_layouts/viewlsts.aspx"
id
=
"idNavLinkSiteHierarchy"
Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/>
</
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
</
table
>
<
div
class
=
"ms-treeviewouter"
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"TreeViewAndDataSource"
>
<
Template_Controls
>
<
SharePoint:SPHierarchyDataSourceControl
runat
=
"server"
id
=
"TreeViewDataSource"
RootContextObject
=
"Web"
IncludeDiscussionFolders
=
"true"
/>
<
SharePoint:SPRememberScroll
runat
=
"server"
id
=
"TreeViewRememberScroll"
onscroll
=
"javascript:_spRecordScrollPositions(this);"
style
=
"overflow: auto;height: 400px;width: 150px; "
>
<
Sharepoint:SPTreeView
id
=
"WebTreeView"
runat
=
"server"
ShowLines
=
"false"
DataSourceId
=
"TreeViewDataSource"
ExpandDepth
=
"0"
SelectedNodeStyle-CssClass
=
"ms-tvselected"
NodeStyle-CssClass
=
"ms-navitem"
NodeStyle-HorizontalPadding
=
"2"
SkipLinkText
=
""
NodeIndent
=
"12"
ExpandImageUrl
=
"/_layouts/images/tvplus.gif"
CollapseImageUrl
=
"/_layouts/images/tvminus.gif"
NoExpandImageUrl
=
"/_layouts/images/tvblank.gif"
>
</
Sharepoint:SPTreeView
>
</
Sharepoint:SPRememberScroll
>
</
Template_Controls
>
</
SharePoint:DelegateControl
>
</
div
>
</
Sharepoint:SPNavigationManager
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
<
Sharepoint:UIVersionedContent
runat
=
"server"
UIVersion
=
"4"
__designer:Preview="
<div id="ctl00_ctl38_TreeViewNavigationManagerV4" class="s4-treeView">
<
a
id="ctl00_ctl38_idNavLinkSiteHierarchyV4" class="s4-qlheader" href="/_layouts/viewlsts.aspx"><
span
class="ms-splinkbutton-text"></
span
></
a
>
<
div
class="ms-treeviewouter">
<!-- _lcid="1033" _version="14.0.7006" _dal="1" -->
<!-- _LocalBinding -->
<
span
id="ctl00_ctl38_ctl01_NavResizer">
<
div
id="ctl00_ctl38_ctl01_TreeViewRememberScroll" onscroll="javascript:_spOnScroll(this);return false;" id="ctl00_ctl38_ctl01_TreeViewRememberScroll" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow-y: auto; overflow-x: hidden;">
<
table
id="ctl00_ctl38_ctl01_WebTreeView">
<
tr
>
<
td
></
td
>
</
tr
>
</
table
>
</
div
>
</
span
>
</
div
>
</
div
>
" __designer:Values="<
P
N
=
'UIVersion'
T
=
'4'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl38'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
Sharepoint:SPNavigationManager
id
=
"TreeViewNavigationManagerV4"
runat
=
"server"
ContainedControl
=
"TreeView"
CssClass
=
"s4-treeView"
>
<
SharePoint:SPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/_layouts/viewlsts.aspx"
id
=
"idNavLinkSiteHierarchyV4"
Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>" CssClass="s4-qlheader" />
<
div
class
=
"ms-treeviewouter"
>
<
SharePoint:DelegateControl
runat
=
"server"
ControlId
=
"TreeViewAndDataSource"
>
<
Template_Controls
>
<
SharePoint:SPHierarchyDataSourceControl
runat
=
"server"
id
=
"TreeViewDataSourceV4"
RootContextObject
=
"Web"
IncludeDiscussionFolders
=
"true"
/>
<
SharePoint:SPRememberScroll
runat
=
"server"
id
=
"TreeViewRememberScrollV4"
onscroll
=
"javascript:_spRecordScrollPositions(this);"
style
=
"overflow: auto;height: 400px;width: 155px; "
>
<
Sharepoint:SPTreeView
id
=
"WebTreeViewV4"
runat
=
"server"
ShowLines
=
"false"
DataSourceId
=
"TreeViewDataSourceV4"
ExpandDepth
=
"0"
SelectedNodeStyle-CssClass
=
"ms-tvselected"
NodeStyle-CssClass
=
"ms-navitem"
SkipLinkText
=
""
NodeIndent
=
"12"
ExpandImageUrl
=
"/_layouts/images/tvclosed.png"
ExpandImageUrlRtl
=
"/_layouts/images/tvclosedrtl.png"
CollapseImageUrl
=
"/_layouts/images/tvopen.png"
CollapseImageUrlRtl
=
"/_layouts/images/tvopenrtl.png"
NoExpandImageUrl
=
"/_layouts/images/tvblank.gif"
>
</
Sharepoint:SPTreeView
>
</
Sharepoint:SPRememberScroll
>
</
Template_Controls
>
</
SharePoint:DelegateControl
>
</
div
>
</
Sharepoint:SPNavigationManager
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderQuickLaunchBottom"
runat
=
"server"
Visible
=
"false"
>
<
SharePoint:UIVersionedContent
UIVersion
=
"3"
runat
=
"server"
id
=
"PlaceHolderQuickLaunchBottomV3"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'PlaceHolderQuickLaunchBottomV3'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
table
width
=
"100%"
cellpadding
=
"0"
cellspacing
=
"0"
border
=
"0"
class
=
"s4-die"
>
<
tbody
>
<
tr
><
td
>
<
table
class
=
"ms-recyclebin"
width
=
"100%"
cellpadding
=
"0"
cellspacing
=
"0"
border
=
"0"
>
<
tbody
>
<
tr
><
td
nowrap
=
"nowrap"
>
<
SharePoint:SPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/_layouts/recyclebin.aspx"
id
=
"v3idNavLinkRecycleBin"
ImageUrl
=
"/_layouts/images/recycbin.gif"
Text="<%$Resources:wss,StsDefault_RecycleBin%>" PermissionsString="DeleteListItems" />
</
td
></
tr
>
</
table
>
</
td
></
tr
>
</
table
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
<
SharePoint:UIVersionedContent
UIVersion
=
"4"
runat
=
"server"
id
=
"PlaceHolderQuickLaunchBottomV4"
__designer:Preview="
<ul class="s4-specialNavLinkList">
<
li
>
<
a
id="ctl00_PlaceHolderQuickLaunchBottomV4_idNavLinkRecycleBin" class="s4-rcycl" href="/_layouts/recyclebin.aspx"><
span
style="height:16px;width:16px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust s4-specialNavIcon"><
img
src="/_layouts/images/fgimg.png" style="border-width:0px;position:absolute;left:-0px !important;top:-428px !important;border-width:0px;" /></
span
> <
span
class="ms-splinkbutton-text">Recycle Bin</
span
></
a
>
</
li
>
<
li
>
<
a
id="ctl00_PlaceHolderQuickLaunchBottomV4_idNavLinkViewAllV4" accesskey="3" href="/_layouts/viewlsts.aspx"><
span
style="height:16px;width:16px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust s4-specialNavIcon"><
img
src="/_layouts/images/fgimg.png" style="border-width:0px;position:absolute;left:-0px !important;top:-0px !important;border-width:0px;" /></
span
> <
span
class="ms-splinkbutton-text">All Site Content</
span
></
a
>
</
li
>
</
ul
>
" __designer:Values="<
P
N
=
'UIVersion'
T
=
'4'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'PlaceHolderQuickLaunchBottomV4'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
ContentTemplate
>
<
ul
class
=
"s4-specialNavLinkList"
>
<
li
>
<
SharePoint:ClusteredSPLinkButton
runat
=
"server"
NavigateUrl
=
"~site/_layouts/recyclebin.aspx"
ImageClass
=
"s4-specialNavIcon"
ImageUrl
=
"/_layouts/images/fgimg.png"
ImageWidth
=
16
ImageHeight
=
16
OffsetX
=
0
OffsetY
=
428
id
=
"idNavLinkRecycleBin"
Text="<%$Resources:wss,StsDefault_RecycleBin%>"
CssClass="s4-rcycl"
PermissionsString="DeleteListItems" />
</
li
>
<
li
>
<
SharePoint:ClusteredSPLinkButton
id
=
"idNavLinkViewAllV4"
runat
=
"server"
PermissionsString
=
"ViewFormPages"
NavigateUrl
=
"~site/_layouts/viewlsts.aspx"
ImageClass
=
"s4-specialNavIcon"
ImageUrl
=
"/_layouts/images/fgimg.png"
ImageWidth
=
16
ImageHeight
=
16
OffsetX
=
0
OffsetY
=
0
Text="<%$Resources:wss,quiklnch_allcontent_short%>"
accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/>
</
li
>
</
ul
>
</
ContentTemplate
>
</
SharePoint:UIVersionedContent
>
</
asp:ContentPlaceHolder
>
</
div
>
</
div
>
</
asp:ContentPlaceHolder
>
</
div
>
</
div
>
<
div
class
=
"s4-ca s4-ca-dlgNoRibbon"
id
=
"MSO_ContentTable"
>
<
div
class
=
"s4-die"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderPageImage"
runat
=
"server"
Visible
=
"false"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTitleLeftBorder"
runat
=
"server"
Visible
=
"false"
>
</
asp:ContentPlaceHolder
>
<
div
id
=
"onetidPageTitleAreaFrame"
class
=
'ms-pagetitleareaframe s4-pagetitle'
></
div
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderMiniConsole"
runat
=
"server"
Visible
=
"false"
/>
<
span
class
=
"s4-die"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTitleRightMargin"
runat
=
"server"
Visible
=
"false"
/>
</
span
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderTitleAreaSeparator"
runat
=
"server"
Visible
=
"false"
/>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderNavSpacer"
runat
=
"server"
Visible
=
"false"
><
img
src
=
"/_layouts/images/blank.gif"
width
=
'138'
height
=
'1'
alt
=
""
/></
asp:ContentPlaceholder
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderLeftNavBarBorder"
runat
=
"server"
Visible
=
"false"
></
asp:ContentPlaceHolder
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderBodyLeftBorder"
runat
=
"server"
Visible
=
"false"
>
</
asp:ContentPlaceHolder
>
</
div
>
<
SharePoint:VersionedPlaceHolder
UIVersion
=
"3"
ID
=
"DesignModeConsoleV3"
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'ID'
T
=
'DesignModeConsoleV3'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>">
<
asp:ContentPlaceHolder
id
=
"WSSDesignConsole"
runat
=
"server"
>
<
wssuc:DesignModeConsole
id
=
"IdDesignModeConsole"
runat
=
"server"
/>
</
asp:ContentPlaceHolder
>
</
SharePoint:VersionedPlaceHolder
>
<
div
class
=
's4-ba'
><
div
class
=
'ms-bodyareacell'
>
<
div
id
=
"MSO_ContentDiv"
runat
=
"server"
>
<
a
name
=
"mainContent"
></
a
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderMain"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
div
>
</
div
></
div
>
<
div
class
=
"s4-die"
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderBodyRightMargin"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
div
>
</
div
>
</
div
>
<
SharePoint:DeveloperDashboard
runat
=
"server"
__designer:Preview
=
"[ DeveloperDashboard "Unnamed28" ]"
__designer:Values="<P
N
=
'ID'
T
=
'ctl39'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
div
>
</
div
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderFormDigest"
runat
=
"server"
>
<
SharePoint:FormDigest
runat
=
"server"
__designer:Preview="<input type="hidden" name="__REQUESTDIGEST" value="0x4FD51620A8F34F002EBD750330504E6219E7A14DA353D90A2B992E1D39E2809F0287478052ABB218F5B1AE6DB41F186405344FB55F0361571D4F7E378B298455,23 Apr 2015 09:26:05 -0000" />" __designer:Values="<
P
N
=
'DigestValue'
T
=
'0x4FD51620A8F34F002EBD750330504E6219E7A14DA353D90A2B992E1D39E2809F0287478052ABB218F5B1AE6DB41F186405344FB55F0361571D4F7E378B298455,23 Apr 2015 09:26:05 -0000'
/><
P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl40'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
asp:ContentPlaceHolder
>
<
input
type
=
"text"
name
=
"__spText1"
title
=
"text"
style
=
"display:none;"
/>
<
input
type
=
"text"
name
=
"__spText2"
title
=
"text"
style
=
"display:none;"
/>
</
form
>
<
asp:ContentPlaceHolder
id
=
"PlaceHolderUtilityContent"
runat
=
"server"
/>
<
SharePoint:WarnOnUnsupportedBrowsers
runat
=
"server"
__designer:Preview
=
""
__designer:Values="<P
N
=
'InDesign'
T
=
'False'
/><
P
N
=
'ID'
T
=
'ctl41'
/><
P
N
=
'Page'
ID
=
'1'
/><
P
N
=
'TemplateControl'
ID
=
'2'
/><
P
N
=
'AppRelativeTemplateSourceDirectory'
R
=
'-1'
/>"/>
</
body
>
</
html
>
ASPX:
<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls"
Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
<%@ Import Namespace="Microsoft.SharePoint" %>
<%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AppMaintenance.aspx.cs"
Inherits="CoreAccountPayableApp.Layouts.Administrasi.ApprovalMaintenance.AppMaintenance"
DynamicMasterPageFile="~masterurl/default.master" %>
<%@ Register Assembly="Telerik.Web.UI, Version=2015.1.225.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<
asp:Content
ID
=
"PageHead"
ContentPlaceHolderID
=
"PlaceHolderAdditionalPageHead"
runat
=
"server"
>
</
asp:Content
>
<
asp:Content
ContentPlaceHolderID
=
"PlaceHolderLeftNavBar"
ID
=
"APNavbar"
runat
=
"server"
>
<
asp:Panel
ID
=
"PanelMenu"
runat
=
"server"
>
<
div
style
=
"width: 155px;"
>
<
asp:TreeView
ID
=
"TreeViewMaster"
runat
=
"server"
ImageSet
=
"Msdn"
NodeIndent
=
"10"
CssClass
=
"static selected menu-item"
HoverNodeStyle-BackColor
=
"#FFFFCC"
EnableClientScript
=
"False"
NodeWrap
=
"true"
NodeStyle-VerticalPadding
=
"4"
>
</
asp:TreeView
>
<
asp:TreeView
ID
=
"TreeViewTransaksi"
runat
=
"server"
ImageSet
=
"Msdn"
NodeIndent
=
"10"
CssClass
=
"static selected menu-item"
HoverNodeStyle-BackColor
=
"#FFFFCC"
EnableClientScript
=
"False"
NodeWrap
=
"true"
NodeStyle-VerticalPadding
=
"4"
>
</
asp:TreeView
>
<
asp:TreeView
ID
=
"TreeViewLaporan"
runat
=
"server"
ImageSet
=
"Msdn"
NodeIndent
=
"10"
CssClass
=
"static selected menu-item"
HoverNodeStyle-BackColor
=
"#FFFFCC"
EnableClientScript
=
"False"
NodeWrap
=
"true"
NodeStyle-VerticalPadding
=
"4"
>
</
asp:TreeView
>
<
asp:XmlDataSource
ID
=
"XmlDataSource1"
runat
=
"server"
DataFile
=
"~/_layouts/ListMenuMaster.xml"
>
</
asp:XmlDataSource
>
<
asp:XmlDataSource
ID
=
"XmlDataSource2"
runat
=
"server"
DataFile
=
"~/_layouts/ListMenuTransaction.xml"
>
</
asp:XmlDataSource
>
<
asp:XmlDataSource
ID
=
"XmlDataSource3"
runat
=
"server"
DataFile
=
"~/_layouts/ListMenuReport.xml"
>
</
asp:XmlDataSource
>
</
div
>
</
asp:Panel
>
</
asp:Content
>
<
asp:Content
ID
=
"Main"
ContentPlaceHolderID
=
"PlaceHolderMain"
runat
=
"server"
>
<
telerik:RadAjaxLoadingPanel
ID
=
"radAjaxLoadingPanelFADMember"
runat
=
"server"
BackgroundPosition
=
"Center"
Transparency
=
"10"
ZIndex
=
"10000"
>
<
div
style
=
"width: 100%; height: 100%; background-color: #fff;"
>
<
asp:Image
ID
=
"ImgLoading"
runat
=
"server"
ImageUrl
=
"~/_layouts/Images/CoreAccountPayableApp/LoadingSmall.gif"
AlternateText
=
"Loading..."
/>
</
div
>
</
telerik:RadAjaxLoadingPanel
>
<
telerik:RadTabStrip
runat
=
"server"
ID
=
"telTab"
MultiPageID
=
"telTabMultiPage"
SelectedIndex
=
"0"
Width
=
"100%"
>
<
Tabs
>
<
telerik:RadTab
Text
=
"PRIMARY APPROVER MAINTENANCE"
Width
=
"50%"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"ALTERNATE APPROVE MAINTENANCE"
Width
=
"50%"
>
</
telerik:RadTab
>
</
Tabs
>
</
telerik:RadTabStrip
>
<
telerik:RadMultiPage
runat
=
"server"
ID
=
"telTabMultiPage"
SelectedIndex
=
"0"
>
<
telerik:RadPageView
runat
=
"server"
ID
=
"telPageViewPrimary"
>
<
div
>
Click here to download templates</
div
>
<
div
>
Source File
<
asp:FileUpload
ID
=
"fuFile"
runat
=
"server"
></
asp:FileUpload
>
<
asp:Button
ID
=
"btnUpload"
runat
=
"server"
Text
=
"Upload"
OnClick
=
"btnUpload_Click"
/></
div
>
<
div
>
Setelah permintaan diapprove maka anda tidak dapat melakukan upload source file.
Halaman ini akan kosong kembali apabila batch telah selesai berjalan.</
div
>
<
div
>
<
div
>
Batch ID</
div
>
<
div
>
:</
div
>
<
div
>
<
asp:TextBox
ID
=
"txtBatchID"
runat
=
"server"
Enabled
=
"false"
></
asp:TextBox
></
div
>
</
div
>
<
div
>
<
div
>
Status</
div
>
<
div
>
:</
div
>
<
div
>
<
asp:TextBox
ID
=
"txtStatus"
runat
=
"server"
Enabled
=
"false"
></
asp:TextBox
></
div
>
</
div
>
<
div
>
Total baris data terupload:
<
asp:TextBox
ID
=
"txtTotalData"
runat
=
"server"
Enabled
=
"false"
></
asp:TextBox
></
div
>
<
div
>
<
telerik:RadGrid
ID
=
"rdPrimary"
runat
=
"server"
AllowPaging
=
"true"
AutoGenerateColumns
=
"false"
OnNeedDataSource
=
"rdPrimary_NeedDataSource"
PageSize
=
"20"
CssClass
=
"lsTable"
>
<
GroupingSettings
CaseSensitive
=
"false"
/>
<
PagerStyle
Mode
=
"NumericPages"
PageButtonCount
=
"10"
/>
<
MasterTableView
TableLayout
=
"Fixed"
GridLines
=
"Vertical"
DataKeyNames
=
"ID_FAD"
CommandItemSettings-ShowAddNewRecordButton
=
"false"
CommandItemDisplay
=
"None"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"LINESID"
SortExpression
=
"LINESID"
UniqueName
=
"LINESID"
HeaderText
=
"No."
HeaderStyle-Width
=
"10%"
/>
<
telerik:GridBoundColumn
DataField
=
"KODE_UNIT_KERJA"
SortExpression
=
"KODE_UNIT_KERJA"
UniqueName
=
"KODE_UNIT_KERJA"
HeaderText
=
"Cabang/ Unit Kerja"
HeaderStyle-Width
=
"10%"
/>
<
telerik:GridBoundColumn
DataField
=
"LVL"
SortExpression
=
"LVL"
UniqueName
=
"LVL"
HeaderText
=
"Level"
/>
<
telerik:GridBoundColumn
DataField
=
"USERNAME"
SortExpression
=
"USERNAME"
UniqueName
=
"USERNAME"
HeaderText
=
"Username"
/>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
</
div
>
<
div
>
<
asp:Button
ID
=
"btnKirim"
runat
=
"server"
Text
=
"Kirim"
OnClick
=
"btnKirim_Click"
/></
div
>
</
telerik:RadPageView
>
<
telerik:RadPageView
runat
=
"server"
ID
=
"telPageViewAlternate"
>
</
telerik:RadPageView
>
</
telerik:RadMultiPage
>
</
asp:Content
>
<
asp:Content
ID
=
"PageTitle"
ContentPlaceHolderID
=
"PlaceHolderPageTitle"
runat
=
"server"
>
Approval Maintenance
</
asp:Content
>
<
asp:Content
ID
=
"PageTitleInTitleArea"
ContentPlaceHolderID
=
"PlaceHolderPageTitleInTitleArea"
runat
=
"server"
>
Approval Maintenance
</
asp:Content
>
Thanx.
Attached is my code.
I am using Sharepoint 2010, .Net 2010 SP1, using custom master pages (attached below).
Regards,
Edwin
0
Hi Edwin,
This sounds like a styling issue. Please provide us with link to your live site so we can inspect the css code.
Thanks.
Regards,
Hristo Valyavicharski
Telerik
This sounds like a styling issue. Please provide us with link to your live site so we can inspect the css code.
Thanks.
Regards,
Hristo Valyavicharski
Telerik
See What's Next in App Development. Register for TelerikNEXT.