Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
HTML
HTML
<sx:datetimepicker id="picker" cssStye="background:red" cssClass="someclass"/>

...

Public topic when value changes

...

Code Block
HTML
HTML

<script type="text/javascript">
  dojo.event.topic.subscribe("/value", function(textEntered, date, widget){
      alert('value changed');
      //textEntered: String enetered in the textbox
      //date: JavaScript Date object with the value selected
      //widet: widget that published the topic 
  });
</script> 

<sx:datetimepicker label="Order Date" valueNotifyTopics="/value"/>

h7. Use other locales. Locales must be specified in the s:x head tag.

Code Block
HTML
HTML

<sx:head extraLocales="en-us,nl-nl,de-de" />

<sx:datetimepicker label="In German" name="dddp7" value="%{'2006-06-28'}" language="de-de" />
<sx:datetimepicker label="In Dutch"  name="dddp8" value="%{'2006-06-28'}" language="nl-nl" />