Creating MsgTextInput in Dialog Page

Hi,
i hve a requirement to create a msgtxtinput in Dialog Page.
im not sure that can we do that ........
if anybody has any idea please share.
thanxs
Pranav

Hi,
create a new region of stack layout...under that create the textinput you want...
and set the controller class to a custom controller.
import the region.
Now in Dialog Page make use of
OADialogPage.setHeaderNestedRegionRefName() method to access that region.
Thanks,
Gaurav

Similar Messages

  • How to disable button in dialog page?

    Hi friends,
    Apps R12.
    In PFR, create a warning dialog page with yes/no buttons in this way:
    OADialogPage dialogPage = new OADialogPage(OAException.WARNING,mainMessage, null, "", "");
    String yes = pageContext.getMessage("AK", "FWK_TBX_T_YES", null);
    String no = pageContext.getMessage("AK", "FWK_TBX_T_NO", null);
    dialogPage.setOkButtonItemName("CreateYesButton");
    dialogPage.setOkButtonToPost(true);
    dialogPage.setNoButtonToPost(true);
    dialogPage.setPostToCallingPage(true);
    dialogPage.setOkButtonLabel(yes);
    dialogPage.setNoButtonLabel(no);
    pageContext.redirectToDialogPage(dialogPage);
    In PR , I do:
    if (pageContext.getParameter("CreateYesButton") != null){
    //process....
    I need to disable Yes button in PR just after having clicked on it.
    It's to avoid user can make more than one click on it.. to avoid the process that follows it executes for more than 1st time.
    Any help would be appreciated.
    Thanks!

    I think this is handled internally in framewok.
    Just debug and check if the processFormRequest() is getting called twice or not.
    --Prasanna                                                                                                                                                                                                                                                                                                   

  • To create a dialog page

    HI,
    I have a requirement that when user clicks on Search button on Search page without entering any search criteria, a new dialog page(like an alert box) should appear displaying the msg "This Search will take long time.Do you wish to continue". If user selects on Yes button on this dialog page the details screen should open with search results. If user clicks on No button on this dialog page, the search page should be displayed.
    Can anyone please provide me the steps to create a dialog page and setting the page forward URLs for Yes & No buttons of Dialog Page.
    Thanks.

    Hi
    You can use the below code for that:-
    (i) Write the below code in the search button event in PFR.
              OAException mainMessage=new OAException("This Search will take long time.Do you wish to continue");
              // Note that even though we're going to make our Yes/No buttons submit a
              // form, we still need some non-null value in the constructor's Yes/No
              // URL parameters for the buttons to render, so we just pass empty
              // Strings for this.
              OADialogPage dialogPage = new OADialogPage(OAException.WARNING,
              mainMessage, null, "", "");
              // Always use Message Dictionary for any Strings you want to display.
              dialogPage.setOkButtonItemName("SearchYesButton");
               dialogPage.setOkButtonToPost(true);
              dialogPage.setNoButtonToPost(true);
              dialogPage.setPostToCallingPage(true);
              // Now set our Yes/No labels instead of the default OK/Cancel.
              dialogPage.setOkButtonLabel("Yes");
              dialogPage.setNoButtonLabel("No");
              pageContext.redirectToDialogPage(dialogPage);(ii) Now handle the Yes Button in PFR like this
          if (pageContext.getParameter("SearchYesButton") != null)
             // Handle Search here
          }AJ

  • How to open a new window from submit button &dialog page in current window?

    We have a requirement, wherein we have a OAF search page for PO lines with search criteria, Go button to search ,result region (table layout) and a submit button(Create new expedite).
    1. Now user can select some lines from result region and click on Submit button.
    2. On click of submit button we need to pop up a window or may be a dialog page asking that " Do you want open supplier web link portal or not?".
    3. If user clicks yes(in Dialog page) then first fetch the URL from a look up maintained in Oracle EBS on the basis of supplier of the lines selected and then open that URL in a new window and side by side we need to open a dialog page in search page asking "whether user has updated the expedite info in supplier portal or not?". On basis of this we need to updated some count in custom tables.
    So in step 3 i am facing problem, that how to open an URL in a new window through a submit button and side by side want to open a dialog page in the current window also.
    Hope a quick response from you all.
    Note:- To open a custom page we can have a link or button(button of type button and not submit button) on base page with destination url property as following javascript:
    javascript:var a = window.open('OA.jsp?page=/XXX/oracle/apps/xxx/......&retainAM=Y', 'a','height=500,width=900,status=yes,toolbar=no,menubar=no,location=no'); a.focus();
    So the question is how to do the same for submit button on OAF page???

    Antriksh,
    You just need to attach a submit action in button bean and not submit button bean, based on the output of confirm type of alert in javascript.
    Here is code u need to put in destination url of the button:
    //replace <confirm message> by message you want to show.
    javascript:input=confirm('<confirm message>');if(input==true){submitForm('DefaultFormName',0,{XXX:' abc'});}" Now in the process request of the base page CO, u can get parametre 'XXX' from the pagecontext....so
    if((("abc").equals(pageContext.getParameter("XXX"))))
    {/// custom LOGIC }
    The same i have replied in your mail. I hope this resolves the issue.
    --Mukul

  • Creating a template in Pages is straight-forward as answered here previously. Is there and equivalent for iBooks Author which can start with a blank page and build up the template as required? or can one only adapt a ready made template?

    Creating a template in Pages is straight-forward as answered here previously. Is there an equivalent for iBooks Author which can start with a blank page and build up the template as required? or can one only adapt a ready made template? This has proved unsatisfactory to me so far. Lines are left in etc.

    There are two basic menus for fonts - one from the main menu bar and one from the toolbar. You can also bring up the font manage dialog.
    I don't recommend trying to hard to force an otherwise foreign font, as it inevitably needs to be usable/supported on iOS as well, and that can get tricky w/3rd party fonts, as an example, even with the expanded font support in the latest iBA.
    If you need to discuss fonts more, I suggest starting a new thread....preferably with a slightly more brief title, thanks.

  • After deletion of record the dialog page is coming back to source page

    Dear all
    Good Morning
    i have creation page user will enter it will call to view mode,in that user will click on edit button again it will call to creation page with editable mode.
    in that creation page editable mode user click on delete button it willl call to dialog page buttons "Yes" AND "NO"
    user will click on yes the record is deleted but again after deletion of record again it is calling to creation page and creating blank record
    but my requirement is after click on yes button it will delete the record and navigate to search page
    how is it?
    in my case again it is coming to creation page.
    /*in edit page user click on delete button it will call to dialog page*/
    if ("Delete".equals(pageContext.getParameter(EVENT_PARAM)))
    String oid = pageContext.getParameter("oid");
    OAException msg = new OAException("PO", "XX_DELETE_SUPPSITE_CONFIRM");
    OADialogPage dpage =
    new OADialogPage(OAException.WARNING, msg, null, "", "");
    dpage.setOkButtonToPost(true);
    dpage.setOkButtonLabel("Yes");
    dpage.setOkButtonItemName("DeleteYes");
    dpage.setPostToCallingPage(true);
    dpage.setNoButtonToPost(true);
    dpage.setNoButtonItemName("DeleteNo");
    Hashtable ht = new Hashtable(1);
    ht.put("d1", oid);
    dpage.setFormParameters(ht);
    pageContext.redirectToDialogPage(dpage);
    /*If user click on No button it will call to editable mode*/(previuos page)
    if(pageContext.getParameter("DeleteNo")!=null)
    System.out.println("User will click on this button....");
    String oppoid = (String)pageContext.getSessionValue("xxoppoid");
    HashMap hp=new HashMap();
    hp.put("Purpose","Edit");
    hp.put("oppoid",oppoid);
    pageContext.setForceForwardURL("OA.jsp?page=/crm/oracle/apps/xxcrm/crmmgmt/quotationmgmt/webui/xxcrmquotationcreationPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null, hp, false, null,
    OAWebBeanConstants.IGNORE_MESSAGES);
    /*if user will click on delete yes button*/ after delete i want to call search page but it is going to search page internally it is coming to creation page and blank record is created.*/
    if (pageContext.getParameter("DeleteYes") != null)
    String s1 = pageContext.getParameter("d1");
    am.xxDeleteQuotation(s1);
    pageContext.setForceForwardURL("OA.jsp?page=/crm/oracle/apps/xxcrm/crmmgmt/quotationmgmt/webui/xxcrmquotationsearchPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null, null, true, null,
    OAWebBeanConstants.IGNORE_MESSAGES);
    I hope u understand my question
    Regards
    Sreekanth

    Hi Gaurav,
    Already i am using what u saying that way.
    That way also,am getting the error
    My Co Code is,
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    xxcrmItemMgmtAMImpl am = (xxcrmItemMgmtAMImpl)pageContext.getApplicationModule(webBean);
    String valid = pageContext.getParameter("Dialog");
    System.out.println("the value of valid is"+valid);
    if(valid!=null)
    pageContext.setForwardURL("OA.jsp?page=/crm/oracle/apps/xxcrm/crmmgmt/quotationmgmt/webui/xxcrmItemsAddPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,null,false,OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    String itemid=pageContext.getParameter("itemid");
    pageContext.putSessionValue("itemid",itemid);
    System.out.println("the item id in additem viewco is"+itemid);
    am.xxeditAddItem(itemid);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    xxcrmItemMgmtAMImpl am = (xxcrmItemMgmtAMImpl)pageContext.getApplicationModule(webBean);
    if("Delete".equals(pageContext.getParameter(EVENT_PARAM))) {
    String itemid=pageContext.getSessionValue("itemid").toString();
    OAException msg=new OAException("PO","XX_DELETE_SUPPSITE_CONFIRM");
    OADialogPage dpage=new OADialogPage(OAException.WARNING,
    msg,null,"","");
    System.out.println("this is delete block1");
    dpage.setOkButtonToPost(true);
    dpage.setOkButtonLabel("Yes");
    dpage.setOkButtonItemName("DeleteYes");
    dpage.setPostToCallingPage(true);
    dpage.setNoButtonToPost(true);
    Hashtable ht=new Hashtable();
    ht.put("d1",itemid);
    dpage.setFormParameters(ht);
    pageContext.redirectToDialogPage(dpage);
    System.out.println("this is delete block2");
    if(pageContext.getParameter("DeleteYes")!=null) {
    String itemid=pageContext.getParameter("d1");
    Serializable[] d1={itemid};
    am.invokeMethod("xxDeleteItem",d1);
    HashMap hm=new HashMap();
    hm.put("Dialog","Yes");
    String test=hm.get("Dialog").toString();
    System.out.println("the dialog page value is"+test);
    pageContext.forwardImmediatelyToCurrentPage(hm,false,null);
    }

  • How to create a modeless dialog using commandlink

    i want to create a modelessdialog using commandlink. and my code is
    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <f:view>
    <script language="Javascript1.2">
    function modelesswin(){
    window.showModelessDialog();
    </script>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <h:form>
    <h:commandLink onclick="javascript:modelesswin('popup.html', 300, 300)" value="click"></h:commandLink>
    </h:form>
    </body>
    </f:view>
    </html>
    when i click the buttonlink the dialog box is not in a stable state that is its will appear and within a second it will disappear .. can any one of them can suggest me how to create a modeless dialoge using commandlink or by jsf option button
    regards
    subramanian

    If I had to guess (and I do :), the onclick is firing, bring up the dialog, but the commandLink causes a form submit, so the page is submitted. There is no action on the commandLink, so it's navigating back to the same page, causing it to refresh and your dialog to disappear. It would appear to me that you need a h:outputLink or simply <a href="# onclick="..." /"></a>

  • Dialog page in a new page

    Hi all,
    I created a new page and create an update functionality in which the fields can be updated on click of a button. Everything is working fine but when i use a OADialogpage for confirmation of the click of the update button, i am not getting any error but the data is not getting saved.
    Can anyone has any idea why this is happening??
    Thank you
    PK

    Kumar,
    What do u mean by using "commit" in dialog page?? the user is talking about OADialog page, and prior using OADialog page, the data was getting saved, so naturally transaction.commit(), is there in his code.
    PK,
    The only possible reason I can see the data is not saving can be because of two facts :
    1)In process request this code is missing
    if (!vo.isPreparedForExecution())
    //your method is invoke the vO query
    vo.executeQuery();
    The reason for inserting the above check upon executeQuery() is because if a post (form submit) action occurs on a page that is different from the page where the last request was issued, OA Framework tries to re-enter the processRequest() phase to synchronize the state on the middle tier with the state on the client browser. The logic above handles cases where the request is redirected to another JVM as well. In such cases, processRequest() is entered to rebuild the web bean hierarchy.
    2)
    setPostToCallingPage(true) is missing in your code.
    If you have done both still your code is not working ahre the code, we will review and let you know the error.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to remove NO Button on dialog page

    Hello friends,
    i want to remove no button on my dalog page how to do? my code is below , below this code still i can see on dialog page no button.. can any one help me out..
    OADialogPage dialogPage = new OADialogPage(OAException.WARNING,descMesg, null,"" ,"" );
    dialogPage.setOkButtonLabel("ok");
    dialogPage.setOkButtonItemName("YesButton");
    dialogPage.setOkButtonToPost(true);
    dialogPage.setPostToCallingPage(true);
    System.out.println("Entering To Delete");
    pageContext.redirectToDialogPage(dialogPage);
    Thanks
    krish.

    You can specify your own button bar with the required buttons.
    Extract from Developer's guide.
    The setFooterNestedRegionCode and setFooterNestedRegionApplicationID methods in the OADialogPage class have been deprecated.
    If you use the standard OK/NO buttons provided on the dialog page, you do not need to make any changes.
    However, if you are using the OADialogPage.setFooterNestedRegionCode and OADialogPage.setFooterNestedRegionApplicationID methods to render customized buttons under the footer region, you must update your code to use the new method OADialogPage.setPageButtonBarRegionRefName instead. This new method lets you set a reference to a page button bar region, built declaratively with OA Extension. You can add any number of custom buttons to the page button bar region. OA Framework renders the page button bar region under the footer. Adding your custom content to a page button bar region allows the page buttons to be rendered and positioned in the proper places specified by the latest UI standards. To render the Return To navigation link under the footer, use the existing setReturnToLinkLabel and setReturnToLinkURL methods in OADialogPage.
    To render a nested region, created with OA Extension, under a dialog page header, use the new OADialogPage.setHeaderNestedRegionRefName method.

  • Custom Dialog Page Forwarding Issues

    Hi,
    It would be much appreciated if someone is able to offer advice, I am trying to create a dialog page with an ok button which when selected returns the user to the standard e-business homepage.
    In my processFormRequest of the main calling page I am capturing the selection of a save button, committing the changes and then running the following code;
    OAException confirmMessage = new OAException("Your record has been successfully updated ");
    OADialogPage dialogPage = new OADialogPage(OAException.CONFIRMATION, confirmMessage,null,"","");
    dialogPage.setPageButtonBarRegionRefName("/xxx/oracle/apps/per/sw/webui/ConfButtonBarRN");
    pageContext.redirectToDialogPage(dialogPage);The called region being specified in the call setPageButtonBarRegionRefName is of the type page button bar and has one button named OkButton, I have given the region a controller and within the processFormRequest I have placed the following code
    if ( pageContext.getParameter("OkButton") != null) 
                 pageContext.forwardImmediately
                   ("OA.jsp?page=/oracle/apps/fnd/framework/navigate/webui/HomePG",
                      null,
                      OAWebBeanConstants.KEEP_MENU_CONTEXT,
                      null,
                      null,
                      false, // retain AM
                      OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    }I have also tried placing this code in the calling pages processFormRequest however in each instance I get an error page stating that the page cannot be displayed;
    You cannot complete this task because one of the following events caused a loss of page data:
    •     Your login session has expired.
    •     A system failure has occurred.
    If anyone has any suggestions as to how I can get this dialog page to redirect the user back to the home page after selecting the ok button it would be very much appreciated as I have tried various different combinations to no avail.
    Many Thanks,
    Mike

    Ok I think I may have been looking at this for too long yesterday...
    I was able to get it to work by adding the following line to the calling of the dialog page and adding the handling of the response to the calling page;
    dialogPage.setPostToCallingPage(true);However I have now replaced the SubmitButton with a Button and set the URL to the homepage, skipping the calling page althogether and going direct to the homepage. In the code calling the dialog page I have added the following line as at the point of calling the dialog page I no longer require the AM.
    dialogPage.setRetainAMValue(false);Thanks for your quick response,
    Mike

  • Dialog window popup shows calling page insead of dialog page in Portal app

    Hi,
    Within my Webcenter Portal application (JDev 11.1.1.5.0) I'm experiencing the following popup behavour.
    I have made a navigation model which is used by a tree menu (situated in my pagetemplate in the left panel) and the breadcrumbs ( pagetemplate, top panel). On one of the pages (to which you can navigate by means of this tree menu) there is a link. When you click this link, you'll see a dialog modal window (popup window). I have made this popup by creating a taskflow with a jspx page on it. The jspx page has no page template, so it's created as a blank page. To test it, for now I have only put an outputText on it. In my adfc_config file I have dragged this taskflow to the screen, setting the properties 'run as dialog = true' and 'display type = inline-popup'. A control flow case was also made ( of course..... ;) ).
    On the calling page I made a commandlink with the action of the control flow case, and the properties use window = true, inlinedocument, applicationModal.
    Okay....
    When I place this link on the homepage (the page that starts up when I have logged in), and click the link, the popup shows and displays the right page (the jspx with an outputText on it).
    BUT when I navigate to a different page (by means of the tree menu) and click the link on that page (which is an exact copy of the first link), the popup still shows.....only displays the page and pagetemplate I have just come from.......So in my popup I'm looking at a page displaying my default pagetemplate, my treemenu etc.
    Is someone familiar with this kind of behaviour?
    Also, how can I resolve this??

    Hi.
    It's the same issue that:
    - External Window Dialog in Resource Catalog Task Flow?
    - Re: Custom ADF TaskFlow & WebCenter Portal Application
    I have an Blog entry about this bug: http://danielmerchanoracle.blogspot.com/2011/10/oracle-webcenter-portal-ps3-bug-al.html (in Spanish).
    Only fix that i found is changing Navigation Model to Item links (that contains your popup invoke) with "Redirect to URL" instead of "Redirect URL in Page Template".
    http://1.bp.blogspot.com/-nk98yTL3I50/Tqpjohj2g7I/AAAAAAAAAOk/AlghSPBm1wo/s1600/InlineBugRedirect.png
    However, can u test your problem in different browsers? IE7, IE8, Firefox , Chorme and tell me if your problem persist in all browsers?
    Edited by: Daniel Merchán on 17-feb-2012 12:09

  • Create a custom Master Page in SharePoint Foundation 2013

    Hi,
    I am new to SharePoint foundation.
    I am trying to create a custom master page and save it as template, so that i can use it for all other sub sites. But i don't know where to start. Also i tries searching in Google, i got results for share point and not for share point foundation.
    So, Please give me a step by step procedure or a link to step by step procedure on how to create a master page, save it as template and use it for a sub site.
    Thanks in advance,
    Gowtham R

    Few points to note related to SharePoint Master page:
    You don't need to create master page template. If you deploy your master page in site collection level you can reuse the same master page in subsites without copying again and again, rather just by referencing
    You have not mentioned how you are going to deploy your master page. If you have any Visual Studio (VS) solution already, try to add your  master page in the VS solution and deploy your master page (and other branding components) as SharePoint WSP
    solution.
    Deploying master page will not activate the master page, you need to use some kind of 'Web Level Feature' to activate your branding - the feature will basically set the master page property of SharePoint site to your custom master page.
    Please follow the links below for steps by steps instructions (and you will find many just by googling 'sharepoint master page visual studio'):
    http://frederik.se/how-to-deploy-a-custom-master-page-in-sharepoint-2013-using-visual-studio/
    http://joshuaorimogunje.wordpress.com/2011/10/05/how-to-create-custom-master-page-for-sharepoint-2010-using-visual-studio-2010/
    http://blogs.msdn.com/b/bobgerman/archive/2011/01/31/packaging-master-pages-and-page-layouts-with-visual-studio-2010.aspx
    http://go.limeleap.com/community/bid/291931/Creating-a-Custom-SharePoint-Master-Page-with-jQuery-Using-Visual-Studio
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • I created a newsletter using pages on my IPAD3.  I can see see it...the icon is till there but when I tap it to open it, I get kicked out of pages.   Tried rebooting  and I can open other documents, but not this one.  Any ideas?

    I created a newsletter using pages on my IPAD 3.  All of a sudden I can no longer open that document.   When I click on it, it throws me out of pages all together.  I can open other pages documents, but not that one.  It is very frustrating to be able to SEE the file, but not open it.
    I rebooted and I do have icloud back-up on but am not sure how to restore an older version.  I also made sure there are no updates for pages.   Until the IPAD I used a home PC which I still have but am trying to wean myself off of.  I wish now I had used MS Publisher on my PC for the newsletter even though I hate it.   
    Please don't tell me I have lost my Newsletter and 20 hours worth of work.  

    Try resetting your iPad.  Hold the on/off and home buttons together for 7 or 8 seconds till the Apple logo appears.
    I'm assuming your default is to save Pages documents to iCloud, and that you had a good WiFi connection when you closed Pages the last time you tried to save the document.

  • HT204053 I have a problem. I bought Pages and Numbers for my iMac and so far everything was OK.  Suddenly i have a problem with connection to iCloud. Dokuments created on iMac in Pages or Numbers are not transfered to iCloud. Not uploaded in iCloud.

    I have a problem.
    I bought Pages and Numbers for my iMac and so far everything was OK.
    Suddenly i have a problem with connection to iCloud.
    Dokuments created on iMac in Pages or Numbers are not transfered to iCloud. Not uploaded to iCloud. There is a sign  (small shape of iCloud), that they are waiting to be uploaded to iCloud.
    I think the iCloud is OK.
    i can see and manage documents in iCloud. i can create them on iPad and  see them and delete them in iCloud.
    But not on iMac.
    i dont know what has happened and I am not abble to find the solution. It was OK till some days ago….

    I have a similar problem! Everything stopped working after upgrading to Mac OS 10.8.4 through the App Store. Help!

  • Create a follow up page in scripts using Duplex and Tumble Duplex in print

    How to create a follow up page in scripts using Duplex and Tumble Duplex in print mode of scripts ?

    it depends upon output device types.
    Regards
    Prabhu

Maybe you are looking for

  • How do I turn video smoothing on for projects that I publish to Flash?

    I am using Captivate 7.  I have an MP4 that is places on a slide.  I am publishing to Flash.  I have set everything to the highest quality and have turned off all compression.  Due to contstraines in our delivery system I must limit the playback size

  • Is it possible to make an ImageIcon array?

    Hi, I have been having some strange problems with ImageIcon... Here is my code... ImageIcon tiles[][] = new ImageIcon[5][5]; tiles[0][0] = "1.png"; I know this is not right, but basically, I want to make a 2dimensional array of imageIcon's, and then

  • How to change the apple account used in the Mac.

    How can I change my previous App-store I.D for a new one in macbook. beacause i can't do any updates while having the old account that i totally lost. i know I shloud delete the apps and downloaad them again using the new account. but the problem is

  • I don't have a backlit display on my mac air

    I don't have a backlit display on my mac air. Why ?...

  • [solved]Removing applet from kdemod [my bad]

    Well I had a clean install of KDE mod, tried to install xfce, then E, rebooted broke X, tried to troubleshoot, gave up reinstalled, messed that up, next day, reinstalled again..... Went back to kde mod for now, but I have a question. While trying to