Adding an item to a List when clicking a WebPart Properties 'OK' button

Hi all,
I wonder if someone can help me. Im new to SharePoint Programming but learning slowly. 
I have a superb Web Part downloaded from Codeplex which essentially is a Countdown Timer in jQuery. (spCountdown) The code itself works perfectly however I want to tweak it, in what I thought would be a relatively easy thing to do.
In the Web Part properties of the solution, there is a textbox where you enter the Date/Time which you wish to set the countdown timer. When I click 'OK' to submit the WebPart, I would like the date value in the textbox to be added to a List as a new List
item. I've got the code to add the List item (or what im think is the correct code) but what I cant do is get the function to execute when the WebPart 'OK' button is clicked. 
Now, I have downloaded the source code which is available but I cant fathom how to hook the 'Update List Item' code onto the onclick event of the button (as I cant find an onclick event!). Any help to advise me what to do would be appreciated.
My code to add the date to the new List:
// create item in Deadline Configuration List
using (SPSite oSiteCollection = new SPSite(SPContext.Current.Site.Url))
using (SPWeb oWeb = oSiteCollection.OpenWeb())
SPList oList = oWeb.Lists["DLConfig"];
SPListItem oListItem = oList.Items.Add();
oListItem["Title"] = "Deadline Date";
oListItem["TaskDueDate"] = new DateTime(WebPart.TargetDate.Year, WebPart.TargetDate.Month, WebPart.TargetDate.Day);
oWeb.AllowUnsafeUpdates = true;
oListItem.Update();
Original WebPart Code:
SPCountdownWebpart.cs
using System;
using System.ComponentModel;
using System.Web.UI.WebControls.WebParts;
namespace SPCountdown.SPCountdownWebPart
[ToolboxItemAttribute(false)]
public class SPCountdownWebPart : WebPart
// Visual Studio might automatically update this path when you change the Visual Web Part project item.
private const string _ascxPath = @"~/_CONTROLTEMPLATES/SPCountdown/SPCountdownWebPart/SPCountdownWebPartUserControl.ascx";
protected override void CreateChildControls()
var control = Page.LoadControl(_ascxPath);
if (control != null)
((SPCountdownWebPartUserControl)control).WebPart = this;
Controls.Add(control);
[Category("Countdown Settings"),
Personalizable(PersonalizationScope.Shared),
WebBrowsable(true),
WebDisplayName("Target Date/Time"),
WebDescription("Please enter the target date/time for countdown.")]
public DateTime TargetDate { get; set; }
SPCountdownWebpartUserControl.cs
using System;
using System.Web.UI;
using Microsoft.SharePoint;
namespace SPCountdown.SPCountdownWebPart
public partial class SPCountdownWebPartUserControl : UserControl
public SPCountdownWebPart WebPart { get; set; }
public SPCountdownWebPartUserControl()
PreRender += SPCountdownWebPartUserControl_PreRender;
void SPCountdownWebPartUserControl_PreRender(object sender, EventArgs e)
// parse date from properties
var targetDateString = string.Format("{0},{1},{2},{3},{4},{5}",
WebPart.TargetDate.Year,
WebPart.TargetDate.Month - 1, //uses 0-based index
WebPart.TargetDate.Day,
WebPart.TargetDate.Hour,
WebPart.TargetDate.Minute,
WebPart.TargetDate.Second);
// js sources
const string jqueryScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery-1.10.2.min.js'></script>";
const string countdownScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery.countdown.min.js'></script>";
// create javascript implementing countdown
const string jsCountdownFormat = "<script type='text/javascript'>$(function () {{var targetDate = new Date({0});$('#defaultCountdown').countdown({{until: targetDate}});}});</script>";
var jsCountdown = string.Format(jsCountdownFormat, targetDateString);
// register client scripts
var cs = Page.ClientScript;
if (!cs.IsClientScriptBlockRegistered("jQuery"))
cs.RegisterClientScriptBlock(
GetType(),
"jQuery",
jqueryScript);
if (!cs.IsClientScriptBlockRegistered("jsCountdownScript"))
cs.RegisterClientScriptBlock(
GetType(),
"jsCountdownScript",
countdownScript);
if (!cs.IsClientScriptBlockRegistered("jsCountdown"))
cs.RegisterClientScriptBlock(
GetType(),
"jsCountdown",
jsCountdown);
protected void Page_Load(object sender, EventArgs e)
Can anyone help me with where I need to implement my code to get the List Item to be created when the Web Part properties are set?
Thanks in advance.
Rick Lister
-=Stylus=-

Hi,
Please refer below link regarding web part custom properties,
I think you need to write code under ApplyChanges() Method.I am not sure. Just try it once.
http://sharepointkitchen.blogspot.in/2014/10/custom-web-part-properties-approach-2.html
Don't forget to mark it as an Answer if it resolves your problem or Vote Me if it useful.
Mahesh

Similar Messages

  • How to create new subsite while adding new item to the list by using javascript?

    hi,
    I hav a task ie, when I add item to the list then subsite will create with that list item title and description . So By using javascript, I have to create subsite while adding new item to the list.
    Help me to solve this.
    Thank you, 

    Is your item getting added through Javascript client object model ? If yes, you can write in the success delegate of your list creation method the logic to create the subsite.
    function CreateListItem()
    var clientContext = new SP.ClientContext.get_current();
    var oList = clientContext.get_web().get_lists().getByTitle('List Name');
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', 'My New Item!');
    oListItem.set_item('Body', 'Hello World!');
    oListItem.update();
    clientContext.load(oListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.CreateListItemOnSuccess), Function.createDelegate(this, this.onQueryFailed));
    function CreateListItemOnSuccess() {
    var subsiteTitle = oListItem.get_item('Title');
    //Logic to create a subsite
    function onQueryFailed(sender, args) {
    I have added a sample flow for the above scenario. Have a look at the following lnk for how you can craete a subsite using ecmascript.
    http://ravisoftltd.wordpress.com/2013/03/06/sharepoint-2010-create-site-with-ecma-script-with/
    Geetanjali Arora | My blogs |

  • Unselect Spark List when clicking in the empty area?

    Hi there.
    I'm wondering if it's possible to unselect a Spark List when clicking in the empty area?
    I've attached this function to the list's click event:
    protected function list_clickHandler(event:MouseEvent):void
        list.selectedIndex = -1;
    But the list gets unselected even if I click on a item in the list. Is there a way to prevent the event when clicking on an item?
    Thanks a lot!:)

    Hi
    It's because the event bubbles all the way up. You have to explicit stop the event doing so.
    You can do it within an "item_clickHandler(ev:Event)" where you can stop propagation via the Event stopImmediatePropagation or stopPropagation methodes...

  • Because when clicking in the in a button and to read the Database

    Because when clicking in the in a button and to read the Database
    is the checkbox false:?
      if (sociosDataProvider1.cursorFirst())
                   if (checkbox1.isChecked())
                        body1.setOnLoad("alert('Cadastro realizado com sucesso'); document.forms[0].elements[0].focus()");                       }
           while (sociosDataProvider1.cursorNext())
            if (checkbox1.isChecked())
                            body1.setOnLoad("alert('Cadastro realizado com sucesso'); document.forms[0].elements[0].focus()");               
      

    Do I need to read the column or the checkbox?
    Help, Help .. hehehehehe
    Please hehehehe

  • Error when clicked on "Existing roles/groups" button in CUP

    Can you guys please help in resolving the following issues I am facing currently.
    CUP reports an error saying " Action failed" when clicked on  "Existing Roles/Groups" button in CUP request form.
    Below is the log
    2010-03-25 10:21:16,762 [SAPEngine_Application_Thread[impl:3]_2] ERROR com.sap.mw.jco.JCO$Exception: (127) JCO_ERROR_FIELD_NOT_FOUND: Field EXP_ROLES_FLAG not a member of INPUT
    com.sap.mw.jco.JCO$Exception: (127) JCO_ERROR_FIELD_NOT_FOUND: Field EXP_ROLES_FLAG not a member of INPUT
         at com.sap.mw.jco.JCO$MetaData.indexOf(JCO.java:9566)
         at com.sap.mw.jco.JCO$Record.setValue(JCO.java:14956)
         at com.virsa.ae.service.sap.RoleProfileDAO.findRoleProfByUser(RoleProfileDAO.java:110)
         at com.virsa.ae.search.bo.SearchRolesBO.searchExistingRoles(SearchRolesBO.java:580)
         at com.virsa.ae.search.actions.SearchRolesAction.loadExistingRolesHandler(SearchRolesAction.java:1610)
         at com.virsa.ae.search.actions.SearchRolesAction.execute(SearchRolesAction.java:372)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:295)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:431)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:461)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

    Hi Anand,
    "Action Failed" error for "Exisitng Roles/Groups" comes up when Support Pack level of frontend(JAVA) and backend(ABAP) RTA are not synchronized. It happens mostly with HR RTA.
    Please follow the SAP Note below to make sure your SP's are in Sync.
    Note 1352498 - Support Pack Numbering - GRC Access Control
    Best Regards,
    Sirish Gullapalli.

  • Non-hidden login items cannot be deselected when clicking desktop

    I have 2 login items (terminal and Firefox) if either or both is not hidden then after logging in I cannot get the Finder menu bar to appear when clicking the desktop background. If both are hidden then I can get the Finder menu to so appear.
    This just seems like a silly bug to me. I looked in vain for how to report this to Apple but was unable to find out how to (I am registered on ADC but haven't looked there yet)

    To report bugs to apple, go to http://www.apple.com/feedback/ and select your product (in this case OS X). Select Bug Report under feedback type and include all of the details. As for the actual problem...I have no idea why it is happening!

  • Error when clicking on template properties

    When I go to some pages of the same template style and click
    on template properties I get the following error:
    "The template that you're trying to apply does not allow
    changes outside the <html> tag. This document contains code
    outside the <html> tag, which will be lost by applying the
    template."
    I originally received this error on all templates. After
    uninstalling and reinstalling it worked for some templates, but not
    others. I uninstalled and reinstalled again, but I still get this
    error.
    This is an example of the pages I'm trying to edit.
    http://72.52.232.231/advocacy.php
    This is an example of a page that does work.

    HI,
    Please let us know what template is this php page designed
    on. Is it a dreamweaver template.
    Thanks,

  • QT Pro 7.4.0.91 crashes when clicking on export Compressor Settings button

    Just upgraded to 7.4.0.91 from 6.5.
    Initial launch of QT was to export a standard NTSC-DV encoded movie to web size using h264. Clicked Export, set Movie to QT Movie, clicked Options, clicked Size, set to 480 x 270 (widecreen aspect ratio), clicked Settings to select and config compressor... *>< POOF ><* QT disappears! Not even a "send crash report to M$."
    So, I uninstalled QT, cleaned registry using CCcleaner, then RegScrub, then RegCleaner. Finally manually deleted all remaining traces of "quicktime" and reran registry cleaners. Everything clean. Reinstalled QT, entered Pro key, and did the export again... *>< POOF ><* the instant I click on the compressor settings button.
    WHY? Why? why?
    I've NEVER EVER had any trouble like this on this machine with QT!

    A few "pages" of topics "down" is a similar thread about the same issue. Since it seems to be a recurring problem for many, I don't see any harm in reviving the topic under a new thread.
    Here's what user krivel had to say on Oct 24, 2007 6:35 PM by for some like me it also works on XP 32.
    "Ok, behold...I have a fix!!! on Win64... go to "Edit>Preferences>Quicktime Preferences" and click on the "Advanced" tab. Set the "video" to "safe mode (GDI only)". This fixed any crashing I had with quicktime, quicktime in Firefox, quicktime pro exporting and even fixed my problems with Sorenson Squeeze."
    Thanks for posting your "fix" Krivel!

  • Applescript editor error - "can't get item 1 of false" when clicking cancel to close window.

    Hello
    I have made my first ever app which opens a webpage, its very basic but when I click the cancel button to close the page I get an error pop up saying can't get item 1 of false. I have looked it up and tried a few suggestions but the error just changes instead of exiting the window like it should
    The code looks like this, I am wondering if anyone has any suggestions on how to fix this ...
    --create the dialog list
    set item_list to {"Google"}
    set item_selected_array to (choose from list item_list with title "Google app" with prompt "To select the webpage, select it from the list and then click Ok" cancel button name "Cancel")
    set item_selected to item 1 of item_selected_array
    --google
    if item_selected = "google" then
              try
                        tell application "Safari" to launch
                        tell application "Safari" to activate
                        tell application "Safari" to open location "http://www.google.com"
              end try
    end if
    Thanks for looking and sorry if this is in the wrong section

    The choose from list command will return a list of items chosen (even if there is only one) or the boolean false if the cancel button is pressed, so you just need to check for the cancel result.  Since you are only selecting one item, one way would be to coerce the result to text (since you need to get the choice from the list anyay) and compare that - note that you don't need to target Safari for the open location command, since it is from Standard Additions.
    set item_list to {"Google"}
    set theChoice to (choose from list item_list with title "Google app" with prompt "To select the webpage, select it from the list and then click Ok" cancel button name "Cancel") as text
    if theChoice is "false" then error number -128 -- cancel
    if theChoice = "google" then --google
      open location "http://www.google.com"
    end if

  • Display poplist from top of list when clicked?

    I have a list item, a poplist, with a number of items which cannot all be viewed at the same time so the user has to scroll through the list to find the required item. My problem is, when displaying the list it always shows the last n entries so the user has to scroll up, but I would rather it showed the first n entries so the user could then scroll down. I want to do this as the list is in order of precedence so I would rather the user saw the highest precedence first and as they scrolled down the precedence got lower.
    Any ideas how I could achieve this?
    Thanks
    Richard

    Hi Frank
    If I have a list as follows:
    a
    b
    c
    d
    e
    The poplist will display c,d and e first so the user would have to scroll up to see a and b. I would like it to display a,b and c and then have the user scroll down to see d and e. I would like to keep the order as it is as it makes sense to the user to scroll down to get to a lower precedence item.
    I hope you get what I mean. I don't think there is a solution to this as I think (?) its a windows thing.
    Richard

  • Extremely slow when clicking the Specified Order - New button.

    Post Author: cavenger
    CA Forum: Charts and Graphs
    I often use the specified order option on charts to group pieces of information together. When I click the New button for a new specitied order or if I try to edit an existing specified order, it takes forever for the dialog to come up. I have experienced this problem in both Crystal 9 and 10 installed on different machines. Is there some sort of option I am missing? Maybe something that tells it to query the database. I have no idea why it would do a query at that point, it is not like I am using a select list of options from a drop down where it would need to retrieve the values. The reason this is a problem is that it takes me forever to run reports when I am asked to an add hoc report that requires this sort of customization. VERY frustrating....TIA for all help.

    Post Author: RichardN
    CA Forum: Charts and Graphs
    I'm having the exact same problem.  I think what's most infuriating about this is after waiting several minutes for the "Specified Order" Tab to display, I have to wait several more minutes after I click on the New button.  This happens everytime I click the New button, and I have eight groups to create. 
    I'm using Crystal Report XI Release 2 on Vista with 2 GB of RAM trying to access a Progress database using an ODBC connection. 
    Is there ANYTHING I can do to speed this up?  Is it possible to use the "Formula Editor" to essentially write out the information the Group Options window is creating?
    Thank you,
    R

  • System Preferences crashes when clicking Mouse & Keyboard properties

    Just as the subject described above, the issue is something like this:
    I open the System Preferences and click the Mouse & Keyboard properties, and then that app freezes in the "loading" step before showing the properties of it.
    If I go back and click it again, then the window doesn't show anything.
    Does anyone had this trouble before? Is there any soltion for it?
    Thanks a lot.
    AGUSTIN

    Full detailed error log when finder crashes:
    Date/Time: 2006-06-21 01:51:00.622 -0400
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [65]
    Version: 10.4.5 (10.4.5)
    Build Version: 2
    Project Name: Finder_FE
    Source Version: 5292600
    PID: 88
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x000000b0
    Thread 0 Crashed:
    0 com.apple.finder 0x0006d018 0x1000 + 442392
    1 com.apple.finder 0x0006c92c 0x1000 + 440620
    2 com.apple.finder 0x0005aec0 0x1000 + 368320
    3 com.apple.finder 0x00261ac8 dyldstubOpenADefaultComponent + 432408
    4 com.apple.finder 0x00261ab0 dyldstubOpenADefaultComponent + 432384
    5 com.apple.finder 0x0005a5cc 0x1000 + 366028
    6 com.apple.finder 0x0005a454 0x1000 + 365652
    7 com.apple.finder 0x00069868 0x1000 + 428136
    8 com.apple.finder 0x000691f0 0x1000 + 426480
    9 com.apple.finder 0x00059fbc 0x1000 + 364476
    10 com.apple.finder 0x00069034 0x1000 + 426036
    11 com.apple.finder 0x00068784 0x1000 + 423812
    12 com.apple.finder 0x00068624 0x1000 + 423460
    13 com.apple.finder 0x00068398 0x1000 + 422808
    14 com.apple.finder 0x0020eea4 dyldstubOpenADefaultComponent + 93428
    15 com.apple.finder 0x00018b9c 0x1000 + 97180
    16 com.apple.finder 0x0000b7c4 0x1000 + 42948
    17 com.apple.finder 0x0000b700 0x1000 + 42752
    18 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    19 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    20 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    21 com.apple.finder 0x0000b804 0x1000 + 43012
    22 com.apple.finder 0x0000b700 0x1000 + 42752
    23 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    24 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    25 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    26 com.apple.HIToolbox 0x9329b4fc SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 380
    27 com.apple.HIToolbox 0x932cb264 SendMenuItemSelectedEvent + 136
    28 com.apple.HIToolbox 0x932cb16c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 144
    29 com.apple.HIToolbox 0x932eccfc PopUpMenuSelectCore(MenuData*, Point, double, Point, GDevice**, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 480
    30 com.apple.HIToolbox 0x932ecad0 _HandlePopUpMenuSelection5 + 364
    31 com.apple.HIToolbox 0x932f1c80 DisplayContextualChoicesInMenu(OpaqueMenuRef*, Point, OpaqueContextualMenuItemsRef*, unsigned long*) + 220
    32 com.apple.HIToolbox 0x932f0774 ContextualMenuSelect + 364
    33 com.apple.finder 0x000d0ea0 0x1000 + 851616
    34 com.apple.finder 0x000d1098 0x1000 + 852120
    35 com.apple.finder 0x000a413c 0x1000 + 667964
    36 com.apple.finder 0x0000c4b8 0x1000 + 46264
    37 com.apple.finder 0x0000e534 0x1000 + 54580
    38 com.apple.finder 0x0000b804 0x1000 + 43012
    39 com.apple.finder 0x0000b700 0x1000 + 42752
    40 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    41 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    42 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    43 com.apple.HIToolbox 0x932b0c0c HIView::Click(OpaqueEventRef*) + 280
    44 com.apple.HIToolbox 0x932b0ad8 HIViewClick + 56
    45 com.apple.HIToolbox 0x932b0a84 HandleClickAsHIView + 156
    46 com.apple.HIToolbox 0x932b03f8 HandleWindowClick + 516
    47 com.apple.HIToolbox 0x932afe88 HandleMouseEvent + 456
    48 com.apple.HIToolbox 0x9325f080 StandardWindowEventHandler + 148
    49 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    50 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    51 com.apple.HIToolbox 0x9325baf8 CallNextEventHandler + 60
    52 com.apple.finder 0x00049b3c 0x1000 + 297788
    53 com.apple.finder 0x00019310 0x1000 + 99088
    54 com.apple.finder 0x00018c64 0x1000 + 97380
    55 com.apple.finder 0x0000b804 0x1000 + 43012
    56 com.apple.finder 0x0000b700 0x1000 + 42752
    57 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    58 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    59 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    60 com.apple.HIToolbox 0x932aee58 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    61 com.apple.HIToolbox 0x934119c8 HandleMouseEvent(OpaqueEventRef*) + 368
    62 com.apple.HIToolbox 0x93222ff8 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    63 com.apple.HIToolbox 0x9321c9e4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    64 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    65 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    66 com.apple.HIToolbox 0x932639a0 ToolboxEventDispatcher + 92
    67 com.apple.HIToolbox 0x9326392c HLTBEventDispatcher + 16
    68 com.apple.HIToolbox 0x93261ee4 RunApplicationEventLoop + 148
    69 com.apple.finder 0x000070b4 0x1000 + 24756
    70 com.apple.finder 0x00004cdc 0x1000 + 15580
    71 com.apple.finder 0x000932ac 0x1000 + 598700
    72 com.apple.finder 0x00093154 0x1000 + 598356
    Thread 1:
    0 libSystem.B.dylib 0x9002edcc kevent + 12
    1 com.apple.DesktopServices 0x9288a2b0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc9450 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x9288a92c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.unsanity.ape 0xc0001b74 _apeagent + 296
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000000006d018 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44822244 xer: 0x0000000000000006 lr: 0x000000000006c92c ctr: 0x00000000900036b8
    r0: 0x000000000006c92c r1: 0x00000000bfffceb0 r2: 0x000000000039df28 r3: 0x0000000000000000
    r4: 0x00000000006e1950 r5: 0x00000000bfffcda0 r6: 0x0000000000000001 r7: 0x0000000000000006
    r8: 0x0000000000000006 r9: 0x0000000000000069 r10: 0x0000000000701c32 r11: 0x0000000044822242
    r12: 0x00000000900036b8 r13: 0x0000000000000004 r14: 0x0000000000000000 r15: 0x00000000a321c4f8
    r16: 0x000000000060a3c0 r17: 0x00000000bfffde90 r18: 0x00000000636d6473 r19: 0x0000000000000001
    r20: 0x00000000006adc30 r21: 0x00000000ffffd96e r22: 0x00000000bfffda60 r23: 0x0000000000000001
    r24: 0x00000000003a0000 r25: 0x00000000003a0000 r26: 0x0000000000320000 r27: 0x0000000000320000
    r28: 0x00000000006e1948 r29: 0x00000000006cb9d4 r30: 0x0000000000000000 r31: 0x00000000006e1950
    Binary Images Description:
    0x1000 - 0x31dfff com.apple.finder 10.4.5 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x5f7000 - 0x5f9fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x753000 - 0x770fff com.unsanity.silk 2.1.3 /Library/Application Enhancers/Silk.ape/Contents/MacOS/Silk
    0x786000 - 0x7b5fff com.unsanity.shapeshifter ShapeShifter Version 2.2 (2.2) /Library/Application Enhancers/ShapeShifter.ape/Contents/MacOS/ShapeShifter
    0x17ba000 - 0x17bafff com.apple.SpotLightCM 1.0 (121.20.2) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x47cc000 - 0x47cefff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x47d1000 - 0x47d5fff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x9026dfff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9029a000 - 0x9034bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9037a000 - 0x90734fff com.apple.CoreGraphics 1.258.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907c1000 - 0x9089afff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908e3000 - 0x908e3fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e5000 - 0x909e7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a41000 - 0x90ac5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aef000 - 0x90b5dfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b74000 - 0x90b86fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8d000 - 0x90e65fff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ecb000 - 0x90f4bfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f95000 - 0x90fd6fff com.apple.CFNetwork 4.0 (129.16) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90feb000 - 0x91003fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91013000 - 0x91094fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910da000 - 0x91104fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91115000 - 0x91123fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91126000 - 0x912e9fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913ec000 - 0x913f5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913fc000 - 0x91423fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91436000 - 0x91441fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91446000 - 0x91466fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9146c000 - 0x91474fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91478000 - 0x914f3fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91530000 - 0x91530fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91532000 - 0x9156afff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91585000 - 0x91652fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x916a7000 - 0x91738fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9177f000 - 0x91836fff com.apple.QD 3.8.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91873000 - 0x918d1fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ff000 - 0x91923fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91937000 - 0x9195cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9196f000 - 0x919b1fff com.apple.LaunchServices 178 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x919cd000 - 0x919e1fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ef000 - 0x91a2efff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a44000 - 0x91b0cfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b5a000 - 0x91b6ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b74000 - 0x91b91fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b96000 - 0x91c05fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c1c000 - 0x91c20fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c22000 - 0x91c69fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c6e000 - 0x91cabfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cb2000 - 0x91ccbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cd0000 - 0x91cd3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cd5000 - 0x91cd5fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd7000 - 0x91db7fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91dbf000 - 0x91ddefff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e4a000 - 0x91eb8fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ec3000 - 0x91f57fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f71000 - 0x924f9fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9252c000 - 0x92857fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92887000 - 0x9290ffff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92950000 - 0x92b7bfff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c99000 - 0x92d77fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d97000 - 0x92e85fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e97000 - 0x92eb5fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ec0000 - 0x92f1afff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f38000 - 0x92f38fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f3a000 - 0x92f4efff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f66000 - 0x92f76fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f82000 - 0x92f97fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92fa9000 - 0x93030fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93044000 - 0x9304ffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93059000 - 0x93086fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930a0000 - 0x930b0fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930bc000 - 0x93122fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93153000 - 0x931a2fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931d0000 - 0x931edfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ff000 - 0x9320cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93215000 - 0x93522fff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93671000 - 0x9367dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936f5000 - 0x936f5fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936f7000 - 0x93d29fff com.apple.AppKit 6.4.6 (824.38) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940b6000 - 0x94126fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9415f000 - 0x94229fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9427d000 - 0x9427dfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9427f000 - 0x94433fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94486000 - 0x944c3fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944cb000 - 0x9451bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9455b000 - 0x9459ffff com.apple.bom 8.4 (86.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x946be000 - 0x946cdfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946d5000 - 0x946e1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94727000 - 0x9473ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94746000 - 0x949fafff com.apple.QuickTime 7.1.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94abe000 - 0x94b2ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e5a000 - 0x94e60fff com.apple.filesync 3.0.4 (99.8) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96960000 - 0x96a03fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerBook6,5, BootROM 4.8.7f1, 1 processors, PowerPC G4 (1.2), 1.33 GHz, 512 MB
    Graphics: ATI Mobility Radeon 9200, ATY,RV280M9+, AGP, 32 MB
    Memory Module: DIMM0/BUILT-IN, 256 MB, built-in, built-in
    Memory Module: DIMM1/J7, 256 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Parallel ATA Device: MATSHITACD-RW CW-8124,
    Parallel ATA Device: FUJITSU MHT2060AT, 55.89 GB

  • Flex 2-14 keyboard sensitivity when clicking on the edge of button

    Hi
    I own a new FLEX 2-14 Ultrabook.
    I have a problem with some keys on the keyboad.
    When I typing fast, I sometimes clicking on the edge of the letter button on the keyboard.
    For most button there's no problems at all, but for very few buttons, such as 'T' letter, the keyboard is not always getting the click (probably not sensitive enough). as a results, I get words with missing letters.
    I send this to the service, they checked and said that all the FLEX 2-14 in the world are like this, and there's nothing they can do.
    I search the net, and I did not find any complains or any similar problems.
    From my experience (as a computer guy), This is a totally hardware issue.
    and I ask, Do you also have this problem,
    when gently clicking the 'T' button on the corners will randomly not catch the clicks about 40% of the time ?
    Thanks
    Oren

    Hi Oren,  I also have had this problem, and this IS a design error which makes only the lower half of the key usable. Another thing is that I come from a Keyboard with the square keys, and I am used to hitting the key anywhere will produce a letter on the screen. The Lenovo Flex 2 14 is using chiclets /island based keys and by design very different.As a result I had to practice with this new keyboard, and after a few days (3-5) I wasn't making as much typing mistakes as when I first bought it. And now I barely miss a letter. (Also I challenged myself to "Typing of the Dead" game which helped enormously ) I would not say that this keyboard is unsuable, but rather something that you have to be determined to use. Because all in all the Lenovo Flex 2 14 is a pretty cool computer with most of the stuff anyone would need and a good price too.  FLEX 3 Coming soon!

  • Firefox 14 - How to have my start page launched when clicking on the 'new tab'-button?

    I want to my startpage (Google) launched with clicking on the + Tab at the top. However,I donot want another plug-in added.
    Can this be configured one way or the other?
    TIA
    =

    Hi tkpeters,
    Please see [https://support.mozilla.org/en-US/kb/removing-babylon-searchqu-or-mystart this]. Mystart & incredibar could also come bundled with another add-on, or another entirely different Windows application and the exact names may not be always obvious in Firefox '''Tools''' ('''Alt''' + '''T''') > '''Add-ons''', or the Windows OS '''Control Panel''' > '''Programs and features'''.
    You can also [https://support.mozilla.org/en-US/questions/new/desktop start a new thread] which would help to provide specific details relevant to your configuration/issue.

  • Second list of items from selected item in first list

    Hi all,
    I have 2 dropdown lists in my jsp page. i am retrieving data from database for my first list box. the second list box data should be displayed when user select an item from the first list. the selected item from first list is necessary to get another list of items in second list. i dont want to use any buttons or submits. i want to redirect the data to the same page to get another list when user click one option from first list. Thanks in advance for any suggestion.

    use ajax or store the data in javascript array

Maybe you are looking for

  • E-mails duplicated

    When I log into my e-mails in windows mail I get a duplicate set of addresses resulting in double amounts of e-mails .. Any solutions please most welcome.. Echo69

  • Adding JS/CSS clock to website

    I want to add this clock to my website, made in Muse. Is this possible to do? Would anyone be up for helping me, please? http://www.paulrhayes.com/2009-03/an-analogue-clock-using-only-css/ If not possible, is there a close alternative? Thanks

  • Essbase Errors

    Hi Team, Installed database 11g R2 (11.2.0.1.0) and obiee11g(11.1.1.7.0) 64bit on Red hat linux environment. when open the obiee/em and start the Essbase server its shows the below error but opmnctl status "Alive" Processes in Instance: instance1 ---

  • Flash Charts not working after 3.1 install

    I installed Apex 3.1 and ran the sample application. Everything seems to work fine except the chart page. I get some lines but no graph. I am using the PL/SQL gateway if that makes a difference. This is the first time I've not used the HTTP server. H

  • Lost playlists, Library listings on a computer, but have them on iphone

    Aright, I am really getting sick of iTunes 9.2. This is the 3rd time this has happened and it is making rethink my decision to buy anything dealing with itunes. itunes has started up and I am staring at a blank music library, blank podcast library an