Cclick listeners not wokring c#

Hi All ,
I have posted a question in stack overflow .
Can any one please check it and provide me the solution if there is any 
http://stackoverflow.com/questions/28728666/click-listeners-not-working-in-windows-phone-c-sharp

Please post the content of your question here if you want help in these forums. In your StackOverflow post it isn't clear where the problem is: are the click handlers not firing at all or are they firing but the code in the handler isn't working? What does
your Xaml look like? etc.
At the Xaml layer take a look at the
How to create a base camera app for Windows Phone 8 documentation.
For Cordova questions the Visual Studio Tools for Apache Cordova team watches the visual-studio-cordova tag on StackOverflow.

Similar Messages

  • To display consecutive words from an array on a keypress. Event listeners not working.

    I need to display a series of words consecutively on a black background. A new word presented each time the Enter key is pressed (It is necessary that its the same key each time i.e the Enter Key). The words are arranged in an array. I have created a function for each Keypress and a listener. Also, as the previous word is replaced by the next, I have a removeChild() to get rid of the the last word.
    I have a removeEventListener set up also, to avoid any problems with the listeners. I have been at this a long time without sucess. It must be a listener problem (i.e I have not got the listeners focussed properly?) or a display problem. It only ever displays one word. Please see below code for the display of two of the words from the array which is called cvcwords. The main problem is that the words do not display one after the other (indeed not at all, except for the first one) when the enter key is pressed. Very much as a powerpoint presentation would, thats the idea anyway. I have just a sample of the code below. any help appreciated.
    var cvcwords : Array = ["bad", "mod", "hud", "mit", "sat", "fog", "puc",];
    this.stage.addEventListener(KeyboardEvent.KEY_DOWN, modKeyDown);
                                  function modKeyDown(e : KeyboardEvent) : void {
                                            if (e.keyCode == Keyboard.ENTER) {
                                                      removeChild(myText);               // to remove previous word from screen
                                                      myText.text = cvcwords[1];        //to display element one of the array
                                                      addChild(myText);
                                            } else if (e.keyCode == Keyboard.SPACE) { //this is for another seperate option
                                                      myText.text = "try again";
                                                      addChild(myText);
                   this.stage.removeEventListener(KeyboardEvent.KEY_DOWN, modKeyDown);
                                  this.stage.addEventListener(KeyboardEvent.KEY_DOWN, hudKeyDown);
                                  function hudKeyDown(e : KeyboardEvent) : void {
                                            if (e.keyCode == Keyboard.ENTER) {
                                                      removeChild(myText);  //to remove previous word from the screen      
                                                      myText.text = cvcwords[2];
                                                      addChild(myText);
                                            } else if (e.keyCode == Keyboard.SPACE) {
                                                      myText.text = "do again";
                                                      addChild(myText);
                   this.stage.removeEventListener(KeyboardEvent.KEY_DOWN, hudKeyDown);

    Based on what I see of your code, the following is all you might need...
    var cvcwords : Array = ["bad", "mod", "hud", "mit", "sat", "fog", "puc",];
    var counter:int = 0;
    stage.addEventListener(KeyboardEvent.KEY_DOWN, modKeyDown);
    function modKeyDown(e : KeyboardEvent) : void {
        if (e.keyCode == Keyboard.ENTER) {
            myText.text = cvcwords[counter];      
            counter++;
        } else if (e.keyCode == Keyboard.SPACE) {
            myText.text = "try again";
            addChild(myText);
            stage.removeEventListener(KeyboardEvent.KEY_DOWN, modKeyDown);
    When you test this in Flash, in the player you need to be sure to select the Diable Keyboard Shortcuts option found under the Control option in the top toolbar
    If you really mean to have them try again, you probably do not want to remove the event listener

  • Listeners not working on refreshing View

    Hi all
    I have an application( Virtual WareHouse Monitor) which reads data froma text file and accordingly it generates a 3D view of the warehoue.
    Actually when i reopen other new text file on my application , although the 3D view is displayed properly but for this re-opend files listeners are not working.However they were working for the first file.
    I have used this code to refresh scene before re-opening a file if other file is previously open.
    // removes branchgroup which use to show previous data
    sceneBG.removeChild(warehouseBG);
              sceneBG.removeChild(stockBG);
    // add new data and objects
              sceneBG.addChild(setWarehouseObjects());
              sceneBG.addChild(refreshWarehouseStock());
    It results in displaying 3D view for new file but mouse and keyboard listeners do not work.However, Picking works perfectly.
    Do i need to remove listeners also while refreshing the scene?

    I tried to remove listeners and register it with new instances but still it does not works.

  • Listeners not firing

    Gurus,
    Facing this kind of issue quite often now
    I have a page with some selectOneChoice, whose on valueChangeListener I am doing some activity. valueChange listener is firing for one selectOneChoice and not for other.
    Faced something similar with popup, buttons in af:table etc. The code is working in one page and not working in some other page.
    <af:selectOneChoice label="Not Updated"
                                                        value="#{viewScope.opportunityManagement.notUpdated}"
                                                        id="soc1"
                                                        unselectedLabel="Select"
                                                        autoSubmit="true"
                                                        valueChangeListener="#{viewScope.opportunityManagement.changeNotUpdated}">
                                      <f:selectItems value="#{viewScope.opportunityManagement.notUpdatedList}"
                                                     binding="#{viewScope.opportunityManagement.si1}"
                                                     id="si1"/>
                                    </af:selectOneChoice>Manageb bean code
        public void changeNotUpdated(ValueChangeEvent valueChangeEvent) {
            valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
            logger.info("in changeNotUpdated");
            Connection connection = null;
            Statement stmt = null;
            ResultSet resultset = null;
            DatabaseConnection db = null;
            StringBuffer query = new StringBuffer();
            try {
                db = new DatabaseConnection();
                connection = db.getConnection();
                if (connection != null) {
                    stmt = connection.createStatement();
                    query.delete(0, query.length());
                    query.append("select * from XXDMV_AAC_LM_DAYS_UPD_LIST_V");
                    logger.info("Query is:: " + query.toString());
                    resultset = stmt.executeQuery(query.toString());
                    if (resultset != null) {
                        //int size = 0;
                        while (resultset.next()) {
                            notUpdatedList.add(new SelectItemGroup(resultset.getString(2)));
                            notUpdatedMap.put(resultset.getString(2),
                                              resultset.getString(1));
                resultset.close();
                connection.close();
            } catch (NamingException e) {
                logger.error("Naming Exception Error.");
                e.printStackTrace();
            } catch (SQLException e) {
                logger.error("SQL Exception Error.");
                e.printStackTrace();
            } finally {
                resultset = null;
                connection = null;
        }this code is not getting called however same code fires for another selectOneChoice
    its a JEE application with Adf faces as view tier
    thnks

    Another one not working
    <af:panelGroupLayout id="pgl1" layout="horizontal"
                                             halign="right"
                                             inlineStyle="width:557px; height:29px;">
                          <af:selectOneChoice label="Branch"
                                              value="#{viewScope.opportunityManagement.branchName}"
                                              valueChangeListener="#{viewScope.opportunityManagement.changeUpdateBranch}"
                                              id="soc3" autoSubmit="true">
                            <f:selectItems value="#{viewScope.opportunityManagement.branchList}" id="si3"/>
                          </af:selectOneChoice>
                          <af:selectOneChoice label="Person" id="soc4"
                                              value="#{viewScope.opportunityManagement.salesExecutive}"
                                              autoSubmit="true"
                                              valueChangeListener="#{viewScope.opportunityManagement.changeUpdatePerson}">
                            <f:selectItems value="#{viewScope.opportunityManagement.salesExecutiveList}" id="si4"/>
                          </af:selectOneChoice>
                        </af:panelGroupLayout>
        public void changeUpdateBranch(ValueChangeEvent valueChangeEvent) {
            logger.info("in changeUpdateBranch");
            valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
            fillTodaysActivity(this.getBranchName(), this.getSalesExecutive());
            fillMissingActivity(this.getBranchName(), this.getSalesExecutive());
        public void changeUpdatePerson(ValueChangeEvent valueChangeEvent) {
            logger.info("in changeUpdatePerson");
            valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
            fillTodaysActivity(this.getBranchName(), this.getSalesExecutive());
            fillMissingActivity(this.getBranchName(), this.getSalesExecutive());
        }1st one is not working 2nd is working :(

  • Resource Assignment Select date range not wokring

    The Select Date Range control is not working properly it does not change the results shown in resource assignments under resource center in Project server 2013. Any ideas? Have I missed some configuration?
    Regards, Syed Faizan ur Rehman, CBPM®,PRINCE2®, MCTS

    Hi Syed,
    It does work correctly for me in my Project Online instance. Have you installed the SP1?
    Note that the date range is only available for the timephased data and not for the Gantt chart.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Web-redirect to external radius not wokring on some browsers for Guest SSID

    Hi,
    We are using Cisco 5760 with 3.7, and the guest SSID doesn't perform web-redirect to external radius (cisco NAC appliance), for some browsers. Although the same works on Cisco 5508 and 4402 WLC with the same NAC appliance for all browsers.
    working browsers: IE9.0 and IE 11.0
    Non-working: Chrome all versions, Firefox all versions, Safari all versions.
    Can anyone provide some help if they have seen  this issue before.?

    You need to check the compatibility guide of Cisco WLC and check if those browsers are supported or not.

  • My ipad is working very slow touch screen is not wokring perfectly and apps keep switching off when i play

    IPad Mini, 64GB, IOS 8.1.
    My IPad is working very slow.
    The touch screen is not working as good.
    Many problems when i play a game ( Real Racing 3) keeps on turning off when i play.
    Camera is also blurry.
    Screen sometimes goes blank.

    Try these basic troubleshooting steps.
    Go to Settings>Safari>Clear History and Website Data
    Now close all apps. In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If those three things made no difference, try this. Reset all settings. You will not lose any data, but most of the device settings will have to be entered in the settings app again. Settings>General>Reset>Reset all Settings.
    If all of that fails, restore the iOS software. Backup your iPad before you restore, then restore the backup when you are done. If that still doesn't help, restore your iPad as new and start all over again. Most purchased content can be downloaded again at no charge as long as you use the same Apple ID and as long as the content is still available in the store.
    Restore iPad to Factory Settings
    http://support.apple.com/kb/ht1414
    Download Past Purchases
    http://support.apple.com/kb/ht2519

  • Raise form_trigger_failure not wokring on validate records

    hi,
    I wrotea block level trigger WHEN-VALIDATE-RECORD, which do some screen level validation and
    in case of failure i use RAISE FORM_TRIGGER_FAILURE. working fine if i move records
    another trigger is KEY-COMMIT on form level.
    which calling a program unit where a command is FIRST_RECORD
    now when i save the records using the save button
    its call FIRST_RECORD, because of this command its executing WHEN-VALIDATE-ITEM
    and execute RAISE FORM-TRIGGER-FAILURE
    but system continue the executaion and jump back to key-commit triiger
    why WHEN-VALIDATE-RECORDS 's raise is not working...
    thanks

    hi
    its call FIRST_RECORD, because of this command its executing WHEN-VALIDATE-ITEM
    another trigger is KEY-COMMIT on form level.
    and execute RAISE FORM-TRIGGER-FAILURE
    If when-validate-item trigger is not set at item-level plz set it at item-level and check.
    set key-commit-trigger at block level.
    may it helps u.
    sarah

  • HPcompaq cq 57 fan not wokring properly

    Hello,
    Here lately I have been recieving this message that my fan in my compaq prisario cq 57 isn't working properly. I recieve this message every time i boot up my laptop, I have tried fixing it with canned air, but it seems to have made it worse as it made a weird nose. I'm guessing the fan needs replacing, but I'm not sure, I'm hoping it's fixable. If in any event I do have to replace the fan any idea where I could buy one online? And what model or voltage would the fan be? How would I find that?

    Try a hard reset as follows:
    1) Remove the battery and unplug the DC power adapter.
    2) Press and hold the power button for more than fifteen seconds.
    3) Plug in the DC power adapter (leave the battery out for now)
    4) Press the power button
    Please post your positive or negative results here in your thread.
    Replacing the CPU fan requires complete disassembly of the notebook. Compaq presario CQ57 notebook Maintenence & service guide. You will need to discern how your notebook is configured (Discrete or UMA graphics) and whether there is an Intel or AMD CPU installed to purchase the correct fan assembly for your notebook. Do be aware that if you have no experience doing this, then you are accepting the risk of turning your notbook into an expensive paperweight.  I recommend that you use youtube disassembly videos or Insidemylaptop.com for a source for  tutorials on how to do this.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • PC Suite not wokring after installing OVI

    I recently installed the OVI Suite, but decided that don't need the OVI Player, so I unistalled it. But even after uninstalling the player, the rest of the suite is still there and seems to conflict with PC Suite. So now I have a double connection to my N97: when I look in Windows Explorer, I see both Nokia N97 as a mobile media player, and Nokia Phone Browser as a system folder. Both can connect to the phone - but PC Suite is greyed down and does not seem to be connected to the phone.
    Is this how it should be? Or which components should I uninstall to get the functionality of PC Suite back?

    Hi,
    As far as i know, there is nothing harm in installing both Nokia Ovi Suite & PC Suite on your PC
    After uninstalling your OVI Suite have you rebooted your PC?  If not, what i suggest you is,
    Take backup of your PC registries.
    Uninstall Nokia PC Suite also from your PC, Run PC Suite cleaner(www.nokia.com/pcsuite it will have cleaner also), Run reliable Cleaner for your PC, Uninstall NOkia Connecitivity cable driver, PC Connectivity Solution etc., Install Nokia PC Suite from above link, reboot the pc after suite got installed, Once pc is started, Open Nokia PC Suite and then try to connect your Phone in different USB ports of your PC.

  • Crontab not wokring in Oracle10g in RHEL 5

    Dear Friends ,
    I am using oracle10g .I want to run the following script using crontab as 'Oracle' user .
    The script is :
    rman target sys/sys123 << !
    run
    allocate channel t1 type disk;
    backup format 'df_%t_%s_%p'
    (database);}
    I have to make the crontab entry like the following way :
    crontab -e (as oracle) :
    22 18 * * * /u01/rman.sh 1>/home/oracle/rmanback.log 2>&1
    But in the log file, it shows the following error :
    "/home/oracle/rmanback.sh[8]: rman: not found"
    Not only RMAN , when I run an expdp (racle10g) script Like follwoing :
    expdp system/sys123@rnd directory=test_dir dumpfile=orcl.$Date.dmp full=y logfile=orcl.$Date.log
    In the log file, it also shows expdp : not found
    In Oracle9i I did not face this type of problems .
    I am using RHEL 5 ans AIX 5.3 . Both have same problems .
    Can anybody plz help me ?

    Exposing the SYS password on the command line will allow everyone to see it using the ps command.
    This is a clear security violation.
    Please either use O/S authentication or use different mechanisms to hide the password.
    Sybrand Bakker
    Senior Oracle DBA

  • Multiple Button MouseEvent Listeners not working in continuation in as3?

    Hi,
    I've multple buttons following this drag structure to scale in different direction various corners of the rectangle:
    scale_bottomRight.addEventListener(MouseEvent.MOUSE_DOWN,scaleBottomRight_Start);
    function scaleBottomRight_Start(mEvent:MouseEvent):void
    /*code*/
              mEvent.target.startDrag(true,new Rectangle(scale_bottomRight.x,scale_bottomRight.y,100,100));
              addEventListener(Event.ENTER_FRAME, update_BottomRight);
    function update_BottomRight(event:Event):void
    /*code*/
      scale_bottomRight.addEventListener(MouseEvent.MOUSE_UP, scalebottomRight_Stop);
      function scalebottomRight_Stop(event:MouseEvent):void
                event.target.stopDrag();
      event.target.buttonMode = false;
    scale_bottomRight.buttonMode = true;
    However, after the dragging few buttons, other drag buttons don't work and first button flickers ....... i think not removing eventListeners is the problem.... can anyone guide me what i may be doing wrong and if remove eventListener is the problem, do i need to call them on EXIT_FRAME function (as i don't have one) or within somewhere else?

    Try this:
    scale_bottomRight.buttonMode = true;
    scale_bottomRight.addEventListener(MouseEvent.MOUSE_DOWN, scaleBottomRight_Start);
    function scaleBottomRight_Start(e:MouseEvent):void
              e.target.startDrag(true, new Rectangle(scale_bottomRight.x, scale_bottomRight.y, 100, 100));
              stage.addEventListener(MouseEvent.MOUSE_UP, scalebottomRight_Stop);
              addEventListener(Event.ENTER_FRAME, update_BottomRight);
    function update_BottomRight(e:Event):void
    /*code*/
    function scalebottomRight_Stop(e:MouseEvent):void
              stopDrag();
              stage.removeEventListener(MouseEvent.MOUSE_UP, scalebottomRight_Stop);
              removeEventListener(Event.ENTER_FRAME, update_BottomRight);
              e.target.buttonMode = false;

  • Logout operation is not wokring

    Hi Friends,
    I am facing problem with my web application when users try to logout. The problem is application does not logout the user completly. I have explained the problem as a steps in a way how it occurs
    1. Login to the application
    2. Access to application
    3. User logout the application
    4. User click back button on explorer
    5. Since the the files are not cached by coding, it displays refresh page
    6. Then user press refresh / Ctrl r / Ctrl F5, application allow user to login
    The problem is nothing to do with session, the request parameter holds the parameter require to login the same user even the user is logged out.
    Please suggest your solution on this.
    Thanks for your help in advance.
    Regards,
    Jude

    Yes, I see your problem and indeed you highlighted the same problem in my application!!
    I have corrected this problem by using tokens on the page.
    Before I build the page I create a token that is placed in the page. A copy of the token is also placed into session. When the page is then submitted the token is submitted with the page and I validate this token with the token in session to ensure the page is submitted as expected. When I am happy that the token is ok and I have completed any processing, I remove the token from session. If the user ever submits again from this page (i.e. they use back or refresh), the token submitted with the page will not match the token in session (if there is one) and the relevant course of action is taken.
    I use Struts which has built in support for tokens.
    Cheers, Kenny

  • Alpine ipod car interface not wokring with the iPhone.

    I noticed that my Alpine ipod car interface, which connects to the iPod with a universal connector does not work with my iPhone, not even in Airline mode, which is too bad because it would keep it charged while driving.
    Macpro, Powerbook G4 Mac OS X (10.4.10)

    This is not the case
    EDIT: Kind of frustrated, I typed an entire response, but this is all that was submitted.
    I plugged my iPhone in while listening to music and my Alpine deck picked it up and I was able to control it. Also, I received a call and my music paused allowing me to answer the phone. It was all rather invigorating because I didn't think it would work so well.
    Anyways, try playing music before plugging into the deck. It is possible that the iPhone does not always have the iPod "software" running and therefor the deck was not able to see an "iPod" plugged in.
    Message was edited by: DaFunkiestMonkey

  • Facebook GraphAPI_Web_1_8_1 not wokring using Adobe?

    i did add the GraphAPI_Web_1_8_1 api in lib folder and then add the following code and then run the app but it never come to the handler once i click on init or click on friend list
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                /*import com.facebook.graph.Facebook;
                import com.facebook.graph.controls.Distractor;
                import com.facebook.graph.data.FacebookSession;
                import com.facebook.graph.net.FacebookRequest;
                import com.facebook.graph.utils.FacebookDataUtils;
                import com.facebook.graph.Facebook;
                import com.facebook.graph.data.FacebookSession;
                import com.facebook.graph.net.FacebookRequest;*/
                import com.facebook.graph.Facebook;
                import com.facebook.graph.data.FacebookSession;
                import com.facebook.graph.net.FacebookRequest;
                import mx.collections.ArrayCollection;
                import mx.containers.ControlBar;
                import mx.containers.Panel;
                import mx.containers.VBox;
                import mx.controls.Alert;
                import mx.controls.Button;
                import mx.controls.Label;
                import mx.controls.Spacer;
                import mx.controls.TextInput;
                import mx.core.IFlexDisplayObject;
                import mx.events.CloseEvent;
                import mx.managers.PopUpManager;
                protected function onApiCallFriends(response:Object, fail:Object):void
                    if (response)
                        var friends:Array = response as Array;
                        Alert.show(friends.length.toString());
                        for (var i:int = 0; i<friends.length; i++) { Alert.show(friends[i]); }
                    else{
                        Alert.show("Failed "+fail.error.message.toString());
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
                    //Facebook.login(hhandleLogin);
                    if (Facebook.getSession()==null ||
                        Facebook.getSession().uid == null)
                        Facebook.login(hhandleLogin);
                    else
                        Facebook.logout(hhandleLogin);
                protected function hhandleLogin(response:Object, fail:Object):void {
                    Alert.show("yes it comes in it");
                    if (!response)
                        Alert.show("Failed "+fail.error.message.toString());
                        return;
                    button1.label =response.user.username+ 'You are logged in.';
                    button1.enabled = false;
                    //loadFriends();
                protected function btnInit_clickHandler(event:MouseEvent):void
                    removeEventListener(Event.ADDED_TO_STAGE, init);
                    // TODO Auto-generated method stub
                    Facebook.init('763846766955585', hhandleLogin, null, null);
                protected function button2_clickHandler(event:MouseEvent):void
                    Alert.show("Hello");
                    // TODO Auto-generated method stub
                    var params:Object = new Object();
                    params["access_token"] = Facebook.getAuthResponse().accessToken;
                    Alert.show(params["access_token"].toString());
                    Facebook.api("me/friends",onApiCallFriends, params);   
            ]]>
        </fx:Script>
        <s:Button id="button1" x="26" y="65" label="Login" click="button1_clickHandler(event)"/>
        <s:Button id="btnInit" x="26" y="26" label="Init" click="btnInit_clickHandler(event)"/>
        <s:Button x="26" y="110" label="Friend List" click="button2_clickHandler(event)"/>
    </s:Application>
    Kindly help me

    Same problem for me.
    Reinstalling is not working.
    Do you have any facebook alternative apps installed? You may need to remove them all.
    If that does not work, you may need to refresh Windows.
    Corsair Carbide 300R with window
    Corsair TX850V2 70A@12V
    Asus M5A99FX PRO R2.0 CFX/SLI
    AMD Phenom II 965 C3 Black Edition @ 4.0 GHz
    G.SKILL RipjawsX DDR3-2133 8 GB
    EVGA GTX 6600 Ti FTW Signature 2(Gk104 Kepler)
    Asus PA238QR IPS LED HDMI DP 1080p
    ST2000DM001 & Windows 8.1 Enterprise x64
    Microsoft Wireless Desktop 2000
    Wacom Bamboo CHT470M
    Place your rig specifics into your signature like I have, makes it 100x easier to understand!
    Hardcore Games Legendary is the Only Way to Play!

Maybe you are looking for

  • IMovieS not compatible with iPad 2

    I've purchased this app, however when trying to install the latest update it says it's incompatible with this iPad. I've deleted the app but can't reinstall. Any ideas??

  • Is there a way to put the bluetooth icon on the homepage?

    I pair my iphone with my car when I'm driving. Is there a way to put the bluetooth icon on the homepage so I don't have to go through settings to turn the bluetooth on and off? I don't like to leave the bluetooth on all the time because it drains the

  • Error in Kpro server when checking in originals from NW Portal

    Hi Experts, I am not able to check in originals in my NetWeaver Portal. When I try to save I get the follwoing error message: - Error in Kpro server But if I try in to check in the same original in the PLM system through SAP GUI it works just fine. A

  • Bubble chart in OBIEE 10g

    Is there any way to increase the bubble size of bubble chart in obiee 10g? Like whether we can use javascript or HTML Code to achieve it?

  • PHP - MySQL - SET column

    In my sql database I have a set column that works fine.  The user can select multiple options.  However, I am having trouble displaying those options using the record set in dreamweaver.  I want the recordset to find any one of the possible options a