Results 1 to 8 of 8
- 08-13-2012, 09:09 AM #1
Member
- Join Date
- Jun 2012
- Posts
- 7
- Rep Power
- 0
How to close calendar pop up after picking up the Date
Hey Frnds,
Could you pls help me in a scenario like i have a calendar image on clicking on that image, a calendar pop up comes and i have to pick up a date from it and then need to close that calendar pop up... i am doing testing using RFT with eclipse framework.. and i am not good in coding part so guys pls help me by telling me "How to close calendar pop up after picking up the Date"
Thanks in advance :)
- 08-13-2012, 04:33 PM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,604
- Rep Power
- 5
Re: How to close calendar pop up after picking up the Date
Please provide the context. We have no clue what your code does, or how it does it. Your chances of receiving help go up quite a bit if you post an SSCCE
- 08-13-2012, 04:38 PM #3
Member
- Join Date
- Jul 2012
- Posts
- 9
- Rep Power
- 0
Re: How to close calendar pop up after picking up the Date
Looks like your are using IBM RFT to test something, probably this is not the appropriate forum where you should address this. There should be some specific interfaces exposed from RFT to perform such jobs , please refer to that or please post it into some RFT forum where you are likely to get the answer.
- 08-14-2012, 06:20 AM #4
Member
- Join Date
- Jun 2012
- Posts
- 7
- Rep Power
- 0
Re: How to close calendar pop up after picking up the Date
- 08-14-2012, 07:47 AM #5
Re: How to close calendar pop up after picking up the Date
Are you sure you aren't confusing Java and JavaScript? They are entirely different.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 08-14-2012, 08:22 AM #6
Member
- Join Date
- Jun 2012
- Posts
- 7
- Rep Power
- 0
Re: How to close calendar pop up after picking up the Date
DarrylBurke
I am using java not java script.
same thing i am facing with the PDF file popup.
i tried uing the given code for that.
import java.io.FileOutputStream;
import java.io.IOException;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfWriter;
public class ClosingAPDFDocument {
public static void main(String[] args) {
Document document = new Document();
try {
PdfWriter.getInstance(document, new FileOutputStream("ClosingAPDFDocument.pdf"));
document.open();
document.add(new Paragraph("some text"));
} catch (DocumentException de) {
System.err.println(de.getMessage());
} catch (IOException ioe) {
System.err.println(ioe.getMessage());
}
document.close();
}
}
- 08-14-2012, 09:13 AM #7
Banned
- Join Date
- Aug 2012
- Posts
- 4
- Rep Power
- 0
Re: How to close calendar pop up after picking up the Date
Hi all,
Even i am facing a problem regarding datepicker.
I need to choose a future date from datepicker excluding weekend.
pls need ur help urgently!!
- 08-14-2012, 01:46 PM #8
Member
- Join Date
- Jun 2012
- Posts
- 7
- Rep Power
- 0
Similar Threads
-
Manually setting a date using Calendar and Date
By ravl13 in forum New To JavaReplies: 3Last Post: 10-25-2011, 11:12 PM -
Calendar date problem
By groobelar in forum New To JavaReplies: 2Last Post: 01-17-2010, 03:47 AM -
Creating a Gregorian Calendar using a Date object gives date - 1
By prachi_goliwadekar in forum New To JavaReplies: 1Last Post: 05-08-2008, 08:32 PM -
java Date and Calendar
By valoyivd in forum New To JavaReplies: 1Last Post: 03-30-2008, 06:49 PM -
Calendar.DATE
By mew in forum New To JavaReplies: 1Last Post: 01-04-2008, 07:51 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks