Show the filename in a edit_text box in a stamp dialog

Hi,
Im tryint to create a stamp that pops-up dialog.
One of the dialog text box must be filled in by default with the filename of the document that has to be stamped.
This is a part of the code:
var dialog = {
issuepurposeValue: "",
reviewresultcodeValue: "",
nextissuestatusValue: "",
resubmissiondateValue: "",
respdept1Value: "",
sigrespdept1Value: "",
relateddept1Value: "",
sigrelateddept1Value: "",
relateddept2Value: "",
sigrelateddept2Value: "",
dateValue: "",
reqnumValue: "",
docnumberValue: "",
docrevValue: "",
initialize: function(dialog) {
dialog.load({
"radA": true,
"radF": true,
"radL": true,
"cbxA": true,
"radP": true,
"radR": false,
"txtM": documentFileName,
"txtK": util.printd("dd-mmm-yyyy", new Date()),
this.dateValue = false;
this.resubmissiondateValue = false
dialog.enable({
"txtD": this.resubmissiondateValue,
"txtK": this.dateValue
cbxA: function (dialog) {
this.dateValue = !this.dateValue;
dialog.enable({"txtK": this.dateValue});
radR: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": true,
radP: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": false,
radQ: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": false,
commit:function (dialog) { // called when OK pressed
var results = dialog.store();
if(results["radA"] == true) {this.issuepurposeValue = "FR"};
if(results["radB"] == true) {this.issuepurposeValue = "FN"};
if(results["radC"] == true) {this.issuepurposeValue = "FI"};
if(results["radD"] == true) {this.issuepurposeValue = "AB"};
if(results["radE"] == true) {this.issuepurposeValue = ""};
if(results["radF"] == true) {this.reviewresultcodeValue = "A"};
if(results["radG"] == true) {this.reviewresultcodeValue = "B"};
if(results["radH"] == true) {this.reviewresultcodeValue = "N"};
if(results["radI"] == true) {this.reviewresultcodeValue = "F"};
if(results["radJ"] == true) {this.reviewresultcodeValue = ""};
if(results["radK"] == true) {this.nextissuestatusValue = "FR"};
if(results["radL"] == true) {this.nextissuestatusValue = "FN"};
if(results["radM"] == true) {this.nextissuestatusValue = "FI"};
if(results["radN"] == true) {this.nextissuestatusValue = "AB"};
if(results["radO"] == true) {this.nextissuestatusValue = ""};
if(results["radP"] == true) { this.resubmissiondateValue = "Within 2 weeks"};
if(results["radQ"] == true) { this.resubmissiondateValue = "In MDR"};
if(results["radR"] == true) { this.resubmissiondateValue = results["txtD"]};
this.respdept1Value = results["txtE"];
this.sigrespdept1Value = results["txtF"];
this.relateddept1Value = results["txtG"];
this.sigrelateddept1Value = results["txtH"];
this.relateddept2Value = results["txtI"];
this.sigrelateddept2Value = results["txtJ"];
if(results["cbxA"] == false) {this.dateValue = results["txtK"]};
if(results["cbxA"] == true) {this.dateValue = util.printd("dd-mmm-yyyy", new Date())};
this.reqnumValue = results["txtL"];
this.docnumberValue = results["txtM"];
this.docrevValue = results["txtN"];
description:
The problem is in "txtM" if i put under initialize "txtM": documentFileName, it returns the stamp name and i need the filename.
hope anyone can help.
Robbert

I'm not that good in writing java scripts codes. all my codes come from stealing and modifying with trial and error.
for your understanding find below the complete stamp code. The stamp is being used as a company approval stamp. a part of this stamp provides the document number of the checked document. to make it easy for the user of the stamp i want to retrieve the document file name as this is most of the time equal to the document number it self.
"txtM" is the id-tag for a type edit_text box for filling the document number.
var dialog = {
issuepurposeValue: "",
reviewresultcodeValue: "",
nextissuestatusValue: "",
resubmissiondateValue: "",
respdept1Value: "",
sigrespdept1Value: "",
relateddept1Value: "",
sigrelateddept1Value: "",
relateddept2Value: "",
sigrelateddept2Value: "",
dateValue: "",
reqnumValue: "",
docnumberValue: "",
docrevValue: "",
initialize: function(dialog) {
dialog.load({
"radA": true,
"radF": true,
"radL": true,
"cbxA": true,
"radP": true,
"radR": false,
"txtM": documentFileName,
this.dateValue = false;
this.resubmissiondateValue = false
dialog.enable({
"txtD": this.resubmissiondateValue,
"txtK": this.dateValue
cbxA: function (dialog) {
this.dateValue = !this.dateValue;
dialog.enable({"txtK": this.dateValue});
radR: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": true,
radP: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": false,
radQ: function (dialog) {
this.resubmissiondateValue =! this.resubmissiondateValue;
dialog.enable({
"txtD": false,
commit:function (dialog) { // called when OK pressed
var results = dialog.store();
if(results["radA"] == true) {this.issuepurposeValue = "FR"};
if(results["radB"] == true) {this.issuepurposeValue = "FN"};
if(results["radC"] == true) {this.issuepurposeValue = "FI"};
if(results["radD"] == true) {this.issuepurposeValue = "AB"};
if(results["radE"] == true) {this.issuepurposeValue = ""};
if(results["radF"] == true) {this.reviewresultcodeValue = "A"};
if(results["radG"] == true) {this.reviewresultcodeValue = "B"};
if(results["radH"] == true) {this.reviewresultcodeValue = "N"};
if(results["radI"] == true) {this.reviewresultcodeValue = "F"};
if(results["radJ"] == true) {this.reviewresultcodeValue = ""};
if(results["radK"] == true) {this.nextissuestatusValue = "FR"};
if(results["radL"] == true) {this.nextissuestatusValue = "FN"};
if(results["radM"] == true) {this.nextissuestatusValue = "FI"};
if(results["radN"] == true) {this.nextissuestatusValue = "AB"};
if(results["radO"] == true) {this.nextissuestatusValue = ""};
if(results["radP"] == true) { this.resubmissiondateValue = "Within 2 weeks"};
if(results["radQ"] == true) { this.resubmissiondateValue = "In MDR"};
if(results["radR"] == true) { this.resubmissiondateValue = results["txtD"]};
this.respdept1Value = results["txtE"];
this.sigrespdept1Value = results["txtF"];
this.relateddept1Value = results["txtG"];
this.sigrelateddept1Value = results["txtH"];
this.relateddept2Value = results["txtI"];
this.sigrelateddept2Value = results["txtJ"];
if(results["cbxA"] == false) {this.dateValue = results["txtK"]};
if(results["cbxA"] == true) {this.dateValue = util.printd("dd-mmm-yyyy", new Date())};
this.reqnumValue = results["txtL"];
this.docnumberValue = results["txtM"];
this.docrevValue = results["txtN"];
description:
name: "Issue Purpose Column",// Dialog box title
elements:
type: "cluster",
name: "Purpose, Result and Next Issue",
align_children: "align_left",
elements:
type: "view",
align_children: "align_row",
elements:
name: "Issue Purpose",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
type: "radio",
item_id: "radA",
group_id: "purp",
name: "For Review (FR)",
char_width: 14,
type: "radio",
item_id: "radB",
group_id: "purp",
name: "For Final (FN)",
char_width: 14,
type: "radio",
item_id: "radC",
group_id: "purp",
name: "For Information (FI)" ,
char_width: 14,
type: "radio",
item_id: "radD",
group_id: "purp",
name: "As Build (AB)" ,
char_width: 14,
type: "radio",
item_id: "radE",
group_id: "purp",
name: "Not Applicable" ,
type: "view",
align_children: "align_row",
elements:
name: "Review Result Code",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
type: "radio",
item_id: "radF",
group_id: "resu",
name: "A Approved (A)",
char_width: 14,
type: "radio",
item_id: "radG",
group_id: "resu",
name: "B Approved (B)",
char_width: 14,
type: "radio",
item_id: "radH",
group_id: "resu",
name: "Not Accepted (N)" ,
char_width: 14,
type: "radio",
item_id: "radI",
group_id: "resu",
name: "For Information (F)" ,
char_width: 14,
type: "radio",
item_id: "radJ",
group_id: "resu",
name: "Not Applicable" ,
type: "view",
align_children: "align_row",
elements:
                       name: "Next Issue Status ",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
type: "radio",
item_id: "radK",
group_id: "next",
name: "For Review (FR)",
char_width: 14,
type: "radio",
item_id: "radL",
group_id: "next",
name: "For Final (FN)",
char_width: 14,
type: "radio",
item_id: "radM",
group_id: "next",
name: "For Information (FI)" ,
char_width: 14,
type: "radio",
item_id: "radN",
group_id: "next",
name: "As Build (AB)" ,
char_width: 14,
type: "radio",
item_id: "radO",
group_id: "next",
name: "Not Applicable" ,
type: "view",
align_children: "align_row",
elements:
                       name: "Resubmission Date",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
type: "radio",
item_id: "radP",
group_id: "resub",
name: "Within 2 weeks" ,
char_width: 14,
type: "radio",
item_id: "radQ",
group_id: " resub ",
name: "In MDR" ,
char_width: 14,
type: "radio",
item_id: "radR",
group_id: " resub ",
name: "Other" ,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtD",
type: "edit_text",
multiline: false,
width: 308,
height: 20                                             
type: "cluster",
name: "Responsible Dept. and person",
align_children: "align_left",
elements:
type: "view",
align_children: "align_row",
elements:
name: "Responsible Department",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtE",
type: "edit_text",
multiline: false,
width: 100,
height: 20
name: "Responsible Person (Abbreviation)",
type: "static_text",
char_width: 19,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtF",
type: "edit_text",
multiline: false,
width: 371,
height: 20                                             
type: "view",
align_children: "align_row",
elements:
name: "Related Department #1",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtG",
type: "edit_text",
multiline: false,
width: 100,
height: 20
name: "Related Person #1 (Abbreviation)",
type: "static_text",
char_width: 19,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtH",
type: "edit_text",
multiline: false,
width: 371,
height: 20                                             
type: "view",
align_children: "align_row",
elements:
name: "Related Department #2",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtI",
type: "edit_text",
multiline: false,
width: 100,
height: 20
name: "Related Person #2 (Abbreviation)",
type: "static_text",
char_width: 19,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtJ",
type: "edit_text",
multiline: false,
width: 371,
height: 20                                             
type: "cluster",
name: "Document information",
align_children: "align_left",
elements:
type: "view",
align_children: "align_row",
elements:
name: "Date",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
type: "check_box",
item_id: "cbxA",
name: "Today or",
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtK",
type: "edit_text",
multiline: false,
width: 189,
height: 20
type: "view",
align_children: "align_row",
elements:
name: "Requisition Number",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtL",
type: "edit_text",
multiline: false,
width: 300,
height: 20                                             
type: "view",
align_children: "align_row",
elements:
name: "Document Number",
type: "static_text",
char_width: 14,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtM",
type: "edit_text",
variable_Name: "edit",
multiline: false,
width: 300,
height: 20
name: "Revision",
type: "static_text",
char_width: 3,
name: ":",
type: "static_text",
char_width: 1,
item_id: "txtN",
type: "edit_text",
multiline: false,
width: 50,
height: 20                                             
type: "ok_cancel",
ok_name: "Ok",
cancel_name: "Cancel"
//app.execDialog(dialog);
if(event.source.forReal && (event.source.stampName == "#DXpvGqB1uiHTWNVyDOHTnC"))
  if ("ok" == app.execDialog(dialog))
var cMsg = dialog.issuepurposeValue;
event.value = "\n" + cMsg;
event.source.source.info.reviewresultcode = cMsg;
cMsg = "\n" + dialog.reviewresultcodeValue;
this.getField("reviewresultcode").value = cMsg;
event.source.source.info.nextissuestatus = cMsg;
cMsg = "\n" + dialog.nextissuestatusValue;
this.getField("nextissuestatus").value = cMsg;
event.source.source.info.resubmissiondate = cMsg;
cMsg = "\n" + dialog.resubmissiondateValue;
this.getField("resubmissiondate").value = cMsg;
event.source.source.info.respdept1 = cMsg;
cMsg = "\n" + dialog.respdept1Value;
this.getField("respdept1").value = cMsg;
event.source.source.info.sigrespdept1 = cMsg;
cMsg = "\n" + dialog.sigrespdept1Value;
this.getField("sigrespdept1").value = cMsg;
event.source.source.info.relateddept1 = cMsg;
cMsg = "\n" + dialog.relateddept1Value;
this.getField("relateddept1").value = cMsg;
event.source.source.info.sigrelateddept1 = cMsg;
cMsg = "\n" + dialog.sigrelateddept1Value;
this.getField("sigrelateddept1").value = cMsg;
event.source.source.info.relateddept2 = cMsg;
cMsg = "\n" + dialog.relateddept2Value;
this.getField("relateddept2").value = cMsg;
event.source.source.info.sigrelateddept2 = cMsg;
cMsg = "\n" + dialog.sigrelateddept2Value;
this.getField("sigrelateddept2").value = cMsg;
event.source.source.info.date = cMsg;
cMsg = "\n" + dialog.dateValue;
this.getField("date").value = cMsg;
event.source.source.info.reqnum = cMsg;
cMsg = "\n" + dialog.reqnumValue;
this.getField("reqnum").value = cMsg;
event.source.source.info.docnumber = cMsg;
cMsg = "\n" + dialog.docnumberValue;
this.getField("docnumber").value = cMsg;
event.source.source.info.docrev = cMsg;
cMsg = "\n" + dialog.docrevValue;
this.getField("docrev").value = cMsg;

Similar Messages

  • How do i show the filename.type instead of the entire file path?

    How do i show the filename.type instead of the entire file path?
    I want it to show "ProgramSetup.exe" instead of "C:/Program Files/Oracle/JavaFX/ProgramSetup.exe"
    I have created a JavaFX program with the help of my manager
    below are the code
                   File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getAbsolutePath());
                        String absolutePath = file.getAbsolutePath();
                        //String fileName = new File(absolutePath).getName();the reason i put the last line as // because it has error on that line....
    if i remove the last line, it will display but with the full path....
    i search through google and the guide on many forums aren't clear to me.....some said there are 2 ways but i tried and it is not working, atleast for me...maybe i left out something or what....can anyone help me on this?

    You don’t need the absolutePath:
    File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getName());
                               }

  • Project View does not show the Path and Filename when errors occur

    I have the problem, that errors occur in the project but in the colum that shows the "Resource" I can only see the "Project Name". Normally it should show the filename. The "Path Column" is completely empty. The "Location column" shows the correct line number in the file (but unfortunately I have no Idea which file). Double clicking on the row does not do anything.
    I'm sure it had worked, but no idea since when this problem occurs. I am using Flash Builder 4.7.

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • How to show the selected item in a drop-down box......

    hi,
    i m using the following code for selecting from the drop-down box...
    <html:select property="lddate" style="width:160">
    <html:options collection="load_dt" name="AlmCurrencyRiskAnalysisBO" property="load_dt" labelProperty="load_dt"/>
    </html:select>
    but what happng when i m select any date from the dropdown box it does not show that date. it only shows the last entry date in the load_dt arraylist.
    i m trying to implement this on a jsp page..can anyone plz tell me what shuld i do to show selected date...plzz help..its vry urgent.........

    Vini,
    He seems to be using Struts not ADF Faces.
    Seems, you have given list to to property and labelProperty, Can you re-check these properties?
    Sireesha

  • After having to reinstall Firefox (2X)- some of my bookmarks show a generic kind of box, I can't get them to show the proper icon

    Firefox and Thunderbird have somehow become corrupted in the last two days and I have had to download and reinstall both. By this I mean when I tried to start, a box popped up saying it crashed and it would not correct. I had to redownload and reinstall
    Firefox shows my bookmarks toolbar, and most of the icons are correct. There are a few icons that 'disappeared' and in their place is a generic kind of box. Won't show the icon or the name.

    That is the new default icon replacement used in Firefox 8+.
    * [[/questions/893818]]
    * [[/questions/890741]]

  • Is there a way to get event times to show up in monthly view on iCal 7?  There no longer is a box in the preferences to show the times.

    Prior to upgrading to Os X Maverick, I could see the times of all scheduled events on the month view (there was a check box in the iCal options to show the event times).  After upgrading, the times no longer show up and I don't see an option to change it.  Was this an oversight?  It certainly is not an upgrade over the previous version.  It was very helpful to be able to glance at the calender to see the scheduled times rather than having to click on each individual event.

    Sorry.  Only after posting did I see that this question has been asked already and the answer given.  Please ignore this post.

  • I don't like when I scroll over a link on a webpage and the hyperlink shows up on the bottom right in white box... it is extremely annoying. I want to know how to turn it off if possible, otherwise I'm going to have to use another browser. Thank you.

    I don't recall this feature on any other version of firefox. For some reason, I can't stop focusing on the fact that every time I scroll over something on a webpage, an annoying white box pops up in the corner of the website displaying the hyperlink, or showing the fact that the link or whatever is loading... it's unnecessary and to me it appears as clutter, especially when I'm browsing a website that has a colored backdrop because then the annoying box pops out even more. I want to turn it off somehow or get rid of firefox.

    To toggle the add-on bar on/off use Ctrl+/ or hide the add-ons bar through the View > Toolbars menus
    Th add-ons bar replaces the status bar, so if you miss the status-bar working as before see item #10 in
    You can make Firefox 4.0.1 and '''Firefox 5.0''' look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]

  • How do I get pop-up windows to show the navigation buttons (not just the address box)?

    When I click on a link that opens a new firefox window, the new window shows a navigation toolbar that does not include the back, forward, stop, and home buttons (it only shows the internet address box). However, the original firefox window that I navigated away from shows all of the navigation buttons AND the address bar. How do I get these new firefox windows to show the navigation buttons in addition to the address box that automatically appears?

    See:
    http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features
    http://kb.mozillazine.org/JavaScript#Advanced_JavaScript_settings

  • I am running 4.0.1 and when I download something the Download box stays blank-even though I have selected in General Preferences 'Show the downloads window when downloading a file' AND selected 'Save files to Downloads'....???

    I am running 4.0.1 and when I download something the Download box stays blank-even though I have selected in General Preferences 'Show the downloads window when downloading a file' AND selected 'Save files to Downloads'....???

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • In the iDVD window, there is a box in the lower left corner.  When I scroll over it, I get the message to hide or show the intro movie.  Checking or unchecking the box seems to do nothing.  Can anyone explain?

    Working with iDVD on a project, there is a box in the lower left corner and sometimes another in the lower right corner.  Scrolling over the one in the lower left corner, I get a message indicating that this box hides or shows the intro movie.  I have checked and unchecked the box, but see nothing different in the project.  Nor can I figure out what is meant by "intro movie."  Can anyone explain?

    Go to iDVD Help and type in Intro Movie, and you will get the full version of this:
    Many iDVD themes have “motion menus” that include animations or video that loop, or play repeatedly, until the viewer clicks a menu button. Themes with motion menus have a motion icon in the lower-right corner.
    In addition to background video, iDVD motion menus may also feature an intro, or short animation, that plays once before the part that loops. Other motion menus also include an “outro” that plays after the viewer clicks a button, serving as a transition between the menu and the selected content.
    An example of an iDVD 6.0 theme with an intro and an outro is Reflection White Main. In this theme, the first drop zones appear in the intro, and the buttons and title appear just before the looping part of the background video. In the outro, everything flies offscreen after the viewer clicks a button.
    iDVD provides tools for viewing these motion menus without going into preview mode, which is especially helpful when you are filling drop zones, and for turning the intro or outro off.
    Here are ways to view and edit the background movie:
    ◼ 
    Drag the diamond-shaped motion playhead along the scrubber bar (shown below), to view the background movie, stopping wherever you like.
    (If you don’t see the motion playhead in iDVD, choose View > Show Motion Playhead.)
    ◼ 
    Deselect the checkboxes at the left and right end of the scrubber bar if you don’t want to use the intro or outro, respectively, in your DVD menu.
    The scrubber bar shows the intro and outro as shaded areas at the beginning and end.
    You can also control the intro and outro from the Menu Info window. With your pointer over the menu (and with no buttons or text objects selected), press Command-I to open that window. Select or deselect the Intro and Outro checkboxes in the Background section of the window.
    NOTE: If you drag your own movie to a motion menu background, the outro is automatically removed. To customize the background and keep the outro, use a still image in the menu background instead of a movie.

  • My apple TV box is not working. The light blinks but the TV only shows the apple picture and nothing happens. Any ideas what is wrong?

    My apple TV is not working. The light blinks but the TV only shows the apple picture and nothing happens. Any idea why?

    James,
    Thank you for the information. I did what you said but it is still not working. My apple box works with my wifi so I think the wife was disconnected and I can't figure out where to go to set up the wifi pass word for the apple box. Any hits would be appreciated if not my next step is to ship back the box to apple.
    Thanks,
    Marta

  • The box in my Photoshop Elements, which shows the size and types of brushes has shrunk to one unreadable line. How do I expand the box to its original size?  I have tried dragging it open but nothing moves.

    The box in my Photoshop Elements, which shows the size and type of brushes, has shrunk to one unreadable line. How can I expand this box to its original size? I have tried dragging it open but nothing happens and none of the tool boxes appear to give me an expansion option

    Well, when you open the program, the splash screen, the window you see while the program is opening, should make that clear enough. For example:

  • Cant get downloads to show the save & run boxes.. Adobe flash player

    Cant get downloads to show the save & run boxes in Adobe Flash Player

    You need to proved more information or a screenshot; I cannot understand what you mean.

  • How i can unlock my ipad which is locked or hanged by showing the dailoge box "iPad Not Backed Up", how i can unlock my ipad which is locked or hanged by showing the dailoge box "iPad Not Backed Up"

    how i can unlock my ipad which is locked or hanged by showing the dailoge box "iPad Not Backed Up. This iPad has'nt been backed up. Backups happen when this iPad is plugged in, locked, and connected to Wi-Fi." what it means how i can solve this problem? please help...

    A reset should help: Tap and hold the Home button and the On/Off button at the same time for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons and await restart.

  • My contact list on my iPod has gone. In iTunes the info section for contacts doesn't show anything  like 'family' - just tick box for all contacts. Any ideas on how to correct this? iPod is 3 yrs old...

    My ipod no longer shows any contacts from my address book. iTunes when syncing in the info section - contacts - only shows the all contacts tick box, not categories such as 'family', 'friends' etc.
    Any thoughts on why this is please?
    Am suspecting icloud as a possible culprit.....
    Thanks

    Well start with these articles and see if that gets you anywhere...
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    http://docs.info.apple.com/article.html?artnum=305136
    iTunes for Windows: iTunes 7 doesn't recognize iPod
    http://docs.info.apple.com/article.html?artnum=304434
    iPod missing in "My Computer" or in iTunes for Windows
    http://docs.info.apple.com/article.html?artnum=61711
    Also you might try forcing the iPod into disk mode first, then connecting it to your computer and see if that makes it show up in iTunes...
    Putting iPod into Disk Mode
    http://docs.info.apple.com/article.html?artnum=93651
    Cheers,
    Patrick

Maybe you are looking for

  • Error Check does not work

    Hi, I'm having a problem with the following code, when I add alphabetic characters or even nothing at all in the principal amt text field, I expect to get an error message, but I do not. This happens no matter which method I choose to compute the mor

  • Items on desktop disappear

    Ever since I upgraded to Lion, when I restart my computer each day the items that were on my desktop are automatically relocated to a folder in my documents folder that is labeled "2011 November" and I have one labeled "2011 October". These are locat

  • Activate field sales prospect in opportunity transaction CRMD_BUS2000111

    Hi Experts, I want to activate the field sales prospect in opportutity transaction CRMD_BUS2000111.I'm using CRM5.0. For activatating the field I am using transaction CRMC_BLUEPRINT_C -> define layout for people centric UI(customizing tool) then choo

  • Need ABAP code to make unique hierarchy values - Request prompt help

    hi <removed> I am new to SAP. Please help me in the following I require an ABAP code for the following scenario I have a simple hieraarchy. The hierarchy is SEG -> fam -> clas -> comm The values of the seg , fam, cla, com......all will be charecter v

  • [svn:fx-3.x] 16736: 3.6 DataGrid Bugs SDK-25886:  Fix ASDoc

    Revision: 16736 Revision: 16736 Author:   [email protected] Date:     2010-06-29 22:51:05 -0700 (Tue, 29 Jun 2010) Log Message: 3.6 DataGrid Bugs SDK-25886:  Fix ASDoc SDK-25481: reset hasComplexFieldName if necessary SDK-26477: fix logic for lockedR