header

Kss url parameter

Click on buttons will call server-side. Each button exercise a different syntax to express which URL to call. Server will update the div hereunder with corresponding text.

Target

Relative URL

Click the button; it will call urlMethod1 on the server.
#button_1:click 
  action-server: urlMethod1;
}

Alias URL

Click the button; it will call urlMethod2 on the server.
#button_2:click {
    action-server: urlMethodAlias url(urlMethod2);
}

Alias URL with @@

Click the button; it will call @@urlMethod3 on the server.
#button_3:click {
    action-server: urlMethodAnotherAlias url("@@urlMethod3");
}

Alias URL from provider

Click the button; it will call urlMethod3 on the server.
#button_4:click {
    action-server: urlMethodAnotherAlias url(kssAttr(methodname, true));
}