Posts by EuSousa • 57 points
5 posts
-
0
votes1
answer36
viewsQ: Formatted date range - return of between
I am doing a select of a range of dates, however, when I do the formatted is returning data that should not return, in case, more months and less months... Follows interval and query. SELECT id,…
-
3
votes1
answer165
viewsQ: In MVVM can a Viewmodel know more than one model?
In the MVVM architecture, a viewmodel can "meet" several viewmodels. What about the VM-M relationship? A viewmodel can "meet" several models different? Ex: CreditCardViewModel --> Model…
-
1
votes1
answer44
viewsQ: Date range by week number
With this simple function, I can get the week number. Now, with the week number, how can I get the date range, started on Sunday? import ( "fmt" "time" ) func main() { Week(time.Now().UTC()) } func…
-
0
votes2
answers705
viewsA: Calling form submission by function
Problem: Bypass the Codeigniter deficiency in the is_unique issue for update, since it does not check if the field to be updated is the same user, thus preventing the use of it in update form.…
-
1
votes2
answers705
viewsQ: Calling form submission by function
I am trying to send a form through a function. It follows the structure. form with id: nickname input with id: surname event keyup in input. onkeyup="$(this).check()" Javascript (function($) {…