Can JFC handle all event of html element

I was just going through with JSF spec.
I have some doubts .
Can JSF hanlde all the events related to html element like key down , onclick etc, on form load.
Instead of writing heavy javascripts for this on client , can i handle all this on server side with JSF.
In my application , for each html field, we make server trip. To handle these html events , we are dependent on javascript. we don't use any fancy Elememnt.
My concern is this ,
by using JSF can i avoid this javascript coding on html event. and use JSF element with server side event handling .
thanks

If I understand your question, you're asking whether JSF component event handling can be done on the server side, rather than through the use of client side javascript.
The answer, I suppose is yes; you'd write server side code that is run during an appropriate phase in the life-cycle after data is submitted to the server.
However, I don't see much point in doing this. You're bound to create less scalable applications. If you're disgruntled about javascript, consider designing a set of JSF components based on XForms (provided you have an appropriate browser plug-in).
Rob

Similar Messages

  • Event structure doesn't handle all events from external DLL source

    Hi!
    I use a DLL, wich handles an USB CAN transceiver device, and generates LabVIEW user events with extcode.h and PostLVUserEvent() function.
    In my vi I use an event case structure to handle theese external events. The problem is, that if the events come too frequently, then it cannot handle all events.
    The vi contains a couple of parallel while loops which process the incoming data from the external event.
    In another application I use the same architecture, and that works fine. This one is more complex.
    Do you think I have reached the limits of the program? Or what else can be the problem?
    I have tried to use a queue in the  event structure, it helped a little, but yet, not all the events are handled. My external DLL sends all event, so the problem is not there.
    Thanks in advance!

    Hi Wasz,
    Thanks for the post and I hope your well.
    It is not possible for the event structure to miss events - it simply queues them up. To keep the event structure 'in time' with the code you must ensure the code to execute in each event is minimal to allow the event structure to handle the next event. 
    Please see this two links:
    event structure buffering: leading to,
    How to avoid built-up for "cursor move" events? : where somone is trying to avoid handling all events.
    What sort of events are not being handled? Could it be an issue your events are not configured correctly? Maybe if you could produce a small example in LabVIEW code, so we can just test the event structure configuration... someone working around the external dll call - which you seem sure is working correctly.  
    In terms of queuing to process the events in other loops is certainly an option to speed up the event structure. To do this, use a produce/consumer design pattern.
    hope this helps,
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How can i clear all events in ical

    how can i clear all events in ical

    Try typing "." without the exclamation points in the iCal search window. Then simply highlight all the entries > Edit/Delete

  • How can i handle with event, when i close a file (notped or word,excel..)??

    How can i handle with event, when i close a file (notped or excel...). i want do something..
    Edited by: Legy on Apr 21, 2008 11:45 PM

    of course notepad.exe is closed again as soon as the operating system has completed the process of loading its content into memory...
    And no "event" is fired when that happens, except maybe internal to the process that loaded the application to indicate that it's been loaded successfully and can now be executed.
    But there's no way your Java process is ever going to receive that notification.

  • How can I edit all events in iCal?

    Hello,
    is it possible to edit all events in iCal at once or do I have to edit each event itself?
    I want to add a reminder to all events!
    Thanks for your help!
    Dirk

    Try typing "." without the exclamation points in the iCal search window. Then simply highlight all the entries > Edit/Delete

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • PC's can't see all of my .html page but my mac does.

    RE: http://www.todaysipnchat.sipnchat.ca/table.html
    Can anyone help me figure out why my web page is only partially visible to PC's? I built the page with Site Studio 1.7 on my Linux Server and have a table page with the top and right bottom tables visible to PC's but the contents of the bottom right table (which is an embeded adobe.jpg/.html file) is only visible on my mac.
    {<embed src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width=850 height=1200></embed>}
    (is my HTML code correct for embeding a page within a table)?
    What throws me is why can I go to the URL with Safari on my mac and see the whole page, links and all but PC's can't see the .html file? And if I try to email myself the contents of the page it shows up blank even on my mac....below is the code to my page and my .html file> if that helps.....THANKS IN ADVANCE ANYONE!!!!
    http://www.todaysipnchat.sipnchat.ca/table.html >>>:(
    <!-- BOF: ./personal-templates/show.body -->
    <!-- BOF: ./personal-templates/simple/generic/show -->
    <!-- BOF: ./personal-templates/rtl.html -->
    <!-- Locale=enUS_ISO88591 -->
    <!-- EOF: ./personal-templates/rtl.html -->
    <!-- BOF: ./personal-templates/simple/generic/functions -->
    <!-- BOF: ./personal-templates/simple/generic/navbar --><!-- EOF: ./personal-templates/simple/generic/navbar -->
    <!-- EOF: ./personal-templates/simple/generic/functions -->
    <!-- EOF: ./personal-templates/simple/generic/show -->
    <!-- BOF: ./personal-templates/simple/generic/images -->
    <!-- EOF: ./personal-templates/simple/generic/images -->
    <!-- BOF: ./personal-templates/simple/personal/other/l15.settings.init -->
    <!-- EOF: ./personal-templates/simple/personal/other/l15.settings.init -->
    <!-- BOF: ./personal-templates/simple/personal/layout/l15.wait -->
    <!-- EOF: ./personal-templates/simple/personal/layout/l15.wait -->
    <html>
    <head>
    <meta name="description" content="">
    <meta name="Keywords" content="">
    <!-- personal -->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="Generator" content="">
    <!-- BOF: ./personal-templates/simple/themes.show -->
    <!-- EOF: ./personal-templates/simple/themes.show -->
    <!--<BASE HREF="http://d8669406.he103.hostexcellence.com/table.html">-->
    <title>Page 1</title></head>
    <body bgcolor="#FFFFFF"
    text="#336633"
    leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"
    onLoad=""
    link="#000000"
    vlink="#000000"
    alink="#000000"
    <div class="jive-quote">
    <!-- BOF: ./personal-templates/simple/personal/layout/l15.layout -->
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td height="101">
    <table dir="LTR" border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr>
    <td align="left" width="492"></td>
    <td align="right" valign="middle" width="100%" background="widgets/gen_1.1.gif" height="79"></td>
    </tr>
    <tr>
    <td colspan="2" width="100%" bgcolor="#336633" align="left" height="16">
    </td>
    </tr>
    <tr><td colspan="2" bgcolor="#FFFFFF" height="2"></td></tr>
    <tr><td colspan="2" bgcolor="#336633" height="4"></td></tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" width="100%" height="80%">
    <!-- BOF: ./personal-templates/simple/personal/table/html -->
    <table align="left" cellspacing="0">
    <tr> <td colspan=2 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    Sorry Under Construction...Please return in a few [email protected]
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td>
    </tr>
    <tr> <td colspan=1 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    <embed src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width=850 height=1200></embed>
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td>
    <td colspan=1 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    <embed src="http://www.visionblazer.com/xp/users/mickey/movies/project1.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project2.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project3.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project4.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed>
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td> </tr>
    </table>
    <!-- EOF: ./personal-templates/simple/personal/table/html -->
    <center>
    <nobr>|Today's Sip'n'Chat Online!|</nobr>
    <nobr>|Page 1|</nobr>
    <nobr>|Page 2|</nobr>
    <nobr>|Page 3|</nobr>
    <nobr>|Page 4|</nobr>
    <nobr>|Page 5|</nobr>
    <nobr>|Page 6|</nobr>
    <nobr>|Page 7|</nobr>
    <nobr>|Page 8|</nobr>
    <nobr>|Page 9|</nobr>
    <nobr>|Page 10|</nobr>
    <nobr>|Page 11|</nobr>
    <nobr>|Page 12|</nobr>
    <nobr>|Home|</nobr>
    <nobr>|Archives|</nobr>
    </center>
    <center><table border="0" cellpadding="0" cellspacing="3"><tr><td align="center">
    MtM 2006
    </td></tr></table></center>
    </td>
    </tr>
    <tr>
    <td>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr><td bgcolor="#336633" height="3"></td></tr>
    <tr><td align="right" valign="middle" background="widgets/gen_1.1.gif"> </td></tr>
    </table>
    </td>
    </tr>
    </table>
    <!-- EOF: ./personal-templates/simple/personal/layout/l15.layout -->
    <!-- BOF: ./personal-templates/simple/themes.show.body -->
    <!-- EOF: ./personal-templates/simple/themes.show.body -->
    </body>
    <!-- BOF: ./personal-templates/simple/themes.show.end -->
    <!-- EOF: ./personal-templates/simple/themes.show.end -->
    </html>
    <!-- EOF: ./personal-templates/show.body -->
    AND NOW THE .html file>>>>
    <html>
    <head>
    <title>page109_0106</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (page109_0106.jpg) -->
    <table id="Table_01" width="613" height="792" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="4">
    </td>
    <td rowspan="2">
    </td>
    <td colspan="3">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="3">
    </td>
    <td rowspan="2">
    </td>
    <td rowspan="3">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="2">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    <td>
    </td>
    </tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>

    THANK YOU!!! I am just learning how to cut and paste; someone just gave me this solution: <iframe src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width="750" height="800"></iframe>
    I'll give this a try next...I also discovered that my mac is set at 1440 X 900 (I'm new to Macs too) and I was going more on how things looked on my (only computer) when I should have been paying attention to settings for different Browsers. Now I need to figure out what are the best overall sizes and settings to set things at...any sugestions?
    What I have been doing is: taking a .pdf sent to me originally made in Pagemaker Pro 7 --I open it in PhotoShop 8.5 X 11 300dpi I reduce to 72 dpi save for web in slices with images and HTML producing for me a 612 x 792 pixel page... I have a basic 2 col x 2 row table page produced on my hosting server(Site Studio) -in one of three cells I place the header then below left the .html and in the other cell to it's right I place several 336 x 280 flash animations all with the <embed> tags....this obviouly hasn't worked too well...but 750 + 336 is just under 1100 so shouldn't that be ok over all for most of todays Browsers? I don't mind the scroll bar vertically appearing as it makes room for more banner ads down the side (I think).
    A PC opinion of http://www.todaysipnchat.sipnchat.ca/page109_0106.html would be appreciated anyone out there as I don't have one to check things outfirsthand.... Thanks again for all your support - people like me couldn't get off the ground without you!........MtM

  • Can't see all tools in Photoshop Elements 11 on Mac

    I just got Photoshop Elements 11 for my mac today however I cant seem to use all the tools. The tool bar cuts off after the cookie cutter option in modify and I cant scroll down to reach the rest of the opions. Is there anything I can do to see the rest of the tools. Thanks in advance to anyone who can help me.

    Is this a first generation macbook air? If not, check that your screen resolution is where it should be, i.e., the highest possible pixel count, in system preferences>displays.

  • How can I print all events in iCal?

    Hello, I need to print all the events I have in 2013 on one page (using iCal). When I select a list, it prints all days, whether they have events or not. I only need to have a list of events in 2013. Is that possible to view or print in iCal ?

    Try typing "." without the exclamation points in the iCal search window. Then simply highlight all the entries > Edit/Delete

  • Can't sync all events and albums from iphoto 08 to ipod touch 4th generation using itunes

    Hi from San Juan! Just got my new ipod touch 4th generation, since my 2nd generation was stolen a couple of months ago, and when it finished its sync process, I noticed that out of my 16,000 + photos in iphoto, only 2,435 were synced. Tried again numerous times, changing options, ("selected albums and events", "all" etc,), but nothing worked. Ever since I've had my Mac, I've only used iphoto to download, organize and share my photo collection; same cameras also. With my previous ipod, the sync process ran smoothly, and always got ALL my albums and events under the "photos" icon of my ipod. What's happened? What's changed? I'll welcome suggestions and / or solutions. Thanks in advance. Sandra

    where on my computer am I suppose to make the individual picture files and have them to upload on my ipod touch.... I do have a photo library on my computer, but in the photo tab in itunes for the ipod touch and there is nothing checked for syncing, cause when I do check it it always says its going to replace everything i have in my photo library on my ipod touch.....  So how am i suppose to have it checked and have it NOT replace pictures on it????
    Also I cannot make more photo albums into my ipod touch, it just replaces the one album every time....
    I am very frustrated cause I have tried the manuals and the apple support help etc and nothing pertains to my exact issue.....
    Please if u could elaberate I would appreciate it alot..... 
    thank u

  • I want to view Calendar as List view on iphone 4s so that i can scroll thru all events

    I want to see List View in my calendar on iphone 4s... but it does not work since update.

    Open the Calendar app and (assuming you are using iOS 7.1) click the three parallel horizontal lines near the top.

  • How to handle key events in iphone

    I want to be able to detect physical keyboard (e.g. bluetooth) events in an iOS app.
    In Mac, there is a class NSEvent which handles both keyboard and mouse events, and in ios (iphone/ipad) the counterpart of NSEvent is UIEvent which handles only touch events. I know ios API does not provide this functionality, but how can i handle key events in iphone???

    in my application header part of the page is common of all page. header.jsff contains comandmenuItem named "proceduralhelp". if I click proceduralhelp a pop up opens .
    in my login page when first time I open popup and press escape popup is not closing.
    rest of the cases after login escpe will cose the popup.
    only on the loginpage that to for the first time it is not closing when pressing up on escape key. (then we click on close button. and once again open the popup in loginpage now if we press escape it works).
    Thanks,
    Raghavendra.

  • Handling SAP Events from CPS

    Hello ,
              is there anyway can we handle SAP events from CPS  , our scenario is if we schedule a job in SAP from CPS , the job in SAP is firing an SAP event based job , how can we get the status of event based job from SAP to CPS.
    Regards
    Raghu

    Hi Raghu,
    There are a few options here.
    You could monitor the SAP event based job in CPS, to see the status.
    You could also create the SAP event based job from CPS, then it is automatically monitored.
    The best would be to verify if you can simply put the two jobs in a CPS job chain. If the second job only waits for the event and does not do anything with the message of the event, this should be very easy. If the ABAP programs involved are custom developments, you could remove the event dependency and replace it with a CPS job chain too.
    Regards,
    Anton.

  • Brand new MacBook Pro can't handle 720p Video in iMovie?

    Well, my Black 2.0 GHz Core Duo MacBook has been replaced by the new 13" 2.26 Core 2 Duo MacBook Pro (I had to pay the difference) and I had it upgraded to 4GB of Ram and a 320GB Hard Drive!
    I use a Kodak z1085 IS Digital Camera that records videos in 720p quality. When I import them into iMovie '09, I get this message:
    This is the same thing that I got on my Core Duo MacBook. If I did not optimize the video, it would play choppy and could not keep up. On my new MacBook Pro, I still get this message saying that "my computer can't handle it." I can undersatnd my old Core Duo MacBook not being able to handle it, but when a brand new $2000 MacBook Pro can't handle 720p video, somthing has to be wrong here.
    Are there cretin specs that indicate what computer can handle what? I'm guessing that this MacBook Pro CAN handle it, but why am I still getting that message? Do I need a $10,000 Mac Pro Tower system to make it happy?
    Can anyone please explain this and help me out?
    Thanks,
    Scott

    +Well... for starters, the 2.26GHz MB Pro is not a $2,000 machine.+
    Sorry...$1.5 thousand. Still too much for a brand machine that isn't "powerful enough" to run software that came out before the computer did.
    +For all intents and purposes, it's an entry level notebook (despite the name "Pro")... with only slightly higher specifications than the white MacBook.+
    So its only slightly better then the model that can only handle solitaire or any other basic application? I find it odd Apple would include iLife if these machines can't handle all of the features that they are supposed to. Pro means professional. that means this machine should be able to handle PRO applications like Final Cut, etc. But how can it if it can't even handle iMovie! Not to mention they screwed us out of using the old version...so I am stuck using this version!
    +I'm not exactly sure what you mean when you say your black MacBook was replaced by a new 2.26GHz machine... but you had to pay the difference... It sounds like you were perhaps having problems with your MacBook and Apple allowed you to upgrade to the newest version paying something additional. If that's the case, it sounds like they were very generous as you had a first gen MacBook that was about three years old.+
    Yes that is exactly what happened. My Black MacBook had many issues. I sent it in for repair three times and even took it to an Apple store when I was on vacation. (don't have any apple stores where I live) All of these repairs did not fix the problems and they kept on coming! So they offered to just replace it. But they don't sell the Black MacBook anymore. Only the white...and I don't like the white (thats why I bought the black!) so that is when they offered me the MacBook Pro if I paid the difference. In which I did. So that is how I got my new MacBook Pro.
    +Are you saying that your video plays choppy on your new machine... or just that you get the message stating that it may play poorly?+
    Both....It shows that message, and does play somewhat choppy. Not as choppy as the old MacBook though.
    Like I said, I'd just like to know what Apple calls "good enough" so it doesn't display that warning.

  • Handle an event which accrued on another page?

    Hi,
    I'd like to know how can i handle an event which is accrued on another page.
    More info: Suppose I have two JSP pages "Main.jsp" & "Sub.jsp". There is a frame on Main.jsp and Sub.jsp will load on that frame.
    In brief same screen is included two JSP pages, Main.jsp & Sub.jsp.
    Now there is a button on Sub.jsp and i want to do an action on Main.jsp when that button clicked.
    Is that possible? How?

    Both Main.jsp and Sub.jsp are on the same screen. There is nothing to load.
    You can imagine that the screen is divided to two part. Up is Main.jsp & down is Sub.jsp. And both are loaded
    at the same time. Now a button which is located in Sub.jsp is clicked. I want to trap it at the Main.jsp and handle it.
    So, the question is How Main.jsp can sense(capture) that the button on Sub.jsp is clicked.
    please let me know if still is not clear.

Maybe you are looking for

  • Iphoto default library won't open

    I've been having iPhoto problems, and after all the research.... I've found that my computer STILL DOES have my photos!!! (hallelujah) I downloaded iPhoto Library Manager & the "missing photos" are in my "DEFAULT" folder on iphoto, containing a coupl

  • Post Moved Continual-problem-with-SMTP-passwor...

    Post Moved to Other BB Queries http://community.bt.com/t5/Other-BB-Queries/Continual-problem-with-SMTP-password-being-blocked/td-p/... If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply

  • Duplicate itunes in my ipad

    I have found I now have a couple duplicates songs in my iPad. One of them is functional and plays music, the other one when I tap it turns over and shows the tracks, but when I tap the track, nothing happens. These duplicates are from songs I have pu

  • When importing MPEG files into Premiere Pro CS3 the audio sequence is missing.

    We have two computers running Premiere Pro CS3.  Our computer most recently installed with PPCS3 will only import an audio sequence with the MPEG video file when I extract the file directly from the DVD.  When I take the video folder from the DVD and

  • Sales order: mass repeat of messages

    Hi everyone, preconditions: message are derived into sales orders, date/time = '4' (at posting). Sending of messages is working without any problems. The requirement is to find a way to repeat the messages - not single ones but large quantities. I ha