Questions tagged [datefield]

307 questions
-1
votes
1 answer

SAS ENTERPRISE GUIDE - COMPUTED COLUMN

I have created a column with the following formula IFN(t1.COVEFFDATE<'01APR2014'D, '01APR2014'D, t1.COVEFFDATE) t1.COVEFFDATE is a date field in the table. I have put a DATE9. format to my computed column, however it's producing ********* in my…
-1
votes
1 answer

Hide InputEl extjs of datefield

i need to hide the inputEl of a ExtJS 4.2 datefield. I want to hide the input because i have to do a lot of modify of the page when the user select a date from the datepicker. Anyone know the fast method for do that?
AddaX
  • 43
  • 9
-1
votes
1 answer

Datefield won't render completely - extjs4.2.2

I have a afterrender event which should be called on my datefield in my formpanel. however, it looks like it won't render, and so the afterrender event doesn't work. any ideas why? here's my code: this.activityFormPanelEdit =…
Paparis
  • 906
  • 2
  • 9
  • 23
-1
votes
1 answer

Django - concat datetimeField/timeField and compare

I want to compare a DateField and a TimeField in a queryset with the current date. I searched for hours but did not find anything. Tried much with Q/F-Object but no solution, too. And now I am here and hope someone knows how to solve this :) - Btw.…
inferno
  • 223
  • 3
  • 6
-2
votes
2 answers

Get multiple max values sorting date time

Here is my sample data. DateAndTime column measured per 10 seconds. Date range is 6/30 ~ 8/31. [DateAndTime], [TagName] is varchar(50). DateAndTime TagName DataValue 2022-06-30 14:15:40 BW004_GD-4-16 99 2022-06-30 14:15:50 …
KIHA
  • 13
  • 4
-2
votes
1 answer

error : invalid literal for int() with base 10: b'20 Feb'

I am working with Wagtail and I am creating the model of the app. publish_date = models.DateField( max_length=300, blank=True, null=True, default="20 Feb", verbose_name="First publish date", …
the wind
  • 235
  • 2
  • 12
-2
votes
1 answer

I am using ag grid date filter . I want a apply and reset button on the filter . Its not working

I am using ag grid date filter. I want to apply and reset button on the filter. I use the following code to define a column. Its not working const columnDef = { headerName: 'HELLO', field: "hello", resizable: false, cell: [], …
1 2 3
20
21