quantw
24 Aug 2007, 2:19 AM
Hi folks,
I have some code following:
+ In default.js page
myIframe = Ext.getDom('myFrame_id');
myIframe.src = mypage.aspx;
+ In mypage.aspx page contains checkboxs declared in mypage.aspx.cs file following:
HtmlInputCheckBox box = new HtmlInputCheckBox();
box.Name = "chk"; box.ID = "chk";
I got checkbox following but it doesn't work.
var checkboxs = myIframe .document.getElementsByName('chk');
How can I get checkbox based on id or Name ?
Help me, please !
Quan.
I have some code following:
+ In default.js page
myIframe = Ext.getDom('myFrame_id');
myIframe.src = mypage.aspx;
+ In mypage.aspx page contains checkboxs declared in mypage.aspx.cs file following:
HtmlInputCheckBox box = new HtmlInputCheckBox();
box.Name = "chk"; box.ID = "chk";
I got checkbox following but it doesn't work.
var checkboxs = myIframe .document.getElementsByName('chk');
How can I get checkbox based on id or Name ?
Help me, please !
Quan.