Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Object Expected
 Login/Join
 
Silver Member
posted
Every form in my maintain is producing this scripting error: Object Expected on the following line.
  
<body class="IWCForm" style="cursor:wait" onload="mntFormValidateOnloadFunc();setBSPcatch();document.body.style.cursor = 'auto'">


I cannot find its source or anything about it. And ideas?

It does not seem to affect the maintain as it still runs fine but I think it maybe detrimental to performance.

 
<html>
<head>
<title>
Untitled</title>
<script language='javascript'>
var ibiOptions = new Array("mntFormValidate");
</script>
<script language='javascript' src='/ibi_html/javaassist/nls.js'></script>
<script language='javascript' src='/ibi_html/javaassist/ibi/html/js/ibigbl.js'></script>
</head>
<body class="IWCForm" style="cursor:wait" onload="mntFormValidateOnloadFunc();setBSPcatch();document.body.style.cursor = 'auto'">
<script language=JavaScript>

function setBSPcatch()
{
  if (document.forms[0])
    document.onkeydown=ignoreBSP;
    for (i=0; i<document.forms[0].elements.length; i++)
    {
      document.forms[0].elements[i].onkeydown = ignoreBSP;
    }
}

function ignoreBSP()
{
  if (event.keyCode == 8)
  {
    if (event.srcElement.readOnly ||
       (event.srcElement.type != 'text' && event.srcElement.type != 'textarea'))
      event.returnValue = false;
  }
}
</script>

<SCRIPT LANGUAGE="JavaScript" SRC="/ibi_html/javaassist/cgipath.js"></SCRIPT>
<script language=JavaScript>
<!--
window.offscreenBuffering = true;
window.IWCFocusElement = null;
window.document.IWCInSubmit = false;

function IWCTrigger(caseName, trigValue) {
  if(!IWCCheckSubmit())
    return;
  IWCReadGrids();
  window.document.MhFac.IWCTRIG.value = caseName.toUpperCase();
  window.document.MhFac.IWCTRIGVAL.value = trigValue;
  if (window.document.activeElement != null)
  {
    activeIndex = window.document.activeElement.sourceIndex;
    prevEle = document.all(activeIndex-1);
    nextEle = document.all(activeIndex+1);
    if(window.document.IWCNextTab)
      window.document.MhFac.IWCFOCUS.value = nextEle.id;
    else if(window.document.IWCPrevTab)
      window.document.MhFac.IWCFOCUS.value = prevEle.id;
    else
      if(window.document.activeElement.type == "checkbox"){
        ctrlId = window.document.activeElement.id;
        window.document.MhFac.IWCFOCUS.value = ctrlId.substr(4, ctrlId.length);
      }
      else if(window.document.activeElement.tagName == "DIV" && IWCFocusElement != null)
        window.document.MhFac.IWCFOCUS.value = IWCFocusElement.id;
      else
        window.document.MhFac.IWCFOCUS.value = window.document.activeElement.id;
    window.document.activeElement.style.cursor = "wait";
    window.document.body.style.cursor = "wait";
  }
  window.document.IWCInSubmit = true;
  window.document.MhFac.submit();
}

function isblank(s) {
  for(var i=0; i<s.length; i++) {
    var c = s.charAt(i);
    if((c != ' ') && (c != '\n') && (c != '\t'))
      return false;
  }
  return true;
}

function IWCLink(dest,target,newWindow,opts) {
  if(dest.charAt(0) == '?')
   dest = getWFScriptName() + dest;
  var theFrame = null;
  var result = dest.split(/([$])/);
  var newDest = result[0];
for(var i=1; i<result.length; i++){
   if(result[i].indexOf("&")!=0) {
     for(var c=0; c<document.forms[0].length; c++){
     var el = document.forms[0].elements[c];
     if(el){
      if((el.type == "text" || el.type == "textarea") && el.name == result[i]){
        if(!el.value || isblank(el.value)){
          alert("Please enter a valid input in " + el.name);
          el.focus();
          return;
        }
        else
          newDest += escape(el.value);
        }
        else if(el.type=="select-one" && el.name==result[i]){
        if(!el.value || isblank(el.value)){
          alert("Please enter a valid input in " + el.name);
          el.focus();
          return;
        }
        else
         newDest+=escape((el.options[el.selectedIndex]).text);
        }
      else if(el.type=="radio"&&el.name==result[i]&&el.checked){
          var sText = el.parentNode.innerText;
          sText = sText.substr(1, sText.length-1);
          newDest += sText;
       }
       else if(el.type == "checkbox" && el.name == result[i]){
        if(el.checked)
          newDest += "1";
        else
          newDest += "0";
        }
      }
    }
  }
  else
   newDest += result[i];
}
  if (newWindow)
    window.open(newDest,target,opts);
  else if (target == "_self")
    window.location = newDest;
  else
  {
    if(window.frames.length)
      theFrame = window.document.getElementById(target);
    if(theFrame == null)
      theFrame = parent.document.getElementById(target);
    if(theFrame == null)
      alert("Error: Frame " + target + " not found.");
    else
      theFrame.src = newDest;
  }
}

function IWCHelp(HelpURL, HelpAnchor) {
  var time = new Date().valueOf();
  var url = HelpURL + "?IWCTime=" + time + "#" + HelpAnchor;
  window.event.returnValue = false;
  window.event.cancelBubble = true;
  window.showHelp(url);
}

function IWCSwitchToSecure () {
  if (location.protocol == "http:") {
  var locStr = location.href;
  document.forms[0].action = "https:" + locStr.substring(5, locStr.length);
  }
}

function IWCSwitchToUnsecure () {
  if (location.protocol == "https:") {
  var locStr = location.href;
  document.forms[0].action = "http:" + locStr.substring(6, locStr.length);
  }
}
function IWCCheckSubmit()
{
  if (document.IWCInSubmit)
    return false;
  if (!(IWCCheckGridsAreReady()))
    return false;
  document.IWCInSubmit = true;
  return true;
}
function IWCCheckGridsAreReady()
{
 return true;
}
function IWCCheckKey()
{
  if(event.keyCode == 9  && !event.shiftKey)
    window.document.IWCNextTab = true;
  else
    window.document.IWCNextTab = false;
  if(event.keyCode == 9  && event.shiftKey)
    window.document.IWCPrevTab = true;
  else
    window.document.IWCPrevTab = false;
    if(event.keyCode == 13 && document.IWCDefaultButton && document.IWCDefaultButton.onclick && !event.srcElement.onkeypress)
      document.IWCDefaultButton.onclick();
}
function IWCCBX(obj)
{
  if(obj.checked)
  {
    if(obj.oncheck)
      eval("On" + obj.name + "_Check();");
  }
  else
{
    if(obj.onuncheck)
      eval("On" + obj.name + "_UnCheck();");
  }
}
function IWCFillGrid(ctrl){
 ctrl.IWCGridIsReady = true;
}
function AddGridFont(GridCtrl, xmlElem, Hdr)
{
   return GridCtrl.AddFontComplete(xmlElem.getAttribute(Hdr + "FontName"), 
                  new Number(xmlElem.getAttribute(Hdr + "FontHeight"))+7,
                  xmlElem.getAttribute(Hdr + "FontWeight"),
                  0, 0, 0,
                  xmlElem.getAttribute(Hdr + "FontIsItalic"),
                  xmlElem.getAttribute(Hdr + "FontIsUnderline"),
                  xmlElem.getAttribute(Hdr + "FontIsStrikeout"),
                  1, 0, 0, 0, 0);
}
function IWCReadGrids(){
}
function IWCCreateHiddenFld(Ctrl, col, row, text){
  var newElement  = document.getElementById(Ctrl+"_"+col+"_"+row);
  if(newElement == null){
    newElement=document.createElement("INPUT");
    newElement.type = "hidden";
    newElement.value = text;
    newElement.name = Ctrl+"_"+col+"_"+row;
    newElement.id = Ctrl+"_"+col+"_"+row;
MhFac.appendChild(newElement);
   }
   else
     newElement.value = text;
}
function IWCCB()
{
  window.event.cancelBubble = true;
}
function IWCDisconnect()
{
  var bInSubmit = document.IWCInSubmit;
  if(!bInSubmit)
  {
   IWCTrigger("WINEXIT");
   alert("This application has been disconnected from the server.");
  }
}
function OnTableScroll(htmlTableDiv)
{
   if(htmlTableDiv)
   {
      var headerDiv = document.getElementById(htmlTableDiv.id+"_tableHeader");
      if(headerDiv)
      {
         var headerTable = headerDiv.children[0];
         if(headerTable)
            headerTable.style.posLeft = -htmlTableDiv.scrollLeft;
      }
      var scrollElem=document.getElementById(htmlTableDiv.id+"_ScrollTop");
           scrollElem.value = htmlTableDiv.scrollTop;
   }
}
function ImageRes(name, img)
{
  this.name = name.toLowerCase();
  this.img  = new Image();
  this.img.src = img;
  return this;
}
document.IWC_Images = new Array(1);
document.IWC_Images[0] = new ImageRes("HeaderTemplate","HTTP://rimaix:8080/approot/r_mhfacility/HeaderTemplate.jpg");
function IWCIMG(name)
{
  var nImages = document.IWC_Images.length;
  for(var i = 0; i < nImages; i++)
  {
    if(document.IWC_Images[i].name == name.toLowerCase())
      return document.IWC_Images[i];
  }
  return true;
}
window.document.onkeydown = IWCCheckKey;
window.onunload = IWCDisconnect;
// -->
</script>
<style>
<!--
.IWCControlButton {visibility:visible;  background-color:rgb(192,192,192);cursor:auto;}
.IWCControlRadioGroup {visibility:visible;cursor:auto;clip:rect(0px 0px 0px 0px);}
.IWCControlCheck {visibility:visible;cursor:auto;}
.IWCControlHTML {visibility:visible;cursor:auto;overflow:visible;}
.IWCControlEdit {visibility:visible;  background-color:rgb(255,255,255);cursor:auto; text-align:left;}
.IWCControlEditMultiLine {visibility:visible;  background-color:rgb(255,255,255);cursor:auto; text-align:left;}
.IWCControlStaticText {visibility:visible;cursor:auto;text-align:left;}
.IWCControlImage {visibility:visible;cursor:auto;}
.IWCControlGroupBox {visibility:visible;cursor:auto;z-index:-1;}
.IWCControlActiveX {visibility:visible;cursor:auto;}
.IWCControlAXGrid { visibility:visible;  background-color:rgb(255,255,255);cursor:auto;}
.IWCControlComboBox {visibility:visible;  background-color:rgb(255,255,255);cursor:auto;}
.IWCControlListBox {visibility:visible;  background-color:rgb(255,255,255);cursor:auto;}
.IWCControlHTMLTable {visibility:visible;}
.IWCControlGrid { visibility:visible;cursor:auto;}
.IWCForm {  color:rgb(0,0,0);background-color:rgb(192,192,192);font-family:MS Sans Serif;font-weight:400;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;}
Select,Table {  color:rgb(0,0,0);font-family:MS Sans Serif;font-weight:400;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;}
Input {font-size:8pt;}
 -->
</style>
<form class="IWCForm" id=MhFac name=MhFac action=/cgi-bin/ibi_cgi/ibiweb.exe method=POST onsubmit="return IWCCheckSubmit();">
<!--
Webbase Version = "4.0.22";
Painter Version = " ";
// -->
<!--Begin IBI Reserved Fields-->
<input type=hidden name=IBIS_passthru value=on>
<input type=hidden name=IBIF_cmd value='MNTCON RESUME'>
<input type=hidden name=IWCAPP value=' '>
<input type=hidden name=IWCFORM value=MhFac>
<input type=hidden name=IWCTRIG>
<input type=hidden name=IWCTRIGVAL>
<input type=hidden name=IWCFOCUS>
<!--End IBI Reserved Fields-->
<!--Field holding current time, to prevent caching in http requests-->
<input type=hidden id=CURRENT_TIME_element name=CURRENT_TIME>
<script language=JavaScript>
<!--
MhFac.CURRENT_TIME_element.value=new Date().valueOf(); 
//-->
</script>

<script id=OnSearchBtn_Click language=JavaScript>
<!--
function OnSearchBtn_Click() {
var facsrch   = document.MhFac.FacNumSrchBox;
var addrsrch   = document.MhFac.AddrSrchhBox;
var valtest    = "yes";
 
//if (facsrch.value == 0 && addrsrch.value == 0)
// {
// alert("Please enter Facility Number or Address");
// facsrch.focus();
// facsrch.select();
// valtest = "no";
// }
if (valtest == "yes") 
 {IWCTrigger("FacNumSearch");}
}
// -->
</script>
<script id=OnAgencyCbo_Change language=JavaScript>
<!--
function OnAgencyCbo_Change() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnAgencyCbo_Change", params);
}
// -->
</script>
<script id=OnCloseBtn_Click language=JavaScript>
<!--
function OnCloseBtn_Click() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnCloseBtn_Click", params);
}
// -->
</script>
<script id=OnClrSrchBtn_Click language=JavaScript>
<!--
function OnClrSrchBtn_Click() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnClrSrchBtn_Click", params);
}
// -->
</script>
<script id=OnAddNewBtn_Click language=JavaScript>
<!--
function OnAddNewBtn_Click() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnAddNewBtn_Click", params);
}
// -->
</script>
<script id=OnSearchTbl_ClickLink language=JavaScript>
<!--
function OnSearchTbl_ClickLink() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnSearchTbl_ClickLink", params);
}
// -->
</script>
<script id=OnNewAgencyBtn_Click language=JavaScript>
<!--
function OnNewAgencyBtn_Click() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnNewAgencyBtn_Click", params);
}
// -->
</script>
<script id=OnRefreshBtn_Click language=JavaScript>
<!--
function OnRefreshBtn_Click() {
var params="`";
for(var i=0; i<arguments.length; i++){
  params += arguments[i];
  params += '`';
}
IWCTrigger("OnRefreshBtn_Click", params);
}
// -->
</script>
<div class="IWCControlStaticText" id=HeaderTxt style="position:absolute;top:95;left:10;width:760;height:30;visibility:visible;  color:rgb(128,0,0);font-family:MS Sans Serif;font-weight:700;font-size:12pt;font-style:italic;text-decoration:none;cursor:auto;text-align:center;"
 tabindex=-1>Mental Health and Mental Retardation Services - Facilities</div>
<div class="IWCControlStaticText" id=FacNumLabel style="position:absolute;top:166;left:130;width:80;height:20;visibility:visible;  color:rgb(0,0,255);cursor:auto;text-align:center;"
 tabindex=-1>Facility Nbr:</div>
<div class="IWCControlStaticText" id=AddrLabel style="position:absolute;top:214;left:130;width:70;height:20;visibility:visible;  color:rgb(0,0,255);cursor:auto;text-align:center;"
 tabindex=-1>Address:</div>
<div class="IWCControlStaticText" id=AgencyLabel style="position:absolute;top:170;left:370;width:270;height:20;visibility:visible;cursor:auto;text-align:center;"
 tabindex=-1>Search an Agency:</div>
<fieldset class="IWCControlGroupBox" id=SearchGrp style="position:absolute;top:140;left:100;width:580;height:210;visibility:visible;cursor:auto;z-index:-1;"
 tabindex=-1>
<legend align="left" style="">Enter a Facility Number or PAC Code and click 'Search', -or- Select an Agency:</legend></fieldset>
<script language=JavaScript>
function IWC_SearchTbl(ctrl,isHeader)
{
  var row;
  var col;
  if( isHeader )
    row=0;
  else
    row = getAncestorHTMLElement( ctrl, 'TR' ).rowIndex+1;
  col = getAncestorHTMLElement( ctrl, 'TD' ).cellIndex+1;
  document.MhFac.SearchTbl_ClickRow.value = row;
  var ClickedRows = document.getElementById("SearchTbl_ClickRows").value;
  document.MhFac.SearchTbl_ClickRows.value = ClickedRows + "," + row + ",";
  document.MhFac.SearchTbl_ClickColumn.value = col;
  document.MhFac.SearchTbl_Value.value = ctrl.innerHTML;
    OnSearchTbl_ClickLink();
}
function getAncestorHTMLElement( oHTMLElement, sAncestorTagName )
{
  if( typeof( oHTMLElement ) != 'object' || !sAncestorTagName )  // check parms.
    return null;
  var oAncestor = null;
  for( var oParent = oHTMLElement.parentElement; oParent != null; oParent = oParent.parentElement )
    if( sAncestorTagName == oParent.tagName )
      {
      oAncestor = oParent;
      break;
      }
  return oAncestor;
}
</script>
<div id=SearchTbl_mainDiv style="position:absolute;top:360;left:30;width:950;height:210;visibility:visible;border-style:solid;border-width:1px; "
 tabindex=-1  onclicklink="OnSearchTbl_ClickLink();">
<div id=SearchTbl_tableHeader style="width:950;height:24;overflow:hidden;">
<table class="IWCControlHTMLTable" style="position:absolute;visibility:visible;cursor:hand;padding-left:3px;padding-right:3px;" cellspacing=0 cols=5 frame=below rules=all>
<col style="cursor:hand;width:76px;text-align:left;">
<col style="cursor:hand;width:300px;text-align:left;">
<col style="cursor:hand;width:265px;text-align:left;">
<col style="cursor:hand;width:76px;text-align:left;">
<col style="cursor:hand;width:265px;text-align:left;">
<tr nowrap style=" color:rgb(0,0,255);background-color:rgb(166,202,240); ;height:23px;">
<td style="text-align:center;   width:76px;WORD-WRAP:break-word">Fac Num</td>
<td style="text-align:center;   width:300px;WORD-WRAP:break-word">Facility Address</td>
<td style="text-align:center;   width:265px;WORD-WRAP:break-word">Program Name</td>
<td style="text-align:center;   width:76px;WORD-WRAP:break-word">PAC Code</td>
<td style="text-align:center;   width:265px;WORD-WRAP:break-word">Agency</td>
</tr></table>
</div>
<div id=SearchTbl style="width:950;height:187;overflow:auto;" OnScroll="OnTableScroll(this)">
<input type=hidden value="" name=SearchTbl_ClickRow><input type=hidden value="" name=SearchTbl_ClickRows id=SearchTbl_ClickRows><input type=hidden value="" name=SearchTbl_ClickColumn><input type=hidden value="" name=SearchTbl_Value>
<input type=hidden value="0" name=SearchTbl_ScrollTop id=SearchTbl_ScrollTop>
<table class="IWCControlHTMLTable" id=SearchTbl_TblElem style="visibility:visible;cursor:hand;padding-left:3px;padding-right:3px;" cellspacing=0 cols=5 frame=below rules=all>
<col ibiformat="A8" style="cursor:hand;width:76px;text-align:left;">
<col ibiformat="A45" style="cursor:hand;width:300px;text-align:left;">
<col ibiformat="A50" style="cursor:hand;width:265px;text-align:left;">
<col ibiformat="A8" style="cursor:hand;width:76px;text-align:left;">
<col ibiformat="A35" style="cursor:hand;width:265px;text-align:left;">
<tr nowrap style="height:23px;">
<td style="width:76px;WORD-WRAP:break-word"><a href="" onclick="IWCCB();IWC_SearchTbl(this,0);return false;"></a></td>
<td style="width:300px;WORD-WRAP:break-word"><a href="" onclick="IWCCB();IWC_SearchTbl(this,0);return false;"></a></td>
<td style="width:265px;WORD-WRAP:break-word"><a href="" onclick="IWCCB();IWC_SearchTbl(this,0);return false;"></a></td>
<td style="width:76px;WORD-WRAP:break-word"></td>
<td style="width:265px;WORD-WRAP:break-word"></td>
</tr>
</table>
</div>
</div>
<script language=JavaScript>
var tbl = document.getElementById("SearchTbl");
tbl.scrollTop = 0;
</script>
<fieldset class="IWCControlGroupBox" id=GroupBox1 style="position:absolute;top:210;left:130;width:210;height:80;visibility:visible;cursor:auto;z-index:-1;"
 tabindex=-1>
</fieldset>
<div class="IWCControlStaticText" id=Text1 style="position:absolute;top:235;left:130;width:70;height:20;visibility:visible;  color:rgb(0,0,255);cursor:auto;text-align:center;"
 tabindex=-1>Number:</div>
<div class="IWCControlStaticText" id=Text2 style="position:absolute;top:236;left:220;width:70;height:20;visibility:visible;  color:rgb(0,0,255);cursor:auto;text-align:center;"
 tabindex=-1>Street Name:</div>
<fieldset class="IWCControlGroupBox" id=GroupBox2 style="position:absolute;top:160;left:130;width:210;height:190;visibility:visible;cursor:auto;z-index:-1;"
 tabindex=-1>
</fieldset>
<img class="IWCControlImage" id=Image1 name=Image1 style="position:absolute;top:1;left:1;visibility:visible;cursor:auto;"
 tabindex=-1  onmousedown="" onmouseup="" onmouseover="" onmouseout="" src="HTTP://rimaix:8080/approot/r_mhfacility/HeaderTemplate.jpg">
<input class="IWCControlEdit" id=FacNumSrchBox type=text name=FacNumSrchBox ibiformat=A8 ibivalidation=0 value="" style="position:absolute;top:184;left:140;width:70;height:23;visibility:visible;cursor:auto; text-align:left;"
 tabindex=12 MAXLENGTH=8>
<input class="IWCControlEdit" id=StreetNumBox type=text name=StreetNumBox ibiformat=A8 ibivalidation=0 value="" style="position:absolute;top:259;left:140;width:70;height:23;visibility:visible;cursor:auto; text-align:left;"
 tabindex=13 MAXLENGTH=8>
<input class="IWCControlEdit" id=StreetNamBox type=text name=StreetNamBox ibiformat=A25 ibivalidation=0 value="" style="position:absolute;top:259;left:220;width:90;height:23;visibility:visible;cursor:auto; text-align:left;"
 tabindex=14 MAXLENGTH=25>
<input class="IWCControlButton" id=SearchBtn type=button name=SearchBtn value="Search" style="position:absolute;top:300;left:180;width:100;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 tabindex=15  onkeydown="window.event.cancelBubble=true;" onclick="OnSearchBtn_Click();">
<select id=AgencyCbo name=AgencyCbo style="position:absolute;top:190;left:370;width:270;height:21;visibility:visible;cursor:auto;"
 tabindex=16  onchange="OnAgencyCbo_Change();" size=1>
<option class="IWCControlComboBox" selected w_value="ADMINISTRATIVE OMH/MR" value="1">ADMINISTRATIVE OMH/MR
<option class="IWCControlComboBox" w_value="ADVOSERV PROGRAMS" value="2">ADVOSERV PROGRAMS
<option class="IWCControlComboBox" w_value="AHEDD" value="3">AHEDD
<option class="IWCControlComboBox" w_value="APM" value="4">APM
<option class="IWCControlComboBox" w_value="APS" value="5">APS
<option class="IWCControlComboBox" w_value="ASSOCIATION FOR  INDEPENDENT GROWTH" value="6">ASSOCIATION FOR  INDEPENDENT GROWTH
<option class="IWCControlComboBox" w_value="AVS" value="7">AVS
<option class="IWCControlComboBox" w_value="BARBER RESOURCES" value="8">BARBER RESOURCES
<option class="IWCControlComboBox" w_value="BARC" value="9">BARC
<option class="IWCControlComboBox" w_value="BRIANS HOUSE" value="10">BRIANS HOUSE
<option class="IWCControlComboBox" w_value="CADES" value="11">CADES
<option class="IWCControlComboBox" w_value="CALCUTTA HOUSE" value="12">CALCUTTA HOUSE
<option class="IWCControlComboBox" w_value="CAMPHILL" value="13">CAMPHILL
<option class="IWCControlComboBox" w_value="CARELINK" value="14">CARELINK
<option class="IWCControlComboBox" w_value="CATCH" value="15">CATCH
<option class="IWCControlComboBox" w_value="CATHOLIC SOCIAL SERVICES" value="16">CATHOLIC SOCIAL SERVICES
<option class="IWCControlComboBox" w_value="CENT COMP (JFK)" value="17">CENT COMP (JFK)
<option class="IWCControlComboBox" w_value="CENTER FOR AUTISTIC CHILDREN" value="18">CENTER FOR AUTISTIC CHILDREN
<option class="IWCControlComboBox" w_value="CHILD CRISIS TREATMENT CENTER" value="19">CHILD CRISIS TREATMENT CENTER
<option class="IWCControlComboBox" w_value="CHILDRENS PSYCHIATRIC CENTER" value="20">CHILDRENS PSYCHIATRIC CENTER
<option class="IWCControlComboBox" w_value="CODAAP" value="21">CODAAP
<option class="IWCControlComboBox" w_value="COMHAR" value="22">COMHAR
<option class="IWCControlComboBox" w_value="COMM COUNC CA#4" value="23">COMM COUNC CA#4
<option class="IWCControlComboBox" w_value="COMM INTERACTIONS" value="24">COMM INTERACTIONS
<option class="IWCControlComboBox" w_value="COMMUNITY INTEGRATED SERVICES" value="25">COMMUNITY INTEGRATED SERVICES
<option class="IWCControlComboBox" w_value="CONGRESSO" value="26">CONGRESSO
<option class="IWCControlComboBox" w_value="DEVEREUX" value="27">DEVEREUX
<option class="IWCControlComboBox" w_value="DHS" value="28">DHS
<option class="IWCControlComboBox" w_value="DIVINE PROVIDENCE" value="29">DIVINE PROVIDENCE
<option class="IWCControlComboBox" w_value="DON GUANELLA" value="30">DON GUANELLA
<option class="IWCControlComboBox" w_value="EINSTEIN" value="31">EINSTEIN
<option class="IWCControlComboBox" w_value="ELWYN CRS" value="32">ELWYN CRS
<option class="IWCControlComboBox" w_value="ELWYN CWS" value="33">ELWYN CWS
<option class="IWCControlComboBox" w_value="ELWYN INSTITUTE" value="34">ELWYN INSTITUTE
<option class="IWCControlComboBox" w_value="EMAN" value="35">EMAN
<option class="IWCControlComboBox" w_value="FAMILY BASED WAIVER" value="36">FAMILY BASED WAIVER
<option class="IWCControlComboBox" w_value="FAMILY SUPPORT SERVICES" value="37">FAMILY SUPPORT SERVICES
<option class="IWCControlComboBox" w_value="GATEWAY" value="38">GATEWAY
<option class="IWCControlComboBox" w_value="GAUDENZIA" value="39">GAUDENZIA
<option class="IWCControlComboBox" w_value="GROWTH HORIZONS" value="40">GROWTH HORIZONS
<option class="IWCControlComboBox" w_value="HOLLAND GLEN" value="41">HOLLAND GLEN
<option class="IWCControlComboBox" w_value="HORIZON HOUSE" value="42">HORIZON HOUSE
<option class="IWCControlComboBox" w_value="IFC, INC" value="43">IFC, INC
<option class="IWCControlComboBox" w_value="INTERAC" value="44">INTERAC
<option class="IWCControlComboBox" w_value="J CHAI" value="45">J CHAI
<option class="IWCControlComboBox" w_value="J J PETERS" value="46">J J PETERS
<option class="IWCControlComboBox" w_value="JEFFERSON" value="47">JEFFERSON
<option class="IWCControlComboBox" w_value="JEVS" value="48">JEVS
<option class="IWCControlComboBox" w_value="JEWISH FAMILY SERVICES" value="49">JEWISH FAMILY SERVICES
<option class="IWCControlComboBox" w_value="KENCCID" value="50">KENCCID
<option class="IWCControlComboBox" w_value="KENCREST" value="51">KENCREST
<option class="IWCControlComboBox" w_value="KEYSTONE RESIDENCE" value="52">KEYSTONE RESIDENCE
<option class="IWCControlComboBox" w_value="KEYSTONE SE" value="53">KEYSTONE SE
<option class="IWCControlComboBox" w_value="LA SALLE" value="54">LA SALLE
<option class="IWCControlComboBox" w_value="LARKSPUR" value="55">LARKSPUR
<option class="IWCControlComboBox" w_value="LAUREL HIGHLANDS PLF" value="56">LAUREL HIGHLANDS PLF
<option class="IWCControlComboBox" w_value="LEHIGH UNIVERSITY" value="57">LEHIGH UNIVERSITY
<option class="IWCControlComboBox" w_value="LENAPE VALLEY FOUNDATION" value="58">LENAPE VALLEY FOUNDATION
<option class="IWCControlComboBox" w_value="LYNCH HOMES" value="59">LYNCH HOMES
<option class="IWCControlComboBox" w_value="M.H. INPATIENT" value="60">M.H. INPATIENT
<option class="IWCControlComboBox" w_value="M.R. PLF" value="61">M.R. PLF
<option class="IWCControlComboBox" w_value="MATTERN" value="62">MATTERN
<option class="IWCControlComboBox" w_value="MEDICAL COLLEGE OF PA" value="63">MEDICAL COLLEGE OF PA
<option class="IWCControlComboBox" w_value="MELMARK" value="64">MELMARK
<option class="IWCControlComboBox" w_value="MERCY CATHOLIC HOSPITAL" value="65">MERCY CATHOLIC HOSPITAL
<option class="IWCControlComboBox" w_value="MH ASSOCIATION OF SE PA" value="66">MH ASSOCIATION OF SE PA
<option class="IWCControlComboBox" w_value="MH CARE" value="67">MH CARE
<option class="IWCControlComboBox" w_value="MILESSTONES" value="68">MILESSTONES
<option class="IWCControlComboBox" w_value="NATIONAL MENTOR" value="69">NATIONAL MENTOR
<option class="IWCControlComboBox" w_value="NEIGHBOURS" value="70">NEIGHBOURS
<option class="IWCControlComboBox" w_value="NETWORKS" value="71">NETWORKS
<option class="IWCControlComboBox" w_value="NEUMANN CENTER" value="72">NEUMANN CENTER
<option class="IWCControlComboBox" w_value="NORTH PHILADELPHIA HEALTH SYSTEMS" value="73">NORTH PHILADELPHIA HEALTH SYSTEMS
<option class="IWCControlComboBox" w_value="NORTHEAST" value="74">NORTHEAST
<option class="IWCControlComboBox" w_value="NORTHWEST HUMAN SERVICES" value="75">NORTHWEST HUMAN SERVICES
<option class="IWCControlComboBox" w_value="OESS" value="76">OESS
<option class="IWCControlComboBox" w_value="OIC" value="77">OIC
<option class="IWCControlComboBox" w_value="ONE DAY AT A TIME" value="78">ONE DAY AT A TIME
<option class="IWCControlComboBox" w_value="OTHER OPTIONS" value="79">OTHER OPTIONS
<option class="IWCControlComboBox" w_value="OVERBROOK FRIEDLANDER" value="80">OVERBROOK FRIEDLANDER
<option class="IWCControlComboBox" w_value="OVERBROOK SCHOOL" value="81">OVERBROOK SCHOOL
<option class="IWCControlComboBox" w_value="PA HOSPITAL HALL-MERCER" value="82">PA HOSPITAL HALL-MERCER
<option class="IWCControlComboBox" w_value="PA SCHOOL-DEAF" value="83">PA SCHOOL-DEAF
<option class="IWCControlComboBox" w_value="PARTNERSHIP" value="84">PARTNERSHIP
<option class="IWCControlComboBox" w_value="PATH" value="85">PATH
<option class="IWCControlComboBox" w_value="PDDC" value="86">PDDC
<option class="IWCControlComboBox" w_value="PEP" value="87">PEP
<option class="IWCControlComboBox" w_value="PERSONLINK-PHMC" value="88">PERSONLINK-PHMC
<option class="IWCControlComboBox" w_value="PHEA/MCP" value="89">PHEA/MCP
<option class="IWCControlComboBox" w_value="PHED" value="90">PHED
<option class="IWCControlComboBox" w_value="PHILADEPHIA CORPORATION FOR AGING" value="91">PHILADEPHIA CORPORATION FOR AGING
<option class="IWCControlComboBox" w_value="PHMC" value="92">PHMC
<option class="IWCControlComboBox" w_value="PRESBYTERIAN" value="93">PRESBYTERIAN
<option class="IWCControlComboBox" w_value="PRISON HEALTH" value="94">PRISON HEALTH
<option class="IWCControlComboBox" w_value="PROJECT HOME" value="95">PROJECT HOME
<option class="IWCControlComboBox" w_value="QUALITY PROGRESSIONS" value="96">QUALITY PROGRESSIONS
<option class="IWCControlComboBox" w_value="R-HOUSE" value="97">R-HOUSE
<option class="IWCControlComboBox" w_value="RESOURCES FOR HUMAN DEVELOPMENT" value="98">RESOURCES FOR HUMAN DEVELOPMENT
<option class="IWCControlComboBox" w_value="RIDGEWAY PHILA" value="99">RIDGEWAY PHILA
<option class="IWCControlComboBox" w_value="ROSEHILL" value="100">ROSEHILL
<option class="IWCControlComboBox" w_value="ROYER GRAVES" value="101">ROYER GRAVES
<option class="IWCControlComboBox" w_value="SALVATION ARMY" value="102">SALVATION ARMY
<option class="IWCControlComboBox" w_value="SCRANTON COUNSE" value="103">SCRANTON COUNSE
<option class="IWCControlComboBox" w_value="SELF DETERMINATION" value="104">SELF DETERMINATION
<option class="IWCControlComboBox" w_value="SHALOM" value="105">SHALOM
<option class="IWCControlComboBox" w_value="SPIN" value="106">SPIN
<option class="IWCControlComboBox" w_value="ST JOHNS" value="107">ST JOHNS
<option class="IWCControlComboBox" w_value="STATE CTT" value="108">STATE CTT
<option class="IWCControlComboBox" w_value="STEP-BY-STEP" value="109">STEP-BY-STEP
<option class="IWCControlComboBox" w_value="STILLMEADOW" value="110">STILLMEADOW
<option class="IWCControlComboBox" w_value="SUN THERAPY CLUB" value="111">SUN THERAPY CLUB
<option class="IWCControlComboBox" w_value="SUNNY DAYS" value="112">SUNNY DAYS
<option class="IWCControlComboBox" w_value="SUPPORT CONCEPTS" value="113">SUPPORT CONCEPTS
<option class="IWCControlComboBox" w_value="TABOR" value="114">TABOR
<option class="IWCControlComboBox" w_value="TEMPLE D.D." value="115">TEMPLE D.D.
<option class="IWCControlComboBox" w_value="TEMPLE IOD" value="116">TEMPLE IOD
<option class="IWCControlComboBox" w_value="TEMPLE-EPISCOPAL" value="117">TEMPLE-EPISCOPAL
<option class="IWCControlComboBox" w_value="THE WEDGE" value="118">THE WEDGE
<option class="IWCControlComboBox" w_value="THER PLAY" value="119">THER PLAY
<option class="IWCControlComboBox" w_value="THERAPY SOLUTIONS" value="120">THERAPY SOLUTIONS
<option class="IWCControlComboBox" w_value="TRI-COUNTY HUMA" value="121">TRI-COUNTY HUMA
<option class="IWCControlComboBox" w_value="TYLER" value="122">TYLER
<option class="IWCControlComboBox" w_value="UCPA" value="123">UCPA
<option class="IWCControlComboBox" w_value="VALUES INTO ACTION" value="124">VALUES INTO ACTION
<option class="IWCControlComboBox" w_value="VILLAGE CARE" value="125">VILLAGE CARE
<option class="IWCControlComboBox" w_value="VISION FOR EQUALITY" value="126">VISION FOR EQUALITY
<option class="IWCControlComboBox" w_value="VOLUNTEERS" value="127">VOLUNTEERS
<option class="IWCControlComboBox" w_value="WALKER MEMORIAL" value="128">WALKER MEMORIAL
<option class="IWCControlComboBox" w_value="WARREN E. SMITH" value="129">WARREN E. SMITH
<option class="IWCControlComboBox" w_value="WEST PHILADELPHIA CONSORTIUM" value="130">WEST PHILADELPHIA CONSORTIUM
<option class="IWCControlComboBox" w_value="WEST PHILADELPHIA CONSORTIUM" value="131">WEST PHILADELPHIA CONSORTIUM
<option class="IWCControlComboBox" w_value="WIVES SELF-HELP" value="132">WIVES SELF-HELP
<option class="IWCControlComboBox" w_value="WOODHAVEN-NORTHWEST" value="133">WOODHAVEN-NORTHWEST
<option class="IWCControlComboBox" w_value="WOODS SCHOOL" value="134">WOODS SCHOOL
<option class="IWCControlComboBox" w_value="WORDSWORTH" value="135">WORDSWORTH
</select>
<input type="hidden" name="W_AgencyCbo" value=" ">
<input class="IWCControlButton" id=ClrSrchBtn type=button name=ClrSrchBtn value="Clear Search" style="position:absolute;top:240;left:360;width:100;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 tabindex=17  onkeydown="window.event.cancelBubble=true;" onclick="OnClrSrchBtn_Click();">
<input class="IWCControlButton" id=AddNewBtn type=button name=AddNewBtn value="New Facility" style="position:absolute;top:240;left:700;width:120;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 tabindex=18  onkeydown="window.event.cancelBubble=true;" onclick="OnAddNewBtn_Click();">
<input class="IWCControlButton" id=CloseBtn type=button name=CloseBtn value="Close" style="position:absolute;top:100;left:740;width:100;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 tabindex=19  onkeydown="window.event.cancelBubble=true;" onclick="OnCloseBtn_Click();">
<input class="IWCControlEdit" id=UserMsg type=text name=UserMsg ibiformat=A50 ibivalidation=0 value="Welcome" style="position:absolute;top:580;left:240;width:520;height:23;visibility:visible;  color:rgb(255,0,0);background-color:rgb(192,192,192);font-family:MS Sans Serif;font-weight:700;font-size:10pt;font-style:normal;text-decoration:none;cursor:auto;border-style:none; text-align:center;"
 tabindex=20 MAXLENGTH=50>
<input class="IWCControlEdit" id=CopyrightBox type=text name=CopyrightBox ibiformat=a60 ibivalidation=0 value="Copyright 2007, City Of Philadelphia - All Rights Reserved" style="position:absolute;top:621;left:210;width:570;height:23;visibility:visible;  color:rgb(0,0,0);background-color:rgb(255,251,240);font-family:MS Sans Serif;font-weight:400;font-size:10pt;font-style:normal;text-decoration:none;cursor:auto;border-style:none; text-align:center;"
 tabindex=21 MAXLENGTH=60>
<input class="IWCControlButton" id=NewAgencyBtn type=button name=NewAgencyBtn value="New/Edit Agency" style="position:absolute;top:280;left:700;width:120;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 tabindex=22  onkeydown="window.event.cancelBubble=true;" onclick="OnNewAgencyBtn_Click();">
<input class="IWCControlButton" id=RefreshBtn type=button name=RefreshBtn value="Refresh" style="position:absolute;top:200;left:700;width:120;height:30;visibility:visible;  background-color:rgb(215,215,215);font-family:MS Sans Serif;font-weight:700;font-size:8pt;font-style:normal;text-decoration:none;cursor:auto;"
 title="Click to Reload Agency List" tabindex=23  onkeydown="window.event.cancelBubble=true;" onclick="OnRefreshBtn_Click();">
</form>
<SCRIPT LANGUAGE="JavaScript1.2" SRC="/ibi_html/javaassist/ibi/html/maintain/iwcmenu.js" TYPE='text/javascript'></SCRIPT>
<form method=post><input type=hidden></form>
<script language=JavaScript>
document.images.Image1.srcUp =IWCIMG("HeaderTemplate");
 document.IWCDefaultButton = document.getElementById("SearchBtn");
IWCFocusElement = document.getElementById("FacNumSrchBox");
if(IWCFocusElement && IWCFocusElement.focus != null && !IWCFocusElement.disabled && IWCFocusElement.style.visibility == "visible"){
 if(IWCFocusElement.type=="text"||IWCFocusElement.type=="textarea")
   IWCFocusElement.select();
 IWCFocusElement.focus();
}
</script>
</body>
</html>
<!-- (time 141354) -->
<!-- CGI gened on Dec  8 2004 17:55:38
 -->
 
 
Posts: 41 | Registered: August 21, 2007Report This Post
Expert
posted Hide Post
A javascript problem as opposed to a WebFOCUS one. Try putting -

document.body.style.cursor = 'auto'

into a function called within the body onload instead of where it is currently.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
Is it possible that you do not have the ibi_html virtual set up in IIS.

I have seen that cause this issue.

Your code did not come up with that warning when I ran on my test system.


Alan.
WF 7.705/8.007
 
Posts: 1451 | Location: Portugal | Registered: February 07, 2007Report This Post
Member
posted Hide Post
quote:
Originally posted by Alan B:
Is it possible that you do not have the ibi_html virtual set up in IIS.

I have seen that cause this issue.

Your code did not come up with that warning when I ran on my test system.


Alan,

Could you please send me the settings you are talking about?


WebFocus 7.1.4
Windows XP
 
Posts: 17 | Registered: May 10, 2007Report This Post
Virtuoso
posted Hide Post
Within XP, presuming you are using IIS, goto Control Panel / Administrative tools / Internet Information Services. Open the tree to your web site (maybe default). This lists the virtual/real directories available to IIS. There you should have an entry ibi_html. Its properties should have a local path of C:\ibi\WebFOCUS7nn\ibi_html.

This is where maintain et al look for js files.


Alan.
WF 7.705/8.007
 
Posts: 1451 | Location: Portugal | Registered: February 07, 2007Report This Post
Member
posted Hide Post
Alan,

Probably my situation is slightly different than the one this topic started with.
My problem is following:
When I open any launch page in HTML Layout painter I am getting "Object expected" error.
This message comes with choice to debug it in MS Visual Studio. When I try to debug it opens the launch page code as a JavaScript file in MS Visual Studio and highlights function call UpdateData();.
I found this function in ibirls.js file but for some reason HTML Layout painter does not find it.
Could you please explain this situation and give the way how to fix it?


WebFocus 7.1.4
Windows XP
 
Posts: 17 | Registered: May 10, 2007Report This Post
Expert
posted Hide Post
Is your Dev Studio installation, just Apache Tomcat or do you use IIS.

If it is tomcat, then check the same things from above with it.

You normally get in the http://localhost:8080


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Member
posted Hide Post
quote:
Originally posted by Waz:
Is your Dev Studio installation, just Apache Tomcat or do you use IIS.

If it is tomcat, then check the same things from above with it.

You normally get in the http://localhost:8080


Waz,

Thank you for response.
I found all things Alan mentioned on my local machine. So, these properties are OK but I still receive the error message "Object expected".
Concerning your question - I have Apache Tomcat Dev Studio installation.

This message has been edited. Last edited by: walker,


WebFocus 7.1.4
Windows XP
 
Posts: 17 | Registered: May 10, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders