how to embed spinner control for jquery-ui ?
http://jqueryui.com/spinner/#time
how do I add a field type time from 'SQL SERVER'?
$col["formatter"] = "time"; ??
1 Answers
Hello,
this will format as date time — but show only date using timeonly setting
$col["formatter"] = "datetime";
$col["formatoptions"] = array("srcformat"=>'Y-m-d H:i:s',"newformat"=>'d-M-Y H:i',"opts" => array("timeOnly" => true));
$cols[] = $col;
I've also sent you sample code on email.
Your Answer