You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<dd><em>Default: 0</em> - Initial microsecond set. Note: Javascript's native Date object does not natively support microseconds. Timepicker adds ability to simply Date.setMicroseconds(m) and Date.getMicroseconds(). Date comparisons will not acknowledge microseconds. Use this only for display purposes.</dd>
<dd><em>Default: 0</em> - The minimum millisecond allowed for all dates.</dd>
292
304
305
+
<dt>microsecMin</dt>
306
+
<dd><em>Default: 0</em> - The minimum microsecond allowed for all dates.</dd>
307
+
293
308
<dt>hourMax</dt>
294
309
<dd><em>Default: 23</em> - The maximum hour allowed for all dates.</dd>
295
310
@@ -302,6 +317,9 @@ <h3>Time Field Options</h3>
302
317
<dt>millisecMax</dt>
303
318
<dd><em>Default: 999</em> - The maximum millisecond allowed for all dates.</dd>
304
319
320
+
<dt>microsecMax</dt>
321
+
<dd><em>Default: 999</em> - The maximum microsecond allowed for all dates.</dd>
322
+
305
323
<dt>hourGrid</dt>
306
324
<dd><em>Default: 0</em> - When greater than 0 a label grid will be generated under the slider. This number represents the units (in hours) between labels.</dd>
307
325
@@ -313,6 +331,9 @@ <h3>Time Field Options</h3>
313
331
314
332
<dt>millisecGrid</dt>
315
333
<dd><em>Default: 0</em> - When greater than 0 a label grid will be genereated under the slider. This number represents the units (in milliseconds) between labels.</dd>
334
+
335
+
<dt>microsecGrid</dt>
336
+
<dd><em>Default: 0</em> - When greater than 0 a label grid will be genereated under the slider. This number represents the units (in microseconds) between labels.</dd>
316
337
</dl>
317
338
318
339
<h3>Other Options</h3>
@@ -363,6 +384,7 @@ <h3>Other Options</h3>
363
384
minute: 10,
364
385
second: 23,
365
386
millisec: 45,
387
+
microsec: 23,
366
388
timezone: '-0400'
367
389
}</pre>
368
390
</dd>
@@ -390,6 +412,7 @@ <h2>Formatting Your Time</h2>
390
412
<dt>s</dt><dd>Second with no leading 0</dd>
391
413
<dt>ss</dt><dd>Second with leading 0</dd>
392
414
<dt>l</dt><dd>Milliseconds always with leading 0</dd>
415
+
<dt>c</dt><dd>Microseconds always with leading 0</dd>
0 commit comments