First off, thanks for your patience I'm pretty new to Ext. All I'm trying to do is get the value of a hidden form field on an HTML page and store its value a variable inside an ext script. Here's what I'm working with: HTML PAGE:
<form name="myForm">
<input type="hidden" id="accountID" name="divAccountID" value="463">
</form>
Ext Page:
var myAccountID = Ext.ComponentQuery.query('panel[name=myForm] #accountID');