Can any one help me in including datepicker inside sjg:gridColumn tag.I have included my code below.Whats the Edittype to be used so that a could able to get datepicker.
<sjg:gridColumn name="dateclosed" index="dateclosed"
title="Date Closed" sortable="false" editable="true"
edittype=" "/>
Rather than use
edittype
, you can use a nice jQuery datepicker for editing yoursjg:gridColumn
. This assumes you have jQuery in your project.First, add the following to your JSP page, above the grid:
Next, change your
sjg:gridColumn
:See also: http://jqueryui.com/datepicker/
Alternate implementation: https://code.google.com/p/struts2-jquery/wiki/SearchGrid#A_Grid_Column_with_Datepicker_in_the_search_dialog