Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dpalmond

  1. dpalmond

    Reading Nodes of XML file.

    This was the second function to populate the second select list. function populateFacilityList(){ clearSelect('OBDataset_Facility_1'); var lstDivision = document.getElementById('OBDataset_Facility_1'); for (var i=0; i<allFacilityNodes.length...
  2. dpalmond

    Reading Nodes of XML file.

    How can I populate a select list with the Facilities listed in the following xml file: <HealthServices> <Divisions> <Division>Home Office</Division> <Facility>Administration</Facility> <Facility>Finance</Facility> <Facility>Human Resources</Facility>...
  3. dpalmond

    Path in javascript

    I have javascript on a web page in our intranet to read an xml file. When I code the path as follows things work fine: var xmlObj1 = new XML(".\xml\esf_data1.xml"); because xml is a folder in the path this web page is in. I need to move the file in the xml folder to a different path on the...
  4. dpalmond

    Refresh page with select list

    Thanks Dan, I was able to fix the problem with the following function: function refresh_Form() { statusForm.reset(); populateDivisionList(); populateFacilityList(); populateOriginatorList(); }
  5. dpalmond

    Refresh page with select list

    I have a page that has 3 select list that are loaded from xml files with the following code: var xmlObj1 = new XML("xml/esf_data1.xml"); var xmlObj2 = new XML("xml/esf_data2.xml"); xmlObj1.onLoad = function() { } xmlObj2.onLoad = function() {...

Part and Inventory Search

Back
Top