IDEMPIERE-233 Minitable implementation on zk doesn't manage editable timestamp properly
This commit is contained in:
parent
e118afeadf
commit
98712527bd
|
@ -593,7 +593,8 @@ public class WListItemRenderer implements ListitemRenderer, EventListener, Listi
|
||||||
}
|
}
|
||||||
else if (source instanceof Datebox)
|
else if (source instanceof Datebox)
|
||||||
{
|
{
|
||||||
value = ((Datebox)source).getValue();
|
if (((Datebox)source).getValue() != null)
|
||||||
|
value = new Timestamp(((Datebox)source).getValue().getTime());
|
||||||
}
|
}
|
||||||
else if (source instanceof Textbox)
|
else if (source instanceof Textbox)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue