Problems with Toggle widget

Hi Everybody,
Iam trying to set the Toggle field to true or false in an array of rows
retrieved from the database. While in debug mode one can see the toggle
field being checked for a true value and unchecked for false, but during
the run time the same action does not take place.
Strange!!!, or may be because its my first forte project.
If you anybody has come across such a situation, please write back to
me.
Thanks in advance
Pamella.
Get Your Private, Free Email at http://www.hotmail.com

Had you mentioned that  you had searched the group - before posting.... I would have  had no need to offer that  options.
I trust others will not be put off offering suggestions to you, if your repsonse is going to be sarcastic.
Rest assured , I will bother  you again.

Similar Messages

  • Problems with the Widget "Text Ticker"

    Hello, I have a problem with the widget "Text ticker". I tried to put more then one text ticker on my site, but it doesn't work, when I look in Muse it looks like this:
    and when I look in the preview only the first text ticker works...maybe it is not possible to have more then one text ticker on one site?
    Thank you.

    It seems you are using the same name for all the ticker instances on page.
    You need to have unique names for each of the ticker you want on a single page. Tickers with duplicate names will not work.
    Cheers,
    Vikas

  • Problem with "Translation" Widget

    Hi all,
    i've got a problem with the translation widget; you can see an image here: http://tinypic.com/view.php?pic=432b9l5
    How can i solve the problem?
    Bye.
    Thanks.

    Hi.
    Try this: Open Terminal and type at the prompt:
    Killall Dock
    that will quit Dashboard and relaunch the Dock. Then go to User/Library/Preferences and trash:
    widget-com.apple.widget.translation.plist.
    Then go to User/Library/Caches/DashboardClient folder and trash the subfolders inside it (they are numbered 01, 04, etc. This will clear the Dashboard cache).
    Open Dashboard and verify if it works.
    MacMini G4 1.25GHz 1GB   Mac OS X (10.4.9)  

  • SCOM 2012 R2 Continued Problems with State Widget

    Hi All,
    Just want to see if anyone is seeing problems with the state widget in R2. Confirmed that if the criteria selection page is left blank, that the widget will render, if anything is selected it just loads and loads and loads finally with an error (follows,
    first). Corresponding error in event log (follows, second). I thought this was resolved with UR4?
    Error in console===============
    Microsoft.EnterpriseManagement.Common.UnknownDatabaseException:
    The query processor ran out of internal resources and could not produce a query
    plan. This is a rare event and only expected for extremely complex queries or
    queries that reference a very large number of tables or partitions. Please
    simplify the query. If you believe you have received this message in error,
    contact Customer Support Services for more information.
       at
    Microsoft.EnterpriseManagement.Common.Internal.ServiceProxy.HandleFault(String
    methodName, Message message)
       at
    Microsoft.EnterpriseManagement.Common.Internal.EntityObjectsServiceProxy.GetRelatedManagedEntitiesByManagedEntityTypesAndCriteriaWithInstanceQueryOptions(IList`1
    parentManagedEntityIds, Boolean recurse, IList`1 managedEntityTypeIds, IList`1
    managedEntityBaseTypeIds, IList`1 criterias, String languageCode,
    InstanceQueryOptions instanceQueryOptions)
       at
    Microsoft.EnterpriseManagement.InstancesManagement.GetRelatedObjectsInternal[T](ICollection`1
    instanceIds, ICollection`1 criteriaCollection, TraversalDepth traversalDepth,
    ObjectQueryOptions queryOptions)
       at
    Microsoft.EnterpriseManagement.Management.DataProviders.ManagedEntityProvider.GetContainedManagedEntities(IDataObjectCollection
    targetEntities, ICollection`1 recursionTypeNames, ICollection`1 baseTypeNames,
    String criteriaString, List`1 valueDefinitions, List`1 sortValueDefinitions,
    String typePropertyName, String typeWithIconPropertyName, Boolean
    propertyCollectionRequested)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.Presentation.DataAccess.DataProviderCommandMethodInvoker.Invoke()
       at
    Microsoft.EnterpriseManagement.Monitoring.DataProviders.RetryCommandExecutionStrategy.Invoke(IDataProviderCommandMethodInvoker
    invoker)
       at Microsoft.EnterpriseManagement.Presentation.DataAccess.DataProviderCommandMethod.Invoke(CoreDataGateway
    gateWay, DataCommand command)
       at
    Microsoft.EnterpriseManagement.Presentation.DataAccess.CoreDataGateway.ExecuteInternal[TResult](DataCommand
    command)
       at Microsoft.EnterpriseManagement.Presentation.DataAccess.CoreDataGateway.<ExecuteAsync>b__0[TResult](<>f__AnonymousType0`1
    data)
    Error in Event Log==============
    GetRelatedManagedEntitiesByManagedEntityTypesAndCriteriaWithInstanceQueryOptions
    for session ID uuid:9078152d-9ff1-4c68-a997-c8088a16a34c;id=5.<o:p></o:p>
    Exception
    message: The creator of this fault did not specify a Reason.<o:p></o:p>
    Full
    Exception:
    System.ServiceModel.FaultException`1[Microsoft.EnterpriseManagement.Common.UnknownDatabaseException]:
    The creator of this fault did not specify a Reason. (Fault Detail is equal to
    The query processor ran out of internal resources and could not produce a query
    plan. This is a rare event and only expected for extremely complex queries or
    queries that reference a very large number of tables or partitions. Please
    simplify the query. If you believe you have received this message in error,
    contact Customer Support Services for more information.).<o:p></o:p>
     <o:p></o:p>

    I am so sorry for my mistake. Below is the url.
    http://blogs.technet.com/b/scom_atlas/archive/2013/10/22/scom-2012-sp1-ur4-is-out.aspx
    Juke Chou
    TechNet Community Support

  • Problem with toggle button

    hi there... i have a problem with my toggle button that i created..
    the programme is simply like this. It's a virtual ticket machine where users can enter the number of tickets they want to buy and after which they can book their seats.
    for example, if user enters 4 tickets, he can only book 4 seats and so on.
    i've created a toggle button for the seats..
    here is my code..
         p3=new JPanel();
         b1=new JPanel();
         ActionListener listener1 = new b1();
         for (int i=1; i<=10;i++)
         JToggleButton button1 = new JToggleButton("A"+i);
         button1.addActionListener(listener1);
              b1.add(button1);
              p3.add(b1);
    this is my action listener for the buttons i've created
    public class b1 implements ActionListener
    public void actionPerformed(ActionEvent e)
         Object source = e.getSource();
         ta1.append(((JToggleButton) e.getSource()).getText()+"," );
         (when user deactivates the toggle button, how do i get the text area to clear)          
    any help will be greatly appreciated..=)

    Item Renderers are" recycled" by Flex as they scroll in and out of view. So when you change a button's selected state to true and then scroll around, that renderer ends up getting recycled to another item and causes this to look wrong.
    The trick is you have to make the item renderer update itself. there are many ways. One sure-fire way I tend to fall back on is to add a property to the data provider, then bind to that in the renderer-changing it as needed.
    1) When you set up your data provider, add a new property "toggled" as a boolean:
    private function init(event:Event):void
    //populate array with 50 items
    for (var i:uint=1; i<51; i++)
    itemAC.addItem({label:"B"+i, toggled:false});
    2) Now change your renderer, binding the selected property of the button to this new prop.
         Also, add a bit of code to the change event of the button:
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="150" height="150">
    <mx:Button id="btn" label="{data.label}" x="25" y="66" toggle="true" width="100"
        change="{data.toggled = btn.selected}" selected="{data.toggled}" >
    </mx:Button>
    </mx:Canvas>
    Result: the item renderer now looks to its data property to decide how to behave, and will have the proper state (selected or not) no matter if it gets recycled to another item in your data provider or not.
    HTH

  • Nokia C7- problems with social widget and CNN vide...

    Hi,
    I am using
    Nokia C7
    Release                PR1.2
    Software version 014.002
    Custon version    014.002.00.01
    I am having problems with my social widget and CNN video widget. I factory resetted my phone and my social widget was lost. I tried even the beta version of social but I am still in vain. The beta version showed me some error code and unable to install error on phone.I uninstalled the current version and installed the beta version but all was error. Fortunately I got my current version back from update.
    I unknowingly deleted something related to CNN from the application settings and the CNN video widget renamed itself to CNN Video apac. I tried many ways even installed the latest E7 version of CNN video but still in vain. I updated my phone. tiried to uninstall the CNN video application but it shows the error delete cancelled. What should I do..?? I update my phone regularly atill I'm in vain. Please help me dear friends..I want my phone to be as new as when I brought from the market..

    possible sollutions:
    1)
    because you hard reset try again now and get the 1.2 and try install this
    if will install succesfull then try the 1.3
    (if install error is coming again reboot device take out battery, back on battery and switch on and try install again)
    2)
    if not install or either download third party facebook and done (forget about the social from nokia)
    (the ones i mention if you want to try them are almost same as nokias social)
    4 good ones
    fb connect from ovi not in qt
    kasvopus written in qt
    and facebook from pixelpipe in qt is very fast
    also the fb from google v 1.0 works good and is almost the same but not in qt
    3)
    the same you are posting in here,....go to beta labs and have a section bug reports
    post same issue as here(there maybe a technician leave you answer officially)
    4)- or send the device for repair
    sorry i can not help more but if hard reset and still problem you may need to choice one of the 4 options

  • Transparency problems with Dashboard Widgets

    I installed Leopard on my MacBook and everything has been working well with the exception of some funkiness with my Dashboard widgets. There are a few widgets that the white text on them has changed from solid white test to transparent text with a white outline. I've got a screen shot here:
    Has anyone else run into this problem? Is there a way to fix this problem? Any thoughts on this would be greatly appreciated.
    Thanks!
    --Tim--

    Someone pointed out something that fixed it. There was a font name conflict that was bringing up an incorrect style of Helvetica Neue.

  • Any one having Flipping problems with their widgets?

    I have 3 computers, so far two have been been infected with this symptom. When you click the info button on the widgets that have it, it doesn't flip. I had to do an archive and install on my PowerMacG5. Does anyone have the same problem?
    Lets let Apple know! Lets let Apple Know! Lets let Apple know! Lets let Apple Know! Lets let Apple know! Lets let Apple Know! Lets let Apple know! Lets let Apple Know! Lets let Apple know! Lets let Apple Know!
    But in all seriousness, is this just me?

    Don't down grade, look just do an archive and install. Get your start up disks and restart your computer with disk one in it. when the screen goes black hold the option key. then the MacBook will start up with the disks. Follow the instructions. VERY IMPORTANT, WHEN YOU ARIVE AT THE PART AT WHERE YOU HAVE TO CHOOSE YOUR DISK, LOOK AT THE BOTTOM LEFT AND CLICK ADVANCED OR OPTIONS (WHAT EVER IT SAYS) CHECK ARCHIVE AND INSTAL. AND ALSO CHECK THAT PART ON THE BOTTOM, I DON'T REMEMBER EXACTLY WHAT IT SAYS, BUT ITS THERE. Then do continue. Now, just hang in there it should take less than an hour. Be advised, some widgets may be lost. those that aren't need to be updated. All apps need to be updated, as well as the OS. You could imagine how long it will take depending on the speed of the internet. Uh, I recommend you do this at night so that you can have it ready in the morning. (like I said, it depends on the internet speed) so I don't know exactly how long this will take. It will fix all your bugs though. But before doing this try disk Utility. Its under Utilities.
    You won't need to back up your system but it would be a good Idea to do so, Also if you can't archive and instal its okay to do the preselected one. BUT MAKE SURE THAT YOU REALLY CAN'T.
    Just ask if you have any more questions.

  • Problems with unzip widget New!  My Workflow InBox Adobe AIR Widget

    Hi,
    I just tried to download the new widget, but I was not able to unzip.
    Message:
    !   Y:\ablage\Download\My Workflow InBox Adobe AIR Widget - zip file.zip: The archive is either in unknown format or damaged
    I was using  WinRar 3.7 and WinRar 3.51
    Any suggestions?
    Thanks
    Katja

    Hey Noam,
    Thanks for your reply!
    In a bit of a stroke of luck, we have managed to fix the first issue - the video was simply placed too far down the page, and for some reason was creating extra space at the bottom. Moving it up the height of the widget fixes the issue!
    We are still experiencing the second issue however with the pages apearing white and displaced. This is now happening in Chrome too. You can see this here and in the screenshot below:
    I will email you the most up to date Muse file that is causing the problem above.
    Many thanks for your time,
    Dominic

  • Problem with accordion widget flashing open and shut when page loads

    why is it that my accordion widget flashes open and shut when the page is loading (see http://vincentballmusewebsite2013test.businesscatalyst.com/digital-illustration.html#.UVDr Ehx7JyII)  have tried everything to solve this, and Adobes customer service is terrible they don't get back to you when they say they will.
    Please help me someone,
    Thanks

    Thank you Zak for your help, I spent 5 hours going round in circles trying to fix that problem and that's all I needed to hear, a bit of honesty and integrity.and yes, Adobes terrible customer service has still not got back to after promising 2 level technical support to contact me last Monday, I wish there'd keep their promise
    Pamela, did you try my test website or my own website and if so my own has now no accordion widget on it and my test website may need you to try loading a few times to see if it really works or not, sometimes it does actually work even on a pc but most times not.
    thanks for you help too.

  • Problem with Accordion Widget INSIDE Sliding Panel Widget

    Hello,
    perhaps I should not do this, but I nested an Accordion
    Widget inside a Sliding Panels Widget:
    - There are eight Panels.
    - Each one contains a complete Accordion.
    The sliding works fine, and so does the Accordion animation,
    but the text inside the Accordion Panel Tabs won't move along, when
    a tab is activated. I need to hover the mouse over the accordion to
    make the panel texts appear again.
    Of course, when I un-nest the widgets and move the Accordion
    widget out of the Sliding Panel widget, everything is fine.
    My question is:
    - am I demanding "too much" by nesting the widgets?
    - or should this basically work, and the problem arises from
    rivalling scripts?
    Here is a link:
    Nested
    widgets Test
    The horizontal top menu will activate the sliding panels, but
    as of now only the leftmost menu item contains an Accordion (I know
    the CSS does not look nice yet).
    Is there anything I can optimise to get this to work?
    Thank you so much,
    Greetings, Jensen
    Edit: The problem does NOT occur in Firefox, but in
    Safari.

    Hi John,
    That is the expected behavior if the "Overlap items below" is unchecked. Please refer to the following link http://screencasteu.worldsecuresystems.com/aish/2013-08-21_1947.png. If you don't want the page to wiggle up and down, please check the box shown in the screenshot.
    Regards,
    Aish

  • XML data set problems with Accordion widget

    Hi,
    I have a dataset, which returns the data as shown below:
    <resultset>
    <result>
    <title>Title one<b>with parts of the title in
    bold</b></title>
    <otherAttributes/>
    </result>
    </resultset>
    As you can see, some of the nodes may have markups, such as
    <b> etc. I create the XML dataset as:
    var myDataset = new Spry.Data.XMLDataSet("/path/to/my/URL",
    "resultset/result");
    And in AccordionPanelTab, I use the title property as shown
    below.
    <div class="AccordionPanelTab">{title}</div>
    But this doesn't work. The Tab displays no titles. If I
    remove the <b/> in the <title> it works fine as
    expected. My problem is, some titles may have additional mark ups
    and some may not. How can I handle this problem?
    Any help is greatly appreciated.
    Cheers,
    Rag.

    Forgot to mention that the data comes from third party
    service providers, so I have no control over it. For ex: I cannot
    have title in a CDATA section.

  • Problem with News widget embedded video

    I have embedded a video in a news widget item and it plays but then if I move the cursor off the screen it stopped playing
    and if the cursor happens to scroll over another news event even though I haven't clicked on another event.
    This is quite annoying for the users -- Can this be fixed -- Thanks

    Hello Bertine,
    Could you please check if you are using Event as On click or on rollover in the widget properties?
    You can check it by clicking on the white arrow in Blue circle which comes up at the top right of the Widget when it is selected.
    The Event option should be selected as On Click if you want the other triggers to get active when clicked and not when roll overed.
    Please have a look at the screnshot :
    Hope this helps.
    Regards,
    Sachin

  • Problem with inserting widgets

    When I try to insert widgets I sometimes get the message (dialogue box) "Not a valid widget". Actually this happens most of the times.
    Can someone please tell me what is wrong?
    Kindly,
    Jacques

    Hi there
    It's usually best to insert widgets from the Widgets panel. Window > Widget
    If you click Insert > Widget you get a file browsing dialog. This dialog allows you to point at ANY SWF file. Not all SWF files are widgets. So I'm thinking you used this method and are pointing at perhaps SWF animations and expecting them to be widgets. Hence the message.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Problem with Alt Text output from thumbnail image of Lightbox widget

    I’m having a problem with the Lightbox widget not producing alternative text based on the image properties.  I’ve set ALT text for the image properties on both the larger Ligtbox image as well as the thumbnail.  But the HTML output from Muse does not include the ALT text on the thumbnail version of the image.  Here’s an example:
        <div class="popup_anchor">
           <div class="Thumb popup_element clearfix" id="u4409"><!-- group -->
            <a class="anchor_item grpelem" id="untitled"></a>
            <div class="grpelem" id="u4433"><!-- image -->
             <img id="u4433_img" src="/images/n0060292x292.jpg" alt="" width="292" height="292" />
    This may be a problem that came in a previous release of Muse.  I have a few older examples where ALT text is produced, but it’s no longer updated if I update the Image Properties.

    I'm seeing the same problem. Looks like a bug to me. Any ideas as to how we can get this on Adobe's bug fix list?

Maybe you are looking for

  • Save for web - animated gif problem PSE (Mac)

    Trying to save an animated gif using Save for Web dialogue box... works fine, except checkbox "Loop" and delay rate drop down box are highlighted (active) but can't be changed anyone know reason /  fix?

  • Hardware or software issue causing purple lines & no boot...

    I was watching a movie on my Mac Pro (2006) and suddenly the video stopped and purple lines went all over parts of the screen. I couldn't do anything, not even a force quit, I was forced to turn off the power. Upon restart, the Apple logo is showing

  • Error in" BAPI_GOODSMVT_CREATE"

    Hi All, Thanks For the reply, My main problem is when i post goods  GR for the <b>subcontracting PO</b>  then only the error occurs <b>"Of the required quantity of material TM1252-2020, 1.000 EA remain(s) open"</b> When i post the GR for Standard PO

  • BDC problem in F-30

    Dear All,          I am writing BDC on F-30. On the last screen where I post the document there the line items are displayed in a table control & I have to select one of them based on payment term condition. By making changes in configuration payment

  • Can OS X Yosemite version 10.10.2 run AE 5.0?

    Trying to get a definite answer with this basically wanted to know if their isn't any compatibility issue with OS X Yosemite 10.10.2 running after effects 5.0 anyone know? and thanks for any information