Dear Sir,
 
Hello ! Please find below the our queries again with more  explanation.
 
 
1)   I want to display timeline starting, ending date and title 
     on mouse over event of the event bubble point displayed on the timeline
for the event (Dot) like tooltip for that 


     event,  Please guide me.
2)   I want to hide the title displayed on the right of the bubble point to
avoid space it occupies so that more events 


     dots can be displayed. Please guide me.
3)   The bubble - info window which gets displayed on clicking event dot
goes out of the timeline displayed esp. on corner 


     events Dots. So how to controlled it to be displayed - opened up on
timeline area only. Please guide me.
4)   Yes I do understand, the client is using this software free, it is a
stupid question however to ask what to do to 


     hide the logo displayed on lower left corner, but anyways the site is
opening/showed on the status bar, and my client 


     is wanting this delaying my payment, so if possible please help me.
 
Please help soon.
 
Thanks & Regards,
 
Naimesh Trivedi
 
 
Naimesh (Hotmail) wrote:
> 
> Dear Sir,
> 
>  
> 
> Hello ! Well I am new to timeline and hence would seek for your help 
> to do following :
> 
>  
> 
> 1)       What to do display timeline starting, ending date and title 
> on mouse hover over the timeline event dot ? Please guide.
> 
I can't understand your question. Could you rephrase it?
 
> 2)       I need to add a checkbox in the info window which opens up on 
> clicking timeline dot and update one field in one table if user checks 
> that box on. Please guide me.
> 
Add this code after you include timeline-api.js:
 
    <script>
        var oldFillInfoBubble = 
Timeline.DefaultEventSource.Event.prototype.fillInfoBubble;
        Timeline.DefaultEventSource.Event.prototype.fillInfoBubble = 
function(elmt, theme, labeller) {
            oldFillInfoBubble.call(this, elmt, theme, labeller);
 
            var eventObject = this;
            var div = document.createElement("div");
            div.innerHTML = "<input type='checkbox' /> abc";
            div.firstChild.onclick = function() {
                ... do something ... eventObject should give you the 
data you need ...
            }
            elmt.appendChild(div);
        }
    </script>
 
> 3)       The logo in the bottom left of Simile timeline takes up some 
> space and hence the client wants to display it off, please guide me 
> how to do so.
> 
I find this question offensive and I will not answer it. You are using 
our software for free. At least have the courtesy to keep our logo.
 
> 4)       I have added 2 bands one for year and second for month, the 
> month timeline has got many events on some month which does not gets 
> displayed because the area is full, so is there a way to scroll it 
> vertically or some other way so that user can see other events not 
> viewable at the moment, please guide me.
> 
No, there is no support for scrolling it vertically.
 
> 5)       How I can display off the title of the event which gets 
> displayed on the right of the dot, please guide me.
> 
I don't understand the question.
 
David
 
 
  _____  

From: Naimesh (Hotmail) [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 24, 2007 3:38 PM
To: '[email protected]'
Subject: Timeline practical implemeting queries.
 
Dear Sir,
 
Hello ! Well I am new to timeline and hence would seek for your help to do
following :
 
1)       What to do display timeline starting, ending date and title on
mouse hover over the timeline event dot ? Please guide.
2)       I need to add a checkbox in the info window which opens up on
clicking timeline dot and update one field in one table if user checks that
box on. Please guide me.
3)       The logo in the bottom left of Simile timeline takes up some space
and hence the client wants to display it off, please guide me how to do so.
4)       I have added 2 bands one for year and second for month, the month
timeline has got many events on some month which does not gets displayed
because the area is full, so is there a way to scroll it vertically or some
other way so that user can see other events not viewable at the moment,
please guide me.
5)       How I can display off the title of the event which gets displayed
on the right of the dot, please guide me.
 
Thanks & Regards,
 
Naimesh Trivedi
 
 
 
 
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to