我正在动态生成文本框。也会动态创建表格行,并将这些文本框添加到动态创建的行单元格中,并使用以下代码将它们添加到表格中
protected override void OnInit(EventArgs e)
{
PopulateTextBoxes();
SetFocus();
base.OnInit(e);
}
protected void PopulateTextBoxes()
{
int quantityRequired = 0;
quantityRequired =GetQuantity();
for (int j = 0; j < quantityRequired; j++)
{
TableRow row = new TableRow();
TableCell cell1 = new TableCell();
TextBox tb = new TextBox();
tb.ID = j.ToString() +"_RowTbx"
tb.AutoPostBack = true;
tb.TextChanged += new EventHandler(tb_TextChanged);
cell1.Controls.Add(tb);
row.Cells.Add(cell1);
TableCell cell2 = new TableCell();
CheckBox chBox = new CheckBox();
chBox.CheckedChanged += new EventHandler(chBox_CheckedChanged);
chBox.AutoPostBack = true;
cell2.Controls.Add(chBox);
row.Cells.Add(cell2);
TableCell cell3 = new TableCell();
Image img = new Image();
img.Width = Unit.Pixel(25);
img.Height = Unit.Pixel(25);
img.ImageUrl = "HttpRuntime.AppDomainAppVirtualPath" + "/Images/" +"img.jpeg";
cell3.Controls.Add(img);
row.Cells.Add(cell3);
tbl_Serial.Rows.Add(row);
}
LoadDataIfExists();
}
private void tb_TextChanged(object sender, EventArgs e)
{
//I have implemented code to validate the text entered in the text box.
}
protected void SetFocus()
{
int emptytbxRow = 0;
TextBox tbx = new TextBox();
for (int i = 0; i < tbl_Serial.Rows.Count; i++)
{
string tbxId = i.ToString() + "_RowTbx";
string text = ((TextBox)tbl_Serial.Rows[i].Cells[0].FindControl(tbxId))).Text;
if (text == null || text==string.Empty)
{
tbx=((TextBox)(tbl_Serial.Rows[i].Cells[0].FindControl(tbxId)));
if (tbx != null)
tbx.Focus();
}
}
protected void LoadDataIfExists()
{
List<string> lstData=Service.GetData(int someNum)
for (int j = 0; j < lstData.Count; j++)
{
string tbxID = j.ToString() + "_RowTbx";
TextBox tbx = (TextBox)tbl_Serial.Rows[j].Cells[0].FindControl(tbxID);
tbx.Text = lstData[j];
}
}
当我调试时,tbx.focus似乎正确地点击但我没有看到我的UI中的文本框上的光标闪烁。我不知道我是否遗漏了一些imp。谢谢。
编辑:对不起,我不清楚。页面加载时,文本框可能包含数据,但并非所有文本框都包含数据。因此,无论何时页面加载,都会有一些带有数据的文本框和空白的文本框。我希望光标位于第一个空框中。
答案 0 :(得分:1)
鉴于您知道哪个文本框是您的第一个空文本框,您还要了解页面生命周期。 OnInit是在页面生命周期的早期,因为页面仍在初始化并且对象尚未呈现给表单。尝试使用OnLoad或使用PreRender在呈现表单之前将焦点设置到您的项目。
下面的链接将显示您在循环期间可以挂钩的所有可用方法。
答案 1 :(得分:1)
由于某些未知原因,具有相同逻辑的C#代码不起作用,而javascript工作。希望以下帮助将来的人。谢谢Liqua提供了开始。
window.onload = function () {
FindWhichTextBoxIsEmpty();
}
function FindWhichTextBoxIsEmpty() {
var tableSerial = document.getElementById('tbl_Serial');
for (var i = 0; i < tableSerial.rows.length-1; i++) {
var ID = i.toString() + "_RowTbx";
if (document.getElementById(ID).value!="") {
var tb = document.getElementById(ID).value;
if (tb != "") {
if (i + 1 < tableSerial.rows.length-1) {
var nextID = (i + 1).toString() + "_RowTbx";
document.getElementById(nextID).focus();
}
}
}
}
}
答案 2 :(得分:0)
没有清楚地得到你的问题,我得到的是你动态创建了一个文本框,并试图将它集中在运行时..可能这是你的工作尝试创建tb + = getFocus事件,或尝试tb.Focus( );