- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi Experts,
Here's a summary of what's going on. I am busy developing an HTML page, which needs to have "sticky notes" functionality - the user clicks a button, a draggable/resizable panel (absolutely positioned div) pops up and they can write notes and place it in the appropriate place.
This is all done by means of binding an XML Data Island to a table, where each row contains the markup for the sticky note divs, and I simly add an xml element using javascript when I want to add a new note.
I also persist the sticky notes xml to a file on the client's computer, so that one user can send their notes to another and they can be loaded up in another instance of the page. (All of this is happening client-side, using only activeX and javascript, there's no server-side involved at all, the html page is generated once-off by a desktop application).
The xml includes location and size attributes, which I update as the user moves/resizes the sticky notes. I am now having a little difficulty loading the saved locations/sizes and applying them to the sticky note divs, since (As far as I know) I can't explicitly bind the style properties of my div to the xml.
What I need is some event, which fires when a new table/xml row is created/loaded so I can go read the attributes from the xml and apply them to the corresponding sticky note's style.
I've had a look at onrowenter, ondatasetchanged events of the XML element but it seems like they fire BEFORE the data is actually bound to the table.
Also tried binding the size/location to hidden fields inside the div and handling their onchange events, but those events never fired.
If anyone has any clue how to do something like this, I would be eternally grateful :) take care.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: VelioPosted on 2008-09-10 at 02:54:05ID: 22436702
haha, I just realised I was overlooking the most obvious solution.
The event I'm looking for is the button click which loads the sticky notes xml. at the end of it i know everything has been bound and it's just a matter of iterating through the xml/table rows and setting the styles accordingly :)