Vladislav Vorobiev wrote:
> Hello,
> 
> How I can turn off the "?kukitTimeStamp=xxx" variable in the request
> to my Server.
> My Kss Statement looks like this
> 
> .showConnection:click {
> evt-click-preventdefault: true;
> action-server: urlMethodAnotherAlias url(kssAttr(uri, true));
> 
> my kssattr uri already includes one question mark, and another
> question mark in the URL is not a good idea.
> 
> Vlad
> _______________________________________________
> Kss-devel mailing list
> Kss-devel@codespeak.net
> http://codespeak.net/mailman/listinfo/kss-devel

You should ask the parameters to the URL through KSS like this :

.showConnection:click {
     evt-click-preventdefault: true;
     action-server: urlMethodAnotherAlias url(kssAttr(uri, true));
     urlMethodAnotherAlias-myparameter: kssAttr(myparameter, true);
}

and avoid to inline your parameter in your uri...

HTH

-- 
Godefroid Chapelle (aka __gotcha) http://bubblenet.be
_______________________________________________
Kss-devel mailing list
Kss-devel@codespeak.net
http://codespeak.net/mailman/listinfo/kss-devel

Reply via email to