Grokbase
Topics Posts Groups | in
x
[ help ]

Siah Sookhteh (siasoo...@gmail.com)

Profile | Posts (51)

User Information

Display Name:Siah Sookhteh
Partial Email Address:siasoo...@gmail.com
Posts:
51 total
46 in Dojo Tookit
5 in PostgreSQL - General

5 Most Recent

All Posts
1) Siah Sookhteh [GENERAL] fillfactor Question
| +1 vote
Hi, fillfactor affects 'update' statements or also has affects for 'insert' and 'delete'? Thanks,...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Hi,

fillfactor affects 'update' statements or also has affects for
'insert' and 'delete'?

Thanks,
Sia


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [email protected: majo...@postgresql.org] so that your
message can get through to the mailing list cleanly
2) Siah Sookhteh [Dojo-interest] Color Change Animation Question
| +1 vote
Hi, I am using dojo 0.9 and was not sure how to make a color change affect. I want to fade the...
Dojo Tookit
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Hi,

I am using dojo 0.9 and was not sure how to make a color change
affect. I want to fade the background-color of a textbox from yellow
to white in 1 second period. I'd appreciate pointers in this regard,

Thanks,
Sia
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
[email protected: Dojo-int...@dojotoolkit.org]
http://dojotoolkit.org/mailman/listinfo/dojo-interest
3) Siah Sookhteh Re: [Dojo-interest] No Shadow on 0.9
| +1 vote
Thanks Alex, Sia ...
Dojo Tookit
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Thanks Alex,
Sia


On 8/3/07, Alex Russell <alex@dojotoolkit.org> wrote:
> On Wednesday 01 August 2007 1:35 pm, Siah Sookhteh wrote:
> > Will we have shadow back for 0.9?
>
> Not in Core. Perhaps out in Dojox if someone feels like porting it. I've
> always been somewhat ambivalent about the implementation of shadow
> since it's something that CSS should do for us (and in Webkit, it
> does).
>
> Regards
>
> --
> Alex Russell
> [email protected: a...@sitepen.com] A99F 8785 F491 D5FD 04D7 ACD9 4158 FFDF 2894 6876
> [email protected: a...@dojotoolkit.org] BE03 E88D EABB 2116 CC49 8259 CF78 E242 59C3 9723
>
> _______________________________________________
> FAQ: http://dojotoolkit.org/support/faq
> Book: http://dojotoolkit.org/docs/book
> Forums: http://dojotoolkit.org/forum
> [email protected: Dojo-int...@dojotoolkit.org]
> http://dojotoolkit.org/mailman/listinfo/dojo-interest
>
>
>
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
[email protected: Dojo-int...@dojotoolkit.org]
http://dojotoolkit.org/mailman/listinfo/dojo-interest
4) Siah Sookhteh Re: [Dojo-interest] What's a mixin for Animation?
| +1 vote
Thanks for the clarifications and your quick response. Sia ...
Dojo Tookit
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Thanks for the clarifications and your quick response.
Sia


On 8/1/07, peter e higgins <dante@inpdx.net> wrote:
>
> This was a documentation bug that was fixed in SVN yesterday actually.
>
> dojo.fx.slideTo({ node: 'divId', duration: 1000, top: 1000, left:
> 400 }).play();
>
> gives you the animation you are looking for.
>
> the idea of 'mixin' is such that dojo.fx.slideTo 'mixes' your object
> {node:etc, etc} into a dojo.animateProperty _Animation, which uses a similar
> object:
>
> dojo.animateProperty({ node: 'nodeId', duration: 1000,
>         properties: {
>                 top: { end: 1000, unit: "px" },
>                 left: { end: 400, unit:"px" }
> /* opacity: { }, backgroundColor: { }, etc, etc */
>         }
> }).play();
>
> dojo.animateProperty is very useful.
>
> On Wednesday 01 August 2007 19:23, Siah Sookhteh wrote:
> > Hi,
> >
> > I am trying to get 0.9's dojo.fx.slideTo to work and in the dojo's
> > code there is this comment:
> >
> >       // addition mixin args needed:
> > // coords: { top: Decimal?, left: Decimal? }
> >
> > But, I'm not sure where this has to go. I read
> > http://dojotoolkit.org/book/dojo-porting-guide-0-4-x-0-9/effects-dojo-lfx-c
> >hanges and its not too clear what a mixin is. So, I've unsuccessfully tried
> > all the following:
> >
> > dojo.fx.slideTo({node:'DIV_ID', duration: 1000, 'coords':{ top: 1000,
> > left: 400}}).play();
> >
> > and here it always animates my DIV to 0 and 0
> >
> > I also tried placing 'coords' key within another 'properties'
> > dictionary, and interestingly enough, it stops animation all together.
> >
> > Thanks,
> > Sia
> > _______________________________________________
> > FAQ: http://dojotoolkit.org/support/faq
> > Book: http://dojotoolkit.org/docs/book
> > Forums: http://dojotoolkit.org/forum
> > [email protected: Dojo-int...@dojotoolkit.org]
> > http://dojotoolkit.org/mailman/listinfo/dojo-interest
> _______________________________________________
> FAQ: http://dojotoolkit.org/support/faq
> Book: http://dojotoolkit.org/docs/book
> Forums: http://dojotoolkit.org/forum
> [email protected: Dojo-int...@dojotoolkit.org]
> http://dojotoolkit.org/mailman/listinfo/dojo-interest
>
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
[email protected: Dojo-int...@dojotoolkit.org]
http://dojotoolkit.org/mailman/listinfo/dojo-interest
5) Siah Sookhteh [Dojo-interest] What's a mixin for Animation?
| +1 vote
Hi, I am trying to get 0.9's dojo.fx.slideTo to work and in the dojo's code there is this comment:...
Dojo Tookit
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Hi,

I am trying to get 0.9's dojo.fx.slideTo to work and in the dojo's
code there is this comment:

// addition mixin args needed:
// coords: { top: Decimal?, left: Decimal? }

But, I'm not sure where this has to go. I read
http://dojotoolkit.org/book/dojo-porting-guide-0-4-x-0-9/effects-dojo-lfx-changes
and its not too clear what a mixin is. So, I've unsuccessfully tried
all the following:

dojo.fx.slideTo({node:'DIV_ID', duration: 1000, 'coords':{ top: 1000,
left: 400}}).play();

and here it always animates my DIV to 0 and 0

I also tried placing 'coords' key within another 'properties'
dictionary, and interestingly enough, it stops animation all together.

Thanks,
Sia
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
[email protected: Dojo-int...@dojotoolkit.org]
http://dojotoolkit.org/mailman/listinfo/dojo-interest

spacer
Profile | Posts (51)
Home > People > Siah Sookhteh