I would like to use text-to-speech when I hover over an image. For example, I have an imagebutton in a menu to retrieve statistics. When hovering over that imagebutton I would like to use text-to-speech to let te computer say the word 'Statistics'. I use
the Sapi object. Is it possible to use tts on a mouseover and, if so, how should I code that in my application?.
i am trying to include some tooltips in my MVC project. but i cant get any jquery effect from it, what i see is just default tooltip. I had follows several examples but still cant get it. currently i am doing like this:
I am creating a website for an international organization. The initial default page provides a list of languages for the user to select from, but then every page thereafter must be created at runtime with every text field inserted with the selected language. I am using tables in an SQL Server database that provides the translations for every text field on every page. My question is: How do I create a new web page at runtime that is seen by the user in the proper language? I know how to go from one web page to another existing web page. I just do not know how to transfer execution to a new web page.
When using the core ASP.NET 3.5 (w/ Ajax), is it possible to include a LinkButton in a tooltip?
Unfortunately, these tooltips are generated on-the-fly within a GridView to display custom data from each row. Tooltips are currently showing using jQuery.
So,I don't know how to add a LinkButton (for a "Modify" action) to call a method on code-behind.
How to create a tooltip on mouse over in asp.net or javascript?I have a button control search. while i mouse over in the button it shows please search message in tooltip.
Is there any jquery tooltip plugin that allows to write some values in popup bubble and save that value in DB via AJAX?!It should also be able to display values from DB
I have around 60 controls and I want to show a tooltip for each of them.I could do this manually but I want something that would allow me to make changes to the tooltip messages or the control they are bound to without modyfing the code (I don't know what this would be called).I thought about XML, but is there a better to store simple data like this?
I need to assign the value to the form controls inside the method. For this i'm pasing the form as a parameter and by looping this form i'm getting and assigning the value to each control like the following,
UpdateControls(Me) Public Sub UpdateControls(ByVal frm As Form) For Each ctl As Control In frm.Controls 'here i'm getting all controls Next End Sub
i'm able to get all the controls but not tooltip, How can i get the tooltip control of the form in above method?
I have this tooltip that looks like the preview of a graph.
However, the graph in the tooltip is not able to come out, and I think it's mainly due to the name. Below is a portion of the code for the tooltip.
[Code]....
My product name has more than one word (e.g. Yuppy Gummy) and the tooltip is only able to retrieve the 'Yuppy' part of the whole product name. I also have a query that makes use of the 'product' (in the above code) in the Where clause.
however when i edit the text as follows (making it bold and red in another gridview containing rich text editor)
i get the following (as a formatting result in the second grid view)
however when i view in the first gridview to display the tooltip i get the following result display the tooltip as rich text
although many people say that jquery is "very easy", i have really HARD TIME using it and i tried more than 10 times, always failed to make any use of it. i know it is my bad, but if you know other way not jquery
I have an load of images on my form with the purpose that if the user holds the mouse on it, (s)he gets a tooltip with some information. The image is a questionmark.The users are now asking if the duration of this tooltip can be extended so they actually can read all of the tekst.So it would be great if a TooltipExtender could be created that can be connected to a image control (or any other)
When the mouse pointer on the image to appear "tooltip" (panel with id = "tooltip"), whose content should be dynamically (using funds asp.net 3.5 ajax) load from the server.how to do it without third-party libraries
I have a checkboxlist that I am dynamically creating from a sql database I also have the tooltips stored in the same table. After my checkbox binds I am trying to dynamically add the tooltips but it will not add them. Here is the code I am trying to run this would be great.
var c = from f in dc.sp2_columns orderby f.Name select f; cblcolumns.DataSource = c; cblcolumns.DataTextField = "Name"; cblcolumns.DataValueField = "column_name"; cblcolumns.DataBind(); GridView gv = new GridView(); gv.DataSource = c; gv.DataBind(); int i = 0; foreach (GridViewRow grvRow in gv.Rows) { cblcolumns.Items[i].Attributes.Add("ToolTip", grvRow.Cells[2].Text); cblcolumns.ToolTip = grvRow.Cells[2].Text; i++; }
I need a urgent solution of jquery tooltip control.
My page have a grid view control where autogenerated column = true. It work fine. But i have new issue. i want to add jquery tool tip for some of that columns (say Marks_At_Math). When mouse is over the Marks_At_Math some related information will be showed in jquery tooltip.
How can I do this??? note that numbers of column of this gridview is not fix. A Student can take different number course. So I cann't use item template in the gridview.