Link to home
Start Free TrialLog in
Avatar of maqskywalker
maqskywalker

asked on

jquery tooltip bound to sql server

Hi experts,

I saw this example of using a jquery tooltip

http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtooltip/jquery-tooltip-styling-and-appearance.htm

So I already know how to create this tool tip in the example.

Do any of you know a link to a website tutorial or a book that gives an example of using a jquery tooltip that is bound to JSON data that is taken from a SQL Server table and displayed in the tool tip.

So for example if I have a sql server table that looks like this:

EmployeeID    FirstName   LastName
1                       Nancy           Davolio

Then I would have a .asmx web service that queries sql server and outputs json data.

Then i would take this json data and bind it to a jquery tooltip in my .aspx  web page.

So my tool tip would show this text inside of it:

EmployeeID:   1
FirstName:      Nancy
LastName:      Davolio


Thanks for any reference you can give me.
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Don't make this confusing..... sq server has nothing to do with this unless you need to undersand out to make a json file from your serverside code.  So let's take sql server out of the picture.

What would help if you can create a short, self contained, compilable, example http://sscce.org on your site where you can post a link to your site where with your html and json data on the same page.
ASKER CERTIFIED SOLUTION
Avatar of maqskywalker
maqskywalker

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of maqskywalker
maqskywalker

ASKER

i found my own solution