Reputation: 2961
I have a list of items in my web app. Currently these have a name and a single link:
The user has requested further functionality from this list, so now I need to show a name, a date, a description, then three links
Unfortunately, screen estate is tight, and I can't fit all this into the allocated space.
I'd like to display "Item 1 11/11/10 blurb" as a link, which when clicked on, pops up a window asking what the user would like to do next.
I'm a total newbie at Javascript, on a tight timescale, and am not sure where to start with this.
We need to be compatible with IE6 (groan)
What should I use? Can someone point me to any useful resources or example??
We're using ASP.NET MVC3...
Cheers!
Upvotes: 0
Views: 727
Reputation: 15401
If you can use jquery I would recommend using the jQuery UI Dialog. It's easy to use and setup. Take a look at the link for a demo.
Upvotes: 6