emanemos Posted December 19, 2012 Posted December 19, 2012 Hello,I want to input a number in a field:<td width="100%" class="blockTable"><label>ND ou N° de prestation</label> <input class="field" type="text" id="clientNd" value="" onkeypress="ndKeyPressed(this, event)" onkeyup="checkNd(event)" onpaste="checkNdChanged(event)"/> <input type="hidden" id="originalClientNd" /> <input type="hidden" id="pppLogin" /> <labelWhat's the method?Thanks for your answers.
water Posted December 19, 2012 Posted December 19, 2012 emanemos, didn't you find the time to read through the help file and check those _IE* functions? The questions you posted before pointed you to the IE UDF. I think it's time you show some effort yourself. We don't handfeed users on this forum, we teach them how to fish. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
emanemos Posted December 19, 2012 Author Posted December 19, 2012 i've read the differents IE functions; but there's no form in the code. Generally, I used the _IEform functions. i tried with with _IEGetObjById.
jdelaney Posted December 19, 2012 Posted December 19, 2012 (edited) You can get the object by the ID (that you have bolded), then, on that object use .previousSibling until you get the node you needhttp://www.w3schools.com/dom/default.asphttp://www.w3schools.com/htmldom/dom_methods.aspDom methods for XML and HTML are interchangeable, generally Edited December 19, 2012 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
emanemos Posted December 20, 2012 Author Posted December 20, 2012 Hi I got it : $ND=_IEGetObjById($oIE,"clientNd") $ND.value = $sCellValue Thanks
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now