Questions tagged [datechooser]
29 questions
0
votes
1 answer
Flex 3 DateChooser Control - Date Selection Changes on MouseUp Event
If you have a DateChooser control next to a text control and you left click your mouse to select the text then continue holding down the mouse button and letting the mouse button up while over the datechooser control, the selectedDate value changes…
0
votes
1 answer
How to skin an mx:DateChooser in Flex 4
I found these properties:
selectionIndicatorSkin="..."
todayIndicatorSkin="..."
Which skins the DateChooser Selected and todays item.
Oddly enough I didn't find a way where I can specifiy the skin for regular days! I found this…

Tam
- 11,872
- 19
- 69
- 119
0
votes
1 answer
What is the specific validation error when validationError=true in an openFaces component
I'm using openFaces' dateChooser and I set a pattern.
If I put in it a wrong value (like: 33/33/33) and try to submit the validationError is set to true because of the wrong format but I don't know how to get the specific error message or component…

Chasy Adler
- 11
- 3
0
votes
1 answer
I'm getting DateTimeParseException when trying to get date from jcalendar
I need to calculate age in years,months, days and seconds, I'm using jcalendar to get the users input but I keep getting DateTimeParseException error, can someone please tell me how I can solve this.
JDateChooser dateChooser = new…

Sami
- 3
- 1
- 3
0
votes
2 answers
JavaFX good DateChooser need
Need good DateChooser for JavaFX project(JDK 7).
I was faced with the task of which is the need to use DataChooser.
please recommend ready solutions, for implement and use it in JavaFX (JXML files)

Kaiser
- 748
- 7
- 21
0
votes
2 answers
Flex component to select month and year only
is there a custom component that extends DateChooser that only has the month and year but not the date grid to select a specific day. All i need is the month and year not any specific day. if the month is changed i could use the change event to…

shum
- 1
- 1
0
votes
2 answers
DateBox/datepicker in smartGwt
I want to add a datebox similar to the one in give link
http://www.jeasyui.com/demo/main/index.php?plugin=DateBox&theme=default&dir=ltr&pitem=
in my web aplication project(smartgwt).
In short I want the datebox(jquery) equivalent in smartGwt.
when i…

HkFreaKuser1673718
- 759
- 4
- 13
- 31
0
votes
1 answer
DateChooser format changes on different machine
I have used DateChooser jar in my project. On linux(Ubuntu) when I tested the date displayed is in the format dd/MM/yy and when I tested the same project on Windows machine the date displayed was in the format MM/dd/yy. Following is code snippet:
…

Sumeet
- 1
0
votes
1 answer
nextDay, nextWeek, nextMonth Javascript changing date shown in textfield
Im pretty sure there is an answer somewhere, found many of them, but somehow couldnt implement it in my code. I'm aware of mistakes in my code, however Im not sure how javascript works in that case, therefore there is my question. I'd like to know…
0
votes
1 answer
Set datechooser "event" based on "if"
I have a dateChooser in an app I'm working on; the app is to submit time cards.
I'm trying to figure out a way to set a color based on number of hours submitted -- i.e. red for less than 8, green for 8 exactly, yellow for more than 8. I already have…

paynekidd
- 25
- 1
- 3
0
votes
1 answer
How do I get advanced date control for SSRS Reports which allows me to select year?
Is there a better way to allow us to scan back a year at a time in addition to a month at a time rather than just only a month at a time?

Santosh Chandavaram
- 2,430
- 2
- 24
- 22
-1
votes
2 answers
Java Dateformat Error
I am using JDatechooser netbeans swing plugin for my desktop app development. By default its dateformat is mm/dd/yy but its not the format which the db required. I need to convert it to the yyyy-mm-dd format. I tried with SimpleDateformat class and…

Mujahid
- 1,227
- 5
- 32
- 62
-1
votes
2 answers
setting minimum selectable date as 15 years past birthday (from mySQL) and max as current date
I have a mySQL table of users containing the users' birthdays.
i have stored the date from sql as the variable DateOfBirth.
Now, I want to set the minimum selectable date of a jDateChooser named GameDateChooser as 15 years past the birthday
and the…

coder123
- 25
- 9
-3
votes
2 answers
java datechooser how to get date
DateFormat dateformatYYYYMMDD = new SimpleDateFormat("yyyyMMdd");
String nowYYYYMMDD = new String( dateformatYYYYMMDD.format( dateChooser.getDate()) );
textField_1.setText(nowYYYYMMDD);
i tried this way but i cant get date from…

Edgar Buchvalov
- 257
- 2
- 12
- 22