Change Item_info

オフライン

Hello,

below is the form of my project :



What i want to do is kepping just Created By, Created On, Moodified By, Modified On, Locked_By, state and hide Major Rev and Generation sys properties.

Below is the HTML code for the Item_Info:

<span id="ITEM_INFO_INTERNAL_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);
style_ITEM_INFO_INTERNAL_SPAN();
}
style_ITEM_INFO_INTERNAL_SPAN = function()
{

var lg_icn = document.getElementById("large_icon_img");
lg_icn.style = '';
var tbl = document.getElementById("itemInfoTable");
tbl.style.marginTop = "45px";

var container = document.getElementById("ITEM_INFO_INTERNAL_SPAN");

}
window.addEventListener("load", populate_ITEM_INFO_INTERNAL_SPAN);

</script>


Is there any solutions please for this Subject ?