Hello,
Some plugins require that the element should be into the DOM in order to work correct.
Since dataInit is applied not when the element is into the DOM, this maybe will not work.
The same will be if you try to use a jQuery UI datepicker with the option to show a calendar image.
(I will see in other releases how to correct this “bug”).
In order to resolve your problem I recommend you to use the onInitilazeForm event:
The code cal look like this:
onInitializeForm : function(formid)
{
$(“#time_start”,formid).timepickr();
}
Reagrds
Tony