tags:

views:

17

answers:

1

I want to set the value of datetimepicker tag through code please help me!

A: 

JSP:

<s:datetimepicker name="date" ... />

Action from which the JSP is generated (NOT THE FORM ACTION):

public Date getDate() {
        return ...
    }
Samuel_xL