Posts by Márcio • 76 points
5 posts
-
0
votes1
answer639
viewsA: Disable dates with event (fullcalendar)
use the validRange:{start: new Date().toISOString().substring(0,10)}, this option will show days from the current date. hope to have helped;
-
0
votes4
answers1566
viewsA: ASP.NET MVC input number
I believe you have not put a necessary attribute (I believe only in Chrome) of step behavior (step). Since it will have decimal numbers, Chrome understands that 1 is not equal to 0.1, obviously. so…
-
2
votes2
answers80
viewsA: Query Between Mysql does not return correct!
You can use INTERVAL to take the difference of a date by days, month, year; SELECT financ_conta_id, financ_conta_cadastro FROM financ_conta WHERE financ_conta_cadastro BETWEEN (NOW() - INTERVAL 3…
-
1
votes1
answer96
viewsQ: Devise with parent user and child user
I’ve got it in my Class User in the Vise class User belongs_to :parent, :class_name => 'User' has_many :children, :class_name => 'User' ... end What I’d like to know is what the migration of…
-
3
votes1
answer136
viewsQ: How do I switch from a native php version to a version installed by Brew on Maverick?
I’ve been updating by Brew with the php but when I use phpinfo() is still in the version of php system, how to toggle or change?…