Search the web
Sign In
New User? Sign Up
win_tech_off_topic · Windows Technical: Off Topic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 46513 - 46542 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
46513
Hi, I have to place a transparent DIV over any content, ie. image, iframe, button, etc etc. A click on, say, the button should be let through through the div,...
Ryan Heath
ryan_88keys
Offline Send Email
Mar 1, 2006
9:08 am
46514
I have a DataGrid for which I need a TemplateColumn. I'm trying to use a DropDownList in the TemplateColumn, but I can't seem to get the data binding right....
Jamin Guy
guy_jamin
Offline Send Email
Mar 1, 2006
8:12 pm
46515
You have to enumerate the DataGridItemCollection and then call DataGridItem.FindControl for your particular dropdown and then bind there. Alternatively, you...
Doug Tarr
TARR11
Offline Send Email
Mar 1, 2006
9:35 pm
46516
Shee-oot, Clem, lookee here: http://www.scottaaronson.com/blog/2006/02/lord-send-no-sign.html...
DJ Mort
mort1337
Offline Send Email
Mar 1, 2006
11:16 pm
46517
I'm trying to find some info about satellite resource assemblies, and the docs are a bit sketchy on the topic. Does any know: a) Do satellite assemblies for...
Kevin Dente
kevindente
Offline Send Email
Mar 2, 2006
2:02 am
46518
Here's a sample of what I use. <asp:TemplateColumn HeaderText="Sport"> <ItemTemplate> <asp:Label id=Label4 runat="server" Text='<%# DataBinder.Eval(Container, ...
Richard Howells
loopylozzysdad
Offline Send Email
Mar 2, 2006
8:52 am
46519
... I'd probably just export the functionality to role 2 using with security attributes, and then make sure that anyone in role 3 was also in role 2. You could...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
2:21 pm
46520
... Not really, I've never done anything like this. A big transparent div overlay makes me squirm though. I'd probably try harder to get the mouse events from...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
2:24 pm
46521
Let me explain it a bit further: Its about Ads. Since I am not in control of the content of the ads (read iframes) I do not know up front what to listen for......
Ryan Heath
ryan_88keys
Offline Send Email
Mar 2, 2006
3:04 pm
46522
... After the iframe loads its content, can't you just enumerate the HTML DOM, looking for <a> or <button> nodes and attach click handlers to those..? (Or is...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
3:17 pm
46523
Is there a purpose behind wanting to *overlay* the DIV? If the goal is simply to be able to catch events from all the elements that would be under the DIV then...
Marsh, Drew
drew_marsh
Offline Send Email
Mar 2, 2006
3:18 pm
46524
Can you can actually insert the DIV in the DOM as a parent of the content? If so, it should bubble up to the DIV after the contained elements. ... From:...
Jeremy Lew
schramm9
Online Now Send Email
Mar 2, 2006
3:19 pm
46525
... Hmm, seems like what I want is not possible then :( The *catching* div overlays an iframe, the content of the iframe could be anything: from an image, an...
Ryan Heath
ryan_88keys
Offline Send Email
Mar 2, 2006
3:36 pm
46526
What if you inserted an invisible DIV as a parent of the content, and had it forward the bubbled click to your overlay via script? ... From:...
Jeremy Lew
schramm9
Online Now Send Email
Mar 2, 2006
5:06 pm
46527
... What you want to do is possible. Just nasty. Instead of a transparent <div> use an <img> with a transparent gif. Absolutely position the image over the...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
5:57 pm
46528
Stealth sharks to patrol the high seas * 01 March 2006 * From New Scientist Print Edition * Susan Brown IMAGINE getting inside the mind of a shark: swimming...
G.Waleed Kavalec
gkavalec
Offline Send Email
Mar 2, 2006
6:03 pm
46529
... Ah didnt think of that one ... I think I'll workout for another solution with the customer <sigh> Thanks to all who responded. // Ryan...
Ryan Heath
ryan_88keys
Offline Send Email
Mar 2, 2006
6:12 pm
46530
... What's the actual *problem*? I.e. what are you trying to achieve by catching an onclick event from the framed content?...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
6:22 pm
46531
... element ... and ... modify ... You mean you didn't do the hard part that nobody really knows how to do and that's why this solution isn't exactly...
Marsh, Drew
drew_marsh
Offline Send Email
Mar 2, 2006
6:56 pm
46532
... Umm... silly question, but just thought of it: how about attaching to listen to events at the document level of the IFrame?? From the parent window: var...
Marsh, Drew
drew_marsh
Offline Send Email
Mar 2, 2006
7:01 pm
46533
... Ryan said it's impossible. I satisfied myself that it's not impossible. I also discovered that a transparent div won't work, and that a transparent image...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
7:18 pm
46534
... No... wait... I have a better idea! Why don't you hook events in the iframe!? [1] ;) [1] http://groups.yahoo.com/group/win_tech_off_topic/message/46522...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
7:21 pm
46535
... Drew, John, Did you actually tried that? Thats something I tried in the first place but could get I work at all... See this simple example [1]. Events at...
Ryan Heath
ryan_88keys
Offline Send Email
Mar 2, 2006
9:27 pm
46536
... s/onclick/click...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
9:31 pm
46537
... Actually, my various guesses as to the syntax for attaching the event handlers didn't work either. I'd look it up, but those URLs are all the way over...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
9:58 pm
46538
The last one I posted wasn't very good. This is better [1]. Works in FF1.5 and IE6. [1] function load() { var f = window.frames[ 0 ].document; if (...
DJ Mort
mort1337
Offline Send Email
Mar 2, 2006
10:27 pm
46539
Actually in IE it is "onclick"[1]. Its event handling model was created long before the DOM events spec existed and therefore doesn't follow the standard....
Marsh, Drew
drew_marsh
Offline Send Email
Mar 2, 2006
10:35 pm
46540
Hi all, So, I love wikis. I use them all the time now for keeping track of all the crud I come across. I think wikis lend themselves well to tracking details...
Jeff Fitzsimons
fitzsimj
Online Now Send Email
Mar 2, 2006
11:40 pm
46541
... Tiddlywiki is a wiki in a single HTML file, so at least that makes it easy to check in with the project: http://www.tiddlywiki.com/ I don't know how...
Kirk Jackson
kirkjackson
Offline Send Email
Mar 3, 2006
12:03 am
46542
Wow. That is very cool....
Darrel Miller
darrelmiller
Offline Send Email
Mar 3, 2006
12:58 am
Messages 46513 - 46542 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help