У меня есть простая страница, на которой я хочу отфильтровать ListBox по значению (ям) в текстовом поле - оба в UpdatePanel.
Это работает правильно, однако, после обратной передачи текстовое поле потеряло фокус ... поэтому я вернул фокус в page_load.
Затем я заметил, что курсор теперь находится в начале текста, когда я хочу, чтобы он был в конце, чтобы пользователь мог продолжать печатать, поэтому я добавил атрибут onfocus (...) в текстовое поле, чтобы вернуть значение себе (см. код ниже).
Это работает первые два раза, но затем перестает устанавливать фокус на текстовое поле?
Разметка
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ListTest.aspx.cs" Inherits="SalesForceTest.ListTest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" LoadScriptsBeforeUI="true"/>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox runat="server" ID="filter" AutoPostBack="true" onkeyup="__doPostBack(this.id, this.value)" onfocus="this.value = this.value;" />
<br />
<asp:ListBox ID="AccountList" runat="server" Width="185px"></asp:ListBox>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>
Codebehind
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
namespace SalesForceTest
{
public partial class ListTest : System.Web.UI.Page
{
List<string> allAccounts = new List<string> { "2342", "3434", "2332", "3224", "7899", "8797", "3435" };
protected void Page_Load(object sender, EventArgs e)
{
AccountList.Items.Clear();
allAccounts.Where(ac => ac.StartsWith(filter.Text)).ToList().ForEach(a => AccountList.Items.Add(a));
if (Page.IsPostBack)
{
if (Request.Form["__EVENTTARGET"] == filter.ID)
{
ScriptManager1.SetFocus(filter);
}
}
}
}
}
Любая помощь ОЧЕНЬ с благодарностью получил:)