0

TextBox is Enabled="false", which is why the tooltip is not showing on TextBox.

What should I do to show the ToolTip without changing state of TextBox?

<asp:TextBox ID="txtDescription" data-original-title="Description" Enabled="false" runat="server" Class="txtDescription form-control tooltips"></asp:TextBox>

Serlite
  • 12,130
  • 5
  • 38
  • 49
user3405179
  • 184
  • 11
  • Possible duplicate of [Firefox does not show tooltips on disabled input fields](http://stackoverflow.com/questions/2034820/firefox-does-not-show-tooltips-on-disabled-input-fields). See second answer. – Serlite Sep 02 '16 at 15:03
  • I can't see ToolTip in Chrome also. Because this is an Enable="False" TextBox. – user3405179 Sep 03 '16 at 03:55
  • The second answer is a fix pertaining to disabled inputs in Bootstrap in general. – Serlite Sep 03 '16 at 04:31

1 Answers1

0

I use ReadOnly="true" and it's work.

<asp:TextBox ID="txtDescription" data-original-title="Description" ReadOnly="true" runat="server" Class="txtDescription form-control tooltips"></asp:TextBox>
user3405179
  • 184
  • 11