Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to update the text property of a KineticJS text like a timer. but my below code doent work as expected, what I am doing wrong:

var dateTimeText = new Kinetic.Text({
            x: 40,
            y: 400,
            text: "Sample",
            fontSize: 18,
            width: 700,
            fontFamily: 'Calibri',
            fill: 'black',
            width: 700,
            padding: 10,
            align: 'right',
            draggable: true
        });
setInterval(function () { onUpdateTime() }, 1000);
        function onUpdateTime() {
            var date = new Date();
            dateTimeText.setText(date.toLocaleTimeString());
        }

In the onUpdateTime(), should I do manipulations on dateTimeText. When adding the draggable attribute on dateTimeText() and when clicking on it, i can atleast see the updated value :)

Link: https://googledrive.com/host/0B5b3MmHw5cqAR2U4eVdUd2l6RTg

share|improve this question
Just some questions to understand this better: ...What is the outcome/what doesnt work? what should happen , and what does happen? – winner_joiner Mar 4 at 9:46
@winner_joiner I have added the current implemnetation in the link. Outcome: The Text should update the "Sample" text value based on current time. What happens now: No change in the text value(unless mouse click on the text) – Kris Mar 4 at 11:18

1 Answer

up vote 2 down vote accepted

Try this:

    function onUpdateTime() {
        var date = new Date();
        dateTimeText.setText(date.toLocaleTimeString());
        // layer.draw(); // either this, or whatever the layer is called
        // dateTimeText.getParent().draw(); // or this, auto get parent layer
        dateTimeText.getLayer().draw(); // better solution suggested by Eric Rowell
    }
share|improve this answer
1  
a common thing to forget is to redraw the layer. – EliteOctagon Mar 4 at 14:19
1  
you could also create an animation, which updates the text object, and an animation automatically redraws the layer. – EliteOctagon Mar 4 at 14:19
1  
also, rather than assuming that the parent of the Text shape is the layer (it might be a group) it's better to do use dateTimeText.getLayer().draw() instead – Eric Rowell Mar 5 at 2:09
@EliteOctagon : Thanks for the solution, almost all the time I forget to redraw the layer. – Kris Mar 5 at 4:08
@EricRowell : You are correct regarding the parent of text object :), it is a group in my app. After updating the above step (with layer redraw) in my app I could see huge flickering in my custom shape object (Graph control), when redrawing layer. So i changed the text object to a group instead of directly on the layer. – Kris Mar 5 at 4:10
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.