在javascript中,重点关注TableView中InsertItemTemplate中FormView内的控件?

时间:2015-07-09 20:58:33

标签: javascript focus getelementbyid formview edititemtemplate

我相信标题就是这么说的。如何从javascript中的表中的InsertItemTemplate内的FormView内部控制焦点?

asp代码看起来像这样

<asp:Panel ...>
 <asp:UpdatePanel ...>
  <ContentTemplate>
   <asp:SqlDataSource ...>

    <asp:FormView ID=FormView1 ...>

      <InserItemTemplate>
         <asp:Table ID=tblIns ...>
           <asp:TextBox ID=txtInsMyBox ....>
           </asp:TextBox>
         </asp:Table>
      </InserItemTemplate>

      <EditItemTemplate>
         <asp:Table ID=tblUpd ...>
           <asp:TextBox ID=txtUpdMyBox ....>
           </asp:TextBox>
         </asp:Table>
      </EditItemTemplate>

    </asp:FormView>

    <asp:ValidationSummary />
    <div>
    <asp:Button ID="btnSave" .../>
    <asp:Button ID="btnCancel" .../>
    </div>
  </ContentTemplate>
 </asp:UpdatePanel>
</asp:Panel>

标题中的javascript代码如下所示:

<script type="text/javascript">
     function regainFocus() {
          //this works
          window.parent.document.getElementById("btnSave").focus();
          //this also works
          window.parent.document.getElementById("FormView1").focus(); 
          //this does not work
          window.parent.document.getElementById('<%#FormView1.FindControl("txtInsMyBox").ClientID%>').focus();
     }
</script> 

我尝试将标记从“#”更改为“=”符号,但没有区别。我还尝试在FormView中找到其他不同的控件但没有成功。

有人可以了解如何在FormView中的表内找到对象的FindControl吗?

0 个答案:

没有答案