vote up 1 vote down star

I'm also new in programming and I want to make a date Picker that displays in 2 labels 2 different dates from the same date Picker.

flag
Please provide more details. – Bloodhound Sep 19 '08 at 13:01
wonder who voted for this unclear question! – Prakash Oct 1 '08 at 13:06

4 Answers

vote up 0 vote down

What context is this in, OS GUI, Web based? If web, PHP, .Net, Java?

There are many control libraries, but each is specific to the platform, if you give us a bit more information we can point you in the right direction.

link|flag
vote up 0 vote down

Some specifics on what language, or tools you are using would be helpful.

link|flag
vote up 1 vote down

You need to tell wether this is a web app or a desktop app, and which language and platform you want to make this on.

link|flag
vote up 0 vote down

I need to do the same thing, I'm using JQuery's DatePicker and writing in javascript is fine with me. I have this so far:

$("#inline").datepicker({ 
changeMonth: false, 
    changeYear: false,
    rangeSelect: true, 
numberOfMonths: [2, 3], 
    stepMonths: 3, 
}).children("div").css("width", "555px");

and this in HTML:

<input name="arrive" type="text" id="startDate" readonly="readonly" onblur="check_date(this)" value="" size="12" maxlength="10" border="0" />
    	<style type="text/css">.embed + img { position: relative; left: -21px; top: -1px; }</style>
        <input name="depart" type="text" id="endDate" readonly="readonly" onblur="check_date(this)" value="" size="12" maxlength="10" border="0" />
    	<style type="text/css">.embed + img { position: relative; left: -21px; top: -1px; }</style>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.