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

_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to