Questions tagged as 'date'

1
answer

How to use date table bootstrap

I wanted to use this date table, to search a lot of database data. I even managed it, but it takes 12 seconds to load the page. Because there is a lot of data registered. Does anyone have an example of how I could do it? Follow the code: F...
asked by 23.10.2018 / 04:25
1
answer

Formatting Angular Data

Hello, I have the following string: Tue Oct 16 2018 00:00:00 GMT-0300 (-03) And I wanted to format it in dd/mm/yyyy and my goal and stay 16/10/2018 How would I have to do this formatting process?     
asked by 16.10.2018 / 22:01
1
answer

Input of type date in jQuery

I'm looking for a simple way to get the separated day, month, and year values from a input of type date , in jQuery. $( "#ano" ).html($( "input[type=date]" ).val( ) ); <script src="https://ajax.googleapis.com/ajax/libs/jq...
asked by 17.10.2018 / 06:07
0
answers

Convert Varchar column to Date without losing data

Before the database was saving the date in a varchar field and the Brazilian standard (% with%), then I modified the values using the code below: UPDATE tabela SET coluna= DATE_FORMAT(STR_TO_DATE(coluna, '%d/%m/%Y'), '%Y-%m-%d') WHERE coluna L...
asked by 23.09.2018 / 21:02
0
answers

Android calender

I wanted to know if to spend the day the month and the year with the calender would be that way whenever I try to activate the schedule does not come right ends up activating for the same day Calendar calNoww = Calendar.getInstance();...
asked by 13.07.2018 / 20:25
2
answers

Calculate difference between dates

I need to calculate the difference between the date of registration and the current date, if it is greater than 6 months, return Boolean. I am registering the bank on the date of registration as follows: public static final String DATE_FORMAT_...
asked by 15.11.2015 / 16:08
1
answer

Error DatePipe Angular 6

I just updated my application from Angle 5 to Angle 6. When I save a record in the Firebase database using mat-datepicker checking the database I noticed that it is saving the date correctly with timestamp . > Birth date: (July 12, 201...
asked by 18.05.2018 / 18:05
0
answers

error in runat="server" in asp.net textbox

I have a problem in a textbox that I have set as date <asp:TextBox ID="datanascimento" runat="server" Type="Date" Height="25px" Width="212px"></asp:TextBox> Running the site gives me error Mensagem de erro do analisador: A...
asked by 26.04.2018 / 13:10
1
answer

Convert java.util.date to java.sql.Date

With this line of code will I be able to pass java.util.Date to java.sql.Date ? java.sql.Date sqlDate = java.sql.Date.valueOf(String.valueOf(date)); Given that you date this format: Sat Jul 01 00:00:00 GMT+01:00 2017     
asked by 13.07.2017 / 17:35
1
answer

Format ISO date (yyyy-MM-ddThh: mm: ss.sssZ) to be displayed in INPUT (dd / mm / yyyy hh: mm)

The server hands me the date in ISO format (yyyy-MM-ddThh: mm: ss.sssZ). How do I make this date appear in the input format with dd / mm / yyyy hh: mm? <input type="date" class="form-control" ng-model="tarefa.createdAt" /> I'm using a...
asked by 22.03.2018 / 20:03