> > I wish I could specify the precision and scale here but that doesn't work > the last I checked
That's correct, it would be nice, but hobo doesn't support that. > First the first tag isn't get used by default for currency fields. It does appear that you've done things correctly, I'd have to take a look at a sample app to look into things further. > > If I work around it by manually calling the second tag as per below the > input tag looks fine but the kendoNumericTextBox function is never called to > convert the standard text box over. I don't see how that is done for the > calendar control. Here's how it is done for the datepicker: https://github.com/Hobo/hobo/blob/master/hobo_jquery_ui/vendor/assets/javascripts/hobo-jquery-ui/hjq-datepicker.js That's actually virtually all boilerplate, it could be just: jQuery.fn.hjq_datepicker = function(annotations) { if(!this.attr('disabled')) { this.datepicker(this.hjq('getOptions', annotations)); } }; I hope you're using this manual chapter to assist you in your work rather than trying to reverse engineer existing plugins: http://cookbook.hobocentral.net/manual/plugins#creating_a_hobo_plugin_from_a_jquery_plugin cheers, Bryan -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
