This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img id="myIcon" name="myIcon" src="../customer/svg/package.svg" vspace="20" hspace="20" /> | |
<script> | |
chooseIcon = function() | |
{ | |
var icn = "../customer/svg/"; | |
// get classification, gets "none" if getProperty returns null | |
var thisItem = document.thisItem; | |
var classification = thisItem.getProperty("classification","none"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("../styles/default.css"); | |
@import url("../customer/myStyles.css"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Style for custom icons added by CustomFormCSS import package */ | |
#myIcon { | |
height: 80px; | |
width: 80px; | |
position:absolute; | |
top:40px; | |
left:10px; | |
z-index:2; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span id="ITEM_INFO_INTERNAL_SPAN" class="info_group" style="display:block;"></span> | |
<script> | |
populate_ITEM_INFO_INTERNAL_SPAN = function() | |
{ | |
document.getElementById("ITEM_INFO_INTERNAL_SPAN").innerHTML = top.aras.uiDrawItemInfoTable(document.itemType); | |
top.aras.uiPopulateInfoTableWithItem(document.item, document); | |
// apply customizations in separate function | |
style_ITEM_INFO_INTERNAL_SPAN(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Style for new state element */ | |
.my_state { | |
display: block; | |
margin-left: 15px; | |
margin-bottom: 30px; | |
font-size: 16px; | |
font-weight: bold; | |
} | |
/* Style for default form title */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.info_group { | |
background: #E8EEEF; | |
color: #000; | |
height: 330px; | |
width: 185px; | |
display: inline-block; | |
margin-left: 10px; | |
margin-top: 15px; | |
border-radius: 15px 15px 15px 0px; | |
border: 1px solid #D9DEDF; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XmlElement inItem = (XmlElement)this.dom.SelectSingleNode("//Item[@type='Method' and @action='GetItemsForStructureBrowser']/Item"); | |
if (inItem != null) | |
{ | |
XmlDocument resDOM = Aras.Server.Core.XmlProxy.CreateNewXMLDocument(); | |
XmlElement result = Aras.Server.Core.XmlProxy.MakeBorders(resDOM); | |
//Comment out call to standard structure browser | |
//Aras.Server.Core.StructureBrowser sb = new Aras.Server.Core.StructureBrowser(ref CCO); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XmlElement inItem = (XmlElement)this.dom.SelectSingleNode("//Item[@type='Method' and @action='GetItemsForStructureBrowser']/Item"); | |
if (inItem != null) | |
{ | |
XmlDocument resDOM = Aras.Server.Core.XmlProxy.CreateNewXMLDocument(); | |
XmlElement result = Aras.Server.Core.XmlProxy.MakeBorders(resDOM); | |
// Comment out call to standard structure browser | |
// Aras.Server.Core.StructureBrowser sb = new Aras.Server.Core.StructureBrowser(ref CCO); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Set a CSS counter using counter-reset (starts at 0) */ | |
body { | |
counter-reset: sectionNum; | |
} | |
/* Increment sectionNum counter at each .Section element */ | |
.Section { | |
counter-increment: sectionNum; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Add subtitles to Section definition in Document Type schema --> | |
<xs:element name="Section"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element ref="Title" minOccurs="1" maxOccurs="1"/> | |
<xs:choice maxOccurs="unbounded"> | |
<xs:element ref="Subtitle"/> | |
<xs:element ref="Text"/> | |
<xs:element ref="List"/> | |
<xs:element ref="Table"/> |
OlderNewer