Problem with ClientListener in custom component

I have custom declarative component:
<af:commandImageLink icon="/img/trash.png" actionListener="#{TrashButtonBean.deleteRow}">
<af:setActionListener from="#{row.rowKeyStr}" to="#{TrashButtonBean.currentRowKetStr}"/>
*<af:clientListener type="click" method="confirm( 'Confirm delete' ); "/>*
</af:commandImageLink>
It works but without ClientListener. Investigating with Firebug I found that onclick event always returns false and blocks operation:
<span class="nodeLabelBox repTarget">&lt;<span class="nodeTag">a<span class="nodeAttr editGroup"> <span class="nodeName editable">id="<span class="nodeValue editable">j_id_id4:j_id_id8:j_id_id14:7:j_id_id46:j_id_id1pc3"<span class="nodeAttr editGroup"> <span class="nodeName editable">class="<span class="nodeValue editable">xup"<span class="nodeAttr editGroup"> <span class="nodeName editable">href="<span class="nodeValue editable">#"<span class="nodeAttr editGroup"> <span class="nodeName editable">onclick="*<span class="nodeValue editable">return false;*"<span class="nodeBracket editable insertBefore">&gt;
<div class="nodeChildBox"><div class="nodeBox emptyNodeBox repIgnore selected"><div class="nodeLabel"><span class="nodeLabelBox repTarget"> &lt;<span class="nodeTag">img<span class="nodeAttr editGroup"> <span class="nodeName editable">id="<span class="nodeValue editable">j_id_id4:j_id_id8:j_id_id14:7:j_id_id46:j_id_id1pc3::icon"<span class="nodeAttr editGroup"> <span class="nodeName editable">class="<span class="nodeValue editable">xus"<span class="nodeAttr editGroup"> <span class="nodeName editable">src="<span class="nodeValue editable">/ReusableComponentsTest-ViewController-context-root/img/trash.png"<span class="nodeBracket editable insertBefore">/&gt;
</div>
</div>
</div>
<div class="nodeCloseLabel"><span class="nodeCloseLabelBox repTarget">&lt;/<span class="nodeTag">a&gt;
Any idea.
Kuba
</div>

Hi,
simplyadf
Using af:popup I get PPR - null pointer exception, because popup behavior blocks af:setActionListener that I use to pass rowKeyStr to managed bean.
coomar
Your solution also doesn't work. here is my code:
&lt;af:componentDef var="attrs" componentVar="TrashButton"&gt;
&lt;script type="text/javascript"&gt;
function confirmDelete(){
var agree=confirm('Confirm delete');
if (agree){
return true ;
}else{
return false;
&lt;/script&gt;
&lt;af:commandImageLink icon="/img/trash.png" actionListener="#{TrashButtonBean.deleteRow}"&gt;
&lt;af:setActionListener from="#{row.rowKeyStr}" to="#{TrashButtonBean.currentRowKetStr}"/&gt;
&lt;af:clientListener type="click" method="confirmDelete"/&gt;
&lt;/af:commandImageLink&gt;

Similar Messages

  • Problem with attributes in custom component

    Hi All,
    I am creating a simple jsf PanelGrid custom component....in that component I am adding two new attributes....
    when I use that tag in my jsf application it is rendering fine in the client side....but the parent class that is PanelGrid component's attributes are not inheriting to my custom panelgrid....
    can any one tell me how can I use the attributes of the super class PanelGrid??
    Thanks...

    Have you configured the attributes in the tag library descriptor?

  • Problem with checkbox on table component

    Hello i am having a problem with checkbox in table component
    i am developing something like a shopping cart app and i have a checkbox in my table component , i want users to select items from the checkbox to add to thier cart, They can select the items from cartegory combobox , my problem is when they select the items from the checkbox if they select another category the alread selected once do not display in my collection opbject please how can i maintain the state of the already selected items in my collection object

    Hi,
    Please go through the tutorial "Understanding scope and managed beans". This is available at:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/scopes.html
    The details of the selected items need to be stored in an object that is in session scope.
    Hope this helps
    Cheers
    Girish

  • Problems with Automatic Workflow Customizing

    Hi!
    I am having problems with Automatic Workflow Customizing (SWU3). I am trying to execute "Configure RFC Destination" manually. I receive the message "Synchronization of passwords failed".
    We are using CUA and it is therefor not possible to create the user from SWU3 which means that WF-BATCH has been created in CUA with a pw which is then filled in by me when executing "Configure RFC Destination".
    WF-BATCH has authorization SAP_NEW, SAP_ALL
    My user also has SAP_NEW and SAP_ALL and usergroup SUPER.
    Does anyone know what might be the problem?
    Sincerley
    Anders Öhrling

    Hello Anders,
    Check if the user is locked in SU01. Then check if your user has been created in CUA.
    It is recommended to delete WF_BATCH. The system will auto create the user ID WF-BATCH and synchronize the password.
    Do let me know if your problem is resolved.
    Thank you.
    Regards,
    Manomeet
    - Award points if helpful -

  • Help with creating a custom component.

    Hi. I have created a really simple custom component called
    myComp. It is a simple Canvas 100 pixels x 100 pixels with an Image
    control component.
    <mx:Canvas>
    <mx:Image id="image1">
    </mx:Canvas>
    After instantiating the component in Main.mxml eg. var
    pic1:myComp = new myComp(); I am having a problem setting the
    source property of the Image component.
    "image1" is the id of mx:Image in the custom compoenent so I
    tried pic1.image1.source = "assets/ball.jpg" but I get a run time
    error "Error #1009: Cannot access a property or method of a null
    object reference".
    Don't really know what I am doing wrong.
    Any help please!

    In your custom component, try adding a bindable public var
    which contains the path to your image. Also, set the image.source
    to this var.
    In your main app, set the var within the <mx:> tags of
    the custom component. Since it is a public var, it will show up in
    the code hint. You can also now change the image var from the main
    app anytime you like using ActionScript code.

  • Problem with AddRow() in custom matrix on System Form

    Hello all,
    I'm trying to add 1 row to a custom matrix on a system form (Sales Quotation).
    However I always get a RPC_E_SERVERFAULT exception when calling pMatrix.AddRow() and SBO crashes...
    My code is simple:
            [B1Listener(BoEventTypes.et_CLICK, false)]
            public virtual void OnAfterClick(ItemEvent pVal)
                Form pForm = B1Connections.theAppl.Forms.Item(pVal.FormUID);
                // Add matrix line
                Matrix pMatrix = (Matrix) pForm.Items.Item("MATRIX").Specific;
                pMatrix.AddRow();
                // Set matrix line data
    The matrix shows ok in the system form, inside a new folder.
    What is the problem with my code?
    Is there any way to add rows to a custom matrix in a system form?
    This code runs ok if executed in a custom form...
    Thanks!
    Manuel Dias

    hi.
    R u facing any problem ...
    actually add row and del row both are same.
    in normal customization form and system form matrx...
    Any problem are u facing...

  • Problem with SCCM 2012 R2 Component status messages

    Hello,
    I have a strange problem with Component status messages. When I try to view all messages from any component, I receive an error message stating that the data could not be recieved from the database. Reporting point is installed.
    And when I try to run a report, nothing happens. The report doesn't run.
    Any idea??

    Oooopsss... Status messages disappeared again !! nothing suspect in srsrp.log and compmon.log.
    There are these entries in compsumm.log that got my attention
    The machine account will be used for ["Display=\\DataBaseServer.domain\"]MSWNET:["SMS_SITE=CPS"]\\DataBaseServer.domain\.~  $$<SMS_COMPONENT_STATUS_SUMMARIZER><12-17-2014 20:00:00.643+300><thread=3152 (0xC50)>
    Successfully made a network connection to \\DataBaseServer.domain\ADMIN$.~  $$<SMS_COMPONENT_STATUS_SUMMARIZER><12-17-2014 20:00:00.643+300><thread=3152 (0xC50)>
    Failed to read Operations Management component registry key values on DataBaseServer.domain; error = 5 (0x5).~  $$<SMS_COMPONENT_STATUS_SUMMARIZER><12-17-2014 20:00:00.909+300><thread=3152 (0xC50)>
    Failed to read in current property values and initialize COpsMgmtComponent object; error = 5 (0x5).~  $$<SMS_COMPONENT_STATUS_SUMMARIZER><12-17-2014 20:00:00.909+300><thread=3152 (0xC50)>
    Error: Failed to initialize the COpsMgmtComponent object for component SMS_SITE_SQL_BACKUP_S206UT24.CSDPS.QC.CA on machine DataBaseServer.domain. : L’opération a réussi.~~  $$<SMS_COMPONENT_STATUS_SUMMARIZER><12-17-2014 20:00:00.909+300><thread=3152
    (0xC50)>

  • Problem with disabling t:inputCalendar component

    I use <t:inputCalendar> component from the tomahawk library. I am facing a problem with it like I am not able to disable it completely. I am able to disable only the input field with it. The image that pops up the calendar couldn't be disabled.
    Pls help if some one has tried this.

    try setting the visibility or render settings maybe

  • Problem with Mail and customized keyboard layout

    I have created a customized keyboard layout in XML, it loads and works perfectly with all applications except Apple Mail. I noticed on a googlegroup that somebody has the same problem. How can I submit this Mail bug to Apple?

    download and run Find Any File to search for  "Antidote".
    FAF can search areas that Spotlight can't like invisible folders, system folders and packages. Any file you find will be in the search results window and can be dragged to the Desktop and then to the Trash bin.
    OT

  • Problems with Apache and custom JSPs

    Hi
    We've made an application on top of IFS, using JWS in our test envirnment. Just before making some stress tests, I'd like to try it using Apache. We're currently having two problems:
    1) I switch to the apache configuration running ifsconfig and not selecting JWS. When I try to access the ifs using http://host/ifs/files, everything goes well except that the "logout" icon doesn't appear. I did a little research and found out that the link goes to /ifs/webui/images/logout.gif. This gives an error in mod_jserv.log, like this one:
    [07/06/2001 22:54:20:315] (ERROR) ajp12: Servlet Error: ClassNotFoundException: webui
    It seems it's trying to find a "webui" class, since in ifs.properties every url that begins with /ifs goes to jserv.
    I don't know if this is a know problem or what should I've check...
    2) This one is more important. We're using some custom JSPs, which we use to edit the properties of some types of documents. Basically, when the user clicks over a file one of our JSP appears. These JSPs call a bean to do some processing, passing the HttpRequest as a parameter. The problem is that when using JWS we get the "path" request variable like in path=/%3A29464
    However, when using Apache we get path=/ifs/files/%3A29464 ( and afterwards we get an exception because the ifsSession.getPublicObject method doesn't work).
    Any hints on this? One way could be to check if the path begins with /ifs/files, but that's not really nice.. and besides I could have the same problem in some other parts.
    It's kind of urgent....
    Thanks
    Ramiro
    null

    Hi,
    The answer to your path problem is that you can make use of API to find out the current path so that it works both with Apache and with JWS. Follow the steps
    1. import the oracle.ifs.adk.http package in your custom jsps
    <%@ page import = "oracle.ifs.adk.http.*" %>
    2. Then within your jsp use the method
    getIfsPathFromJSPRedirect
    <%= oracle.ifs.adk.http.HttpUtils.getIfsPathFromJSPRedirect(request) %>
    This will give you the current path of the object on which you clicked on and which initiates the custom jsp.
    You can look at the CMS application which has made use of this API. URL is
    http://otn.oracle.com/sample_code/products/ifs/sample_code_index.htm
    Choose, sample applicatin -> Content Management system.
    Hope this helps
    Rajesh
    null

  • Problem with the webuijsf:helpwindow component (Illegal view id )

    Hello
    I just tried the helpwindow component of woodstock 4.3.
    After starting the application, I always get this error in the glasfish log
    JSF1010: Illegal view ID faces/com_sun_webui_jsf/help/helpwindow.jsp. The ID must begin with '/'
    WebModule[POSWareLizenz]Illegal view ID faces/com_sun_webui_jsf/help/helpwindow.jsp. The ID must begin with /
    java.lang.IllegalArgumentException: Illegal view ID faces/com_sun_webui_jsf/help/helpwindow.jsp. The ID must begin with /
    at com.sun.faces.application.ViewHandlerImpl.getActionURL(ViewHandlerImpl.java:627)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.getActionURL(ViewHandlerImpl.java:244)
    I am using this environment:
    Vista x64 (german), q6600, 8Gigs Ram, Glasfish v2ur2, netbeans 6.1
    The four required pages buttonnav.jsp, helpwindow.jsp, navigator.jsp and tips.jsp are installed under the path com_sun_webui_jsf/help, prefixed with faces.
    This pages were extracted from the downloadable Woodstock.4.3-200806241804.jar
    The helpwindow component is startet from a masthead component in this way
    <webuijsf:masthead dateTime="true" id="masthead1" productImageDescription="POSWare Lizenzanwendung"
                                                   serverInfo="#{MastHeadBean.serverInfo}" serverInfoLabel="Server" style="left: 0px; top: 0px; position: absolute; width: 1030px"
                                                   userInfo="#{MastHeadBean.userInfo}" userInfoLabel="Benutzer">
                                    <f:facet name="brandImage">
                                        <webuijsf:image alt="(C) ebit company" height="100" url="/resources/ebit logo.GIF" width="100"/>
                                    </f:facet>
                                    <f:facet name="versionLink">
                                        <webuijsf:hyperlink actionExpression="#{Page1.versionlink_action}" id="versionlink"
                                                            onClick="javascript: var versionWin = window.open('faces/VersionPage.jsp','VersionWindow','scrollbars,resizable,width=650,height=500,top='+((screen.height - (screen.height/1.618)) - (500/2))+',left='+((screen.width-650)/2) ); versionWin.focus()"
                                                            text="Version" toolTip="Version dieser Anwendung"/>
                                    </f:facet>
                                    <f:facet name="helpLink">
                                        <webuijsf:helpWindow windowTitle="Window Title Param"
                                                             toolTip="Help for This Page (Opens a New Window)"
                                                             linkIcon="true" linkText="Hilfe" />
                                    </f:facet>
                                    <f:facet name="logoutLink">
                                        <webuijsf:hyperlink text="Logout"/>
                                    </f:facet>
                                    <f:facet name="productInfo">
                                        <h:panelGrid columns="3" id="gridPanel3">
                                            <webuijsf:image height="120" url="/resources/POSware%20Logo%20klein.gif" width="120"/>
                                            <webuijsf:staticText style="font-style:bold; font-size:300%;color:white;" text="POSWare Lizenz Anwendung"/>
                                        </h:panelGrid>
                                    </f:facet>
                                </webuijsf:masthead>There are three possibilities: a.helpwindow is not yet functional, b.the download in the 4.3 download area contains some mistakes or c. I did something wrong.
    Any Ideas?
    Thank you

    Lakshmi,
    I think you dont need to create a z component .you can enhance your existing component(if you enhance you willnot have any of these problems)
    check these blogs on how to enhance a component
    The Three Use Cases of the Enhancement- and Switch-Framework - Part 1
    The Three Use Cases of the Enhancement- and Switch-Framework - Part 2
    search for Thomas Weiss blogs on enhancement
    Thanks
    Bala Duvvuri

  • SRM 7.0: problem with save BP customer fields

    Hi Experts,
    I've enhanced the Supplier data with customer fields in SRM 7.0 with help of OSS note 1386310.
    (it was mentioned in thread Enhance business partner in SRM 7.0)
    When I fill customer fields with data on BP overview screen and save, the message "Business Partner changed successfully." appears, but the customer fields data is not saving in database table BUT000.
    I've find out that customer data saves in FM BUPA_CENTRAL_EXTINCL_CHANGE. In this FM is a check if include CI_EEW_BUT000 exist in Structure INCL_EEW_BUT000. The check is unsuccessful and program leaves this FM.
    When I open INCL_EEW_BUT000, the include CI_EEW_BUT000 exist there, but when I double click on it, message "Structure not available" appears.
    Can somebody help with it? Maybe someone is already had this problem?
    Thanks,
    Ekaterina.

    Hi Jr. SRM , Amit  and other ,
    I'm also facing same problem . I don't want approval WF for timebing for testing in SRM7.0. I activated BC set  /SAPSRM/C_<BO>_600_000_SP04 and Ev Id as it is 3EV_SC_700_002.since suggeted ID '0EV999' didn;t worked , but still giving error "No active process levels have been found  ".
    In Config guide it is given that by applying BC Sets, you do not need to perform configuration steps below i.e. 1.Define technical configuration ,2.Define settings for Business Rule Framework (BRF) 3.Define business process configuration for process-controlled workflows....so why we need to perform Automatic Workflow Customizing and generalize the task group '40000003' and '40000007' ?
    Can you/anyone pls suggest on this please ?
    Regards
    NAP

  • Problems with orders and customer support

    Here is my dilemma,
    I NEED photoshop for school so I ordered Creative Suite on January 26 and they never delivered it, in fact they CANCELED my order. So I had to reorder it on February 2nd. They delivered it to me but in fact sent the WRONG ONE. So I was forced to order it yet again. After probably ten phone calls to customer service making sure I would receive the correct product in time. Finally after a month of dealing with these issues my order finally arrived only for me to find out that Photoshop wont work on my computer. I called customer service AGAIN to get some assistance. I was told the wait would be 5 minutes but I ended up waiting for over an hour before I decided to call from another phone at the same time. I was told by the automated system that "Adobe's operating hours were from 5am to 7pm" and to "please call back within those reasonable times."
    Of course you can see how frustrated I am due to the fact that I have been dealing with these incidents for a month and I NEED these applications for my school projects and have had to resort to using Word for projects. Can anyone help me get in contact with someone who will actually help and get me what I need instead of me having to go through these ridiculous loops of annoying problems.

    Well, no offense, but you're not telling us anything. If you want help, as a minor you should probably tell us what computer and operating system you are using and why it doesn't qualify. Merely venting your frustrations doesn't help anyone. You could also post in the DIS forum, if you insist on getting more direct contact. Not saying that the employees there can help you better - after all, they, too, are mostly those poor Indian saps Adobe chose to let handle support - but they will try.
    Mylenium

  • URGENT:problem with memory using swing component

    We use Java SDK 1.4.0-b92 on a Sun Blade Machine with Solaris 8 Operating System.
    We developed a software with a GUI (JFame, JInternalFrame) which have to be refreshed in precise moments and any time we do it there is a big loss of memory(not the Java Virtual Machine Memory but the system memory, see it with the command "vmstat"). It seems that memory isn't released even if we close one or more of the JInternalFrame/JFrame.
    This is a part of our example code which refresh some JTextArea every ten seconds,with the content of a text File called "text.txt" :
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    import java.util.*;
    public class MainFrame extends JFrame {
    static JDesktopPane desktop = new JDesktopPane();
    JMenuBar menuBar = new JMenuBar();
    JMenu menu = new JMenu();
    JMenuItem aggiungi = new JMenuItem();
    int openFrameCount = 0;
    public MainFrame (){
    try{
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    desktop.setBorder(BorderFactory.createLoweredBevelBorder());
    this.setContentPane(desktop);
    Dimension screenSize= Toolkit.getDefaultToolkit().getScreenSize();
    this.setBounds(0, 0, screenSize.width, screenSize.height);
    this.setTitle("Main Frame Prova");
    this.setLocation(0,0);
    this.setVisible(true);
    menu.setText("apri frame");
    aggiungi.setText("Apri");
    aggiungi.addActionListener(new ActionListener () {
    public void actionPerformed(ActionEvent e){
    createFrame();
    menu.add(aggiungi);
    menuBar.add(menu);
    this.setJMenuBar(menuBar);
    catch (Exception e) {e.printStackTrace();}
    private void createFrame (){
    try{
    NsJInternalFrame frame = new NsJInternalFrame("Frame Interno", true, true, true, true);
    openFrameCount++;
    System.out.println("Frame aperti: "+openFrameCount);
    frame.setVisible(true);
    desktop.add(frame);
    frame.setSelected(true);
    frame.setPreferredSize(new Dimension(400,500));
    frame.setSize(new Dimension(400,500));
    finalize();
    catch (Exception e) {e.printStackTrace();}
    catch (Throwable t) {t.printStackTrace();}
    protected void processWindowEvent (WindowEvent e){
    try{
    super.processWindowEvent(e);
    if (e.getID()== WindowEvent.WINDOW_CLOSING) {
    finalize();
    System.exit(0);
    catch (Exception ex) {ex.printStackTrace();}
    catch (Throwable t) {t.printStackTrace();}
    public static void main (String argv[]){
    try {
    UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
    MainFrame mf = new MainFrame();
    while (true){
    Thread.sleep(10000);
    aggiornaTesto();
    Runtime run = Runtime.getRuntime();
    System.out.println("***********************************************************");
    System.out.println("* Memoria Totale "+run.totalMemory()/1000+" *");
    System.out.println("* Memoria Massima occupabile "+run.maxMemory()/1000+" *");
    System.out.println("* *");
    System.out.println("* --------------------------------------------------------- *");
    System.out.println("* *");
    System.out.println("* Memoria Libera "+run.freeMemory()/1000+" *");
    System.out.println("* *");
    System.out.println("***********************************************************");
    System.runFinalization();
    System.gc();
    catch (Exception e) {e.printStackTrace();}
    private static void aggiornaTesto(){
    JInternalFrame[] frameAperti = desktop.getAllFrames();
    for (int i=0; i<frameAperti.length; i++)
    ((NsJInternalFrame)frameAperti).inizializeText();
    System.out.println("----- "+new Date()+" / Aggiornato testo------");
    System.runFinalization();
    System.gc();
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    import java.io.*;
    public class NsJInternalFrame extends JInternalFrame {
    JTextArea textArea=new JTextArea();
    public NsJInternalFrame (String title, boolean resizable, boolean closeable, boolean maximizable, boolean iconifiable){
    super (title, resizable, closeable, maximizable, iconifiable);
    disableEvents (AWTEvent.WINDOW_EVENT_MASK);
    JScrollPane scroll;
    scroll=new JScrollPane(textArea);
    this.setContentPane(scroll);
    this.setDefaultCloseOperation(JInternalFrame.DISPOSE_ON_CLOSE);
    inizializeText();
    public void inizializeText(){
    try{
    RandomAccessFile raf = new RandomAccessFile("text.txt", "r");
    String text = new String(), line = new String();
    while (true) {
    line = raf.readLine();
    if (line==null) break;
    text= text+line;
    textArea.setText(text);
    finalize();
    raf.close();
    catch (Exception e) {e.printStackTrace();}
    catch (Throwable t) {t.printStackTrace();}
    public void dispose (){
    try{
    finalize();
    super.dispose();
    catch (Exception e) {e.printStackTrace();}
    catch (Throwable t) {t.printStackTrace();}
    text.txt
    HELLO HELLO HELLO
    Help Us Please!!
    [email protected]
    [email protected]

    Yes I'm still following the thread.
    Like i said i only have ovi maps running with PhoNetInfo and even today i tested it again. I managed by changing some settings to get 50MB of free RAM when the phone is idle.
    I changed the amount of allowed RAM to be used by ovi maps to the minimum (10%). This time i had 40MB of free ram before calculating the root (again more or less 600km) without tolls and the fastest root. i continued with PhoNetInfo on and following the value of free RAM and they kept falling till i get again the low memory error.
    I tried then a "solution" that i got from nokia that stated to change the configuration of the internet to online, and it worked perfectly. But i don't think this is a solution since i can't have my phone always connected to the internet. I don't know is where i can suggest that nokia try to solve this problem but already sent an email to the client support stating this.
    I don't think i can install a later version of ovimaps since it comes pre-installed on the phone and i don't see where i can uninstall it and where to find the earlier versions.
    But thanks for the reply,

  • Problem with css reload (custom adf skin)

    I have defined a custom skin but changes in the css does not immediately show in the page. I have not figured out what triggers a rreload of the css. When I delete the generated css from the embedded OC4J a new one i immediately created but with the old values.

    Hello,
    This depends on the version of ADF your using.
    If its 10G, as far as I know, changes will only get picked up after a redeploy and even then you need to force the browser to re download the css (using a force refresh, shift + F5 or the refresh key normally)
    If its 11G, the redeploy should not be needed as long as you force a browser refresh.
    As long as the previously mentioned context parameter is present:
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>true</param-value>
      </context-param>-Anton

Maybe you are looking for

  • How to copy the file from firebird database to SQL server

    Hi all, I have a file in Fire bird Database (30 GB with .ydb extension).  which needs to be restored to SQL Server. I Have created a linked server and done it but it is taking very long time to update the records. Can any one please suggest if u have

  • TS1702 Camera Application isn't working good in iOS 6.

    Updated my iOS 5.1.1 to the latest iOS 6 and realize that my Camera Application keep Crashing in Whatsapp when taking photo. And sometime when I want to take picture using the camera application itself. Does anyone have the same problem as i do?

  • What to do when i have lost the email with the serial number on??

    as it says above, i downloaded and biught CS5 from adobe last year, and have lost the email with the serial number on and i need to reload it onto a new machine. all emails from adobe were lost during a breakdown of my laptop. could someone shed some

  • Premiere Pro CS3 crashes when trying to load my projects.

    Hi, All help is appreciated! I'm going nuts after searching for days through forums for solutions. The problem started when I was working on a project. I realised that the HD Quality footage I was editing with wasn't converted properly so i downloade

  • CS3 install issues in win 7 32 bit

    I have a licensed copy of CS3 design premium. I installed on my desktop no issues. License permits me to install on a laptop as well for portable use as long as I don't use them at the same time.  CS3 will not install on my 32bit window 7 system.  Th