Peter Dematté

Results 56 comments of Peter Dematté

OK, then just do your stuff first and then make the color transparent: ``` javascript renderCallback: function($elm, toggled) { if (toggled === true) { // simple, lightweight check // ......

Hi @sticilface, I just introduced a new callback function that can help with your issue. It's called `positionCallback` and is called when the colorPicker is triggered or when you scroll...

There is also a new method inside color that can return a string used in css (like 'rgba(123,234,12,1)' called `.toString()`. So, instead of ``` javascript $elm.css('color', "rgb(" + colors.RND.rgb.r +...

Hi @sticilface again, I just found out that you don't even need the new callback: ``` javascript $('.color').colorPicker({ renderCallback: function($elm, toggled) { if (toggled === false) { $elm.css({'color': 'transparent'}); }...

Hi @umbundu , thanks for your findings. I just updated tinyDatePicker and added the possibility to set the event listener as an option. So, when setting up your datePicker you...

Hi @umbundu , Well, 0 through 23 is correct as 24 would then be 0. 24:15 would be an invalid time. The only thing missing here is 24:00, it is...

Hi @ob7 , sounds like a nice idea,... I never thought of including things as most people want a lean tool not stuffed with things they don't need... Maybe you...

Hi @Martin1887 , thanks for this finding. I will look into this as soon as possible. In the meantime,... have you tried [tinyColorPicker](https://github.com/PitPik/tinyColorPicker)? It is way smaller and faster and...

Hi @johnmastri , ```$myColorPicker = $('input.color')``` is a jQuery Object that is an Array that holds all the collected elements but also holds other information like ```prevObject```, ```context``` etc. I...

Hi @Isg90 , you probably don't need the implementation part (so, don't use jsColorPicker.min.js). You can use colorPicker.js by its own. Just instantiate (colorPicker = new ColorPicker();) and then use...