与工具提示绑定的 DropDownList
您好,我有一个由后面的代码限制的 DropDownList。如何使用 DataTextField
作为 DropDownList 的工具提示?
DropDownList list = this.DropDownList1;
list.DataSource = GetData();
list.DataTextField = "DisplayString";
list.DataValueField = "DataValue";
list.DataBind();
我希望有界字段 DisplayString
在工具提示中也有界。不使用 DropDownList 的 DataBound 事件是否可以实现?
Hi I have a DropDownList bounded from the code behind. How can I use the DataTextField
as a ToolTip of the DropDownList?
DropDownList list = this.DropDownList1;
list.DataSource = GetData();
list.DataTextField = "DisplayString";
list.DataValueField = "DataValue";
list.DataBind();
I want the bounded Field DisplayString
to bounded also in the ToolTip. Is this possible without using the DataBound
event of the DropDownList?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
只需在下拉列表绑定后调用该函数即可:
BindTooltip(Name of the dropdownlist);
Simply call that function after dropdown list binding:
BindTooltip(Name of the dropdownlist);
http://www.codeproject.com/KB/aspnet/List_Box_Tool_Tip.aspx
http://www.dotnetspider.com/resources /5099-工具提示-for-DropDownList-ASP-NET.aspx
http://www.codeproject.com/KB/aspnet/List_Box_Tool_Tip.aspx
http://www.dotnetspider.com/resources/5099-Tool-tip-for-DropDownList-ASP-NET.aspx
下面的代码可以工作,需要在 PageLoad 中调用此方法并将下拉列表传递给您想要工具提示的方法
下面是实际的方法:
Below code will work, need to call this method in PageLoad and pass the dropdown list to the method for which you want tooltip
Below is the actual method:
好吧,通过一些 javascript 工作,这是很有可能的。
首先,您在 html 端创建一个带有鼠标移出事件的 div
,然后需要一些 JavaScript 工作来确保当您将鼠标悬停
在下拉列表项上时,它会显示工具提示。最后一部分是将鼠标悬停和移出事件添加到您的下拉列表中,
然后它应该可以工作。您可能需要为工具提示添加额外的样式。
希望这有帮助
迈拉
Well with some javascript work,it's quite possible.
First you create a div inside your html side with mouse out event
then some javascript work is required to insure your when you hover you dropdownlist item it shows a tooltip
The last part is adding mouse over and out event to your dropdownlist
Then it should work.You may need to add extra style for your tooltip.
Hope this helps
Myra
这是我目前正在使用的 3 个示例!首先使用标准选择。
其次,将 Asp.net Dropdownlist 与外部数据源一起使用。第三个最简单的方法是,在下拉(选择)单击事件上使用 jQuery 动态添加工具提示(标题属性)。
1)
使用一点 jQuery:
2)。
/* 对于 Asp DropDown (Dropdownlist) 从数据库填充值!*/
另一种从另一个 Js 函数绑定 Tooltip 的方法,而不是在页面加载时
....只需致电
...
3)
或者更简单,只需添加以下代码即可!:
- 希望这有助于节省一些开发人员的时间!
Here are 3 sample examples I am currently using! First using standard Select.
Second using Asp.net Dropdownlist with an external datasource. 3rd simplest, add tooltip (title attribute) dynamically using jQuery on dropdown (select) click event.
1)
using a bit of jQuery:
2).
/* For Asp DropDown (Dropdownlist) Populating values from database!*/
Another method to bind Tooltip from another Js function instead on page load
....just call
...
3)
Or even easier just add the following code and that's it !:
-- Hope this helps save time to some developers !