APEX 5.0 problem with jQuery autocomplete & menu widgets

And salvation,

Previously (in TOP 4.2) I used the jQuery autocomplete widget. Now that I switched to APEX 5.0 I'm having a problem with it. I think that there is a conflict between the widget menu apex and jQuery menu widget.

I just made a new request with the new universal theme and tried to add the autocomplete jQuery as described here: https://docs.oracle.com/cd/E59726_01/doc.50/e39147/extend_app001.htm#HTMDB29026

I also added jquery.ui.menu.js because they are separated from jQuery 1.10.4.

But as soon as I add these two files on a page, interactive reports are broken a you get an error "Eception error: no such method"toggle"for instance menu widget" when you click on the button 'Action '.

Anyone has an idea on how to integrate jQuery autocomplete widget?

Thanks in advance for your help.

Concerning

Clément

Oops, I'm sorry, I missed the dependence. This makes it difficult. Unfortunately, the apex is to "blame" here for the creation of a unique widget name - only not with the game fairly limited widgets jwho that should have been possible.

Honestly, I don't see anyway "clean". I advise you to simply copy the menu and seized semiautomatic jqueryui and then change the name of the widget (in the source, mainly) to something like 'menu2 '. And then to find calls to .menu in AutoComplete to the folder and set those to menu2. I wouldn't rename the AutoComplete widget. Then put these files on your Web server, in the static files, or anywhere where you please. It's quite dirty, I know, but I think that really there is No alternative. I would not exactly change the apex after all js files...

If you be sure however to not use menu2 in altered AutoComplete file and have not renamed the AutoComplete widget, then you can in the future, if a fix was filed, simply use jquery again user interface files and just remove your references to your files customized without further delay.

You could probably connect it as a problem in the case where the devs do not notice this thread.

Tags: Database

Similar Questions

  • Problem with the context menu after the last update

    After update of Firefox, the menu is with orders much more that before (Play, Pause, Mute etc), most of them out of context ("Open link in a new tab" when there is no link) and none of them works.

    Problems with a massive menu have been reported as posed by Firebug, so make sure you update to the latest version of Firebug.

  • My customer is having a serious problem with the Contact form Widget

    My Client is to have a serious problem with the Contact form Widget that I can't seem to figure out how to fix.

    I created a website for a client and inserted a widget of Contact form on the "Contact us" page Whenever someone uses the form, e-mail receive my client shows my e-mail address as the sender. So when they "meet" the email, the response is sent to me and not the person who sent the original message. This creates a major problem in that I get flooded with answers e-mail while my client's potential customers go without a response.

    When I look at ' Site Manager > email system > Workflow information > e-mail address on the site administration Console, it displays my e-mail information. This is what needs to be changed?  If this is the case, what needs to be placed in this field for the email address of my client receives presents information email senders in the field "from".  My client wants to be able to click on reply and the message sent to the right side. They would be very angry if should be cut and past shippers Correo electronico of the body text on all the contacts they receive.

    Their feeling is that if I can't find a way to make the contact form works as it should, then there is no need for them.

    Can someone help me understand this? I really don't want to disappoint my first client.

    Congratulations for your first customer! =>

    Looks like you can have your email in places where your customers email should be.

    Here are the places you need to change your e-mail address.

    First adjust the answering of your web form is your customer email. Screenshot: http://screencast.com/t/YWiZZ30E0jE and http://screencast.com/t/u4t69anTLR

    Second set Emails to come your clients e-mail system. Site management > system email > set default "from" e-mail. Screenshot: http://screencast.com/t/EAr2sfXk

    I always go through each email system and check the e-mail address after you set the default value. I found that it doesn't always change them for some reason any. Note: If you are on a lower to webCommerce plan your list can be shorter than what is shown.

    Make sure that the email you the list of customers is also an email they want in public.

    Also provide information on the TSA that thetrickster888 is good information.

    I hope this helps.

    Lynda

  • Problem with JQuery tab after you migrate towards the APEX 4.0

    My test application hosted on apex.oracle.com use the JQuery tab function and it works well with APEX 3.2.1.
    And now after the migration to the APEX 4.0, it cannot display the tab more.

    No idea how to solve this problem?

    Thank you very much.

    Glad to hear your problems resolved. Don't forget to vote for any message that has been useful or responded to your message.

  • Problem with Textfield autocomplete--> only use the INSTR function

    Hello team dev,

    I use the new "textfield autocomplete" item type APEX and you have a crazy problem with it.

    I have a table with an index on the same column I want to search with AutoComplete field.

    Index:
    CREATE BITMAP INDEX TEST.GEO_DATA_IDX1 ON TEST.GEO_DATA (postcode)
    NOLOGGING TABLESPACE TS_INDEX;
    Select which is automatically generated by APEX 4:
    SELECT   a.*
      FROM   (  SELECT   DISTINCT postcode AS RV
                  FROM   TEST.GEO_DATA
                 WHERE   country_id = :P1_COUNTRY
              ORDER BY   1) a
     WHERE   INSTR ("RV", :p$_search_string) > 0 AND ROWNUM <= :p$_max_rows;
    
    -- plan
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 4,308  Bytes: 45,31  Cardinality: 1,97            
         2 SORT UNIQUE  Cost: 4,307  Bytes: 45,31  Cardinality: 1,97       
              1 TABLE ACCESS FULL TABLE #TABLE# Cost: 4,306  Bytes: 47,311  Cardinality: 2,057  
    The APEX 3, I used the addon of Tyler Muth with my own Select:
    SELECT   DISTINCT
                postcode AS DV,
                postcode AS RV
         FROM   TEST.GEO_DATA
         WHERE   country_id = L_COUNTRY
         AND    postcode like l_search||'%'
         ORDER BY 1
    
    -- Plan
    SELECT STATEMENT  ALL_ROWSCost: 840  Bytes: 152,867  Cardinality: 13,897                                
         8 SORT ORDER BY  Cost: 840  Bytes: 152,867  Cardinality: 13,897                           
              7 HASH UNIQUE  Cost: 838  Bytes: 152,867  Cardinality: 13,897                      
                   6 VIEW VIEW index$_join$_001 Cost: 836  Bytes: 232,111  Cardinality: 21,101                 
                        5 HASH JOIN            
                             2 BITMAP CONVERSION TO ROWIDS  Cost: 31  Bytes: 232,111  Cardinality: 21,101       
                                  1 BITMAP INDEX RANGE SCAN INDEX (BITMAP) #INDEX#
                             4 BITMAP CONVERSION TO ROWIDS  Cost: 45  Bytes: 232,111  Cardinality: 21,101       
                                  3 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) #INDEX#
    Is there a chance to get my INDEX used by the new element of the APEX? I do not. But I still want to ask before I just rebuild. :)

    Best regards

    Tobias

    Hi Tobias,.

    I guess that you are currently using "contains and case sensitivity ' to the attribute of"search ". Have you ever tried out "Exact and case sensitivity? Because that internally uses the LIKE operator as does your original query and the % is at the end, she must allow the use of an index. But it might still work, because ORDER BY can be run at a different time in your original example, but it's worth a try.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Problems with my toolbar menu and start pin

    While typical work on the internet, my browser closed its own and restarted my computer. Once again, it does the same thing: closing the browser and restart. Next time, that it restarted, I got a continuous pop to the top of a windows application requesting permission to access my computer (I have never launched and continually decreased). Then I had a series of pop ups and warnings, etc.

    Now, when I opened my Start menu, everything disappeared except 'all programs', 'search' and 'close '. Also, the icons located next to the time and date in the lower corner expanded how to a third party in the toolbar with no option to shrink. Finally, everything that had already been pinned to the toolbar disappeared and when I open a folder or a browser, it appears broadly and do not stack so organized, similar to how previous windows systems displays this information.

    How can I find these questions to their normal state?

    Hello

    What antivirus application is installed on the computer?

    I suggest you follow these methods and check.

    Method 1:

    Step 1: Restart your computer in safe mode and check if the icons are moved.

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    If it works fine in safe mode, try to perform a clean boot in order to find the root cause.

    Step 2: Perform the clean boot using the suggestions mentioned in the link mentioned below.

    http://support.Microsoft.com/kb/929135

    NOTE: once you check the clean boot feature configure Windows to use a Normal startup using step 7 proposed in the above mentioned link.

    Accidents with internet explore, check out this link:

    Tips for solving problems when Internet Explorer hangs or stops working

    http://Windows.Microsoft.com/en-us/Windows7/tips-for-solving-problems-with-Internet-Explorer

    Also perform a full service scan using the Microsoft Safety Scanner.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx 

    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    If the method above does not work, proceed to the next method.

    Method 2: Run the system restore.

    Restore the computer to the date where it worked great:

    http://Windows.Microsoft.com/en-us/Windows7/products/features/system-restore

    NOTE: When you use system restore to restore the computer to a previous state, the programs and updates that you have installed are removed.

    I hope this helps!

  • Save before exit Skillbuilders (version 3.0.1 for APEX 4.0): problem with some element of list in the form Manager

    Hello

    I have a problem with the plugin save before exit that I downloaded from Skillbuilders. As I use Oracle APEX version 4.0.2 and Oracle 10 g r2 database; so I downloaded one that says "Save before release (version 3.0.1 for APEX 4.0)" skillbuilders and follow-up of their documentation to import the plugin and use it.

    My problem is that even if I do not make any changes to data in the form and go to another tab. the alert message always appears, and by the way, I have an element of list manager on my form and it gets highlighted. So, even if I make the changes or do not change; still, the alert message is displayed and highlights the element of list manager. I think maybe the problem is to have a crèche in the form list item. I have reproduced the same problem in my personal workspace. Here are the details.

    http://Apex.Oracle.com/pls/Apex/f?p=55129

    Details of the workspace

    Name of the workspace: raghu_workspace

    username: orton607

    password: orton123

    App # 55129

    Page: 2 - has the element of list manager.

    Page 3 - works fine without the element of list manager

    Please help with possible suggestions.

    Thank you

    Orton

    Orton,

    I have connected to the workspace you and added a replacement JS file that corrects this error.

    If please, give it a whirl and let me know if you find other problems with it.

    It is to the 3.0.2 version of the plugin and I do not know if this even fix will work for your local Apex version earlier.

    When you are ready to go to the APEX 4.0.2 Please contact me directly for assistance. In the meantime, I'll work on the creation of a patch for this kind of new downloads of the plugin will contain this change.

    Greg

    [email protected]

  • Problem of formatting in the content with the horizontal menu widget area

    I use a regular horizontal menu widget with several different taps within an empty page.  I lived as if the content field under the first tap, for example, is 300 pixels long, all other fields of content under other taps will inherit the same height.  Because I have different amounts of text in various taps, I need to be able to REDUCE the height of the text field. But it won't let me.

    Any input is much appreciated!

    Fred

    Hi ACW100,

    Please select size spacing: uniform point in the menu dropdown.

    It does not resize the tabs separately, but it might serve your purpose (spacing problems).

    Kind regards

    Akshay

  • THE problem with Horizontal Spry Menu

    I use a horizontal Spry menu on my new Web site of the office. In IE9, but on the subpage of the site, the submenu display strangely, fill a horizontal space rather than descend vertically. It works on the index page, and it seems to me that the divs and other circumstances are the same in each file. Any advice or assistance would be appreciated.

    An example of the arrangement of the subpage: http://test.faculty.umd.edu/teach/syllabus_ie.html Hovering above the menu should show the problem.

    The index page (showing how the menu works correctly): http://test.faculty.umd.edu/index_ie.html

    Thank you

    Rebecca

    The Spry menu that is built into Dreamweaver using older code that is not compatible with IE 9. If you want to use a Spry menu, you need to use Spry Menu 2.0, you can install using the browser Widget from Adobe. See http://www.adobe.com/devnet/dreamweaver/articles/spry_menu_bar.html.

    On the other hand, you might be better off looking for a different menu. There has been a lot of problems with Spry, and the framework has not been updated for several years.

  • problem with the spry menu bar

    Hello. I'm having a problem with the submenu appears at the top of the page instead of the sub menu. I have added settings and changed % to the "ems", but still does not work. I think it has something to do with being right under the menu spry flash movie. Can anyone help? Thanks in advance.
    Here is the link to the site:
    link to the site

    Hello

    The problem is due to the

    Tags that you added all through
    the spry menu.
    In IE, which not only align text Center but it also aligns the
      which
      are drop down menus in the center of the
    • who owns.
      This changes things.

      First of all, change this:

      To do this:

      So, if you want your text aligned to Center:

      Change this in the sections file:

      UL. MenuBarHorizontal a {}
      display: block;
      cursor: pointer;
      background-color: #000000;
      Padding: 0.5em 0.75em;
      color: #FFFFFF;
      text-decoration: none;
      }

      To do this:

      UL. MenuBarHorizontal a {}
      display: block;
      cursor: pointer;
      background-color: #000000;
      Padding: 0.5em 0.75em;
      color: #FFFFFF;
      text-decoration: none;
      text-align: center;
      }

      I hope this helps.

      Take care
      Tim

      "rio333" wrote in message
      News:ft6src$RHS$1@forums. Macromedia.com...
      > Hi. I'm having a problem with the submenu appears at the top of the page
      > instead of the under the menu. I've added parameters and modified % to
      > "ems".
      > but still does not work. I think it has something to do with flash
      > film
      > under the spry menu. Can anyone help? Thanks in advance.
      > Here is the link to the site:
      > http:www.fidoandcompany.com
      >

  • z index / layer of problems with the new YouTube widget!

    Hello!

    I am facing a problem with the new 'youtube' of social media widget. I currently have two layers in my projects. This is a project for which the menu scrolls initially and then sticks to the top of scrolling parallax. By continuing to scroll, the embedded YouTube video widget does not scroll under the menu as it should but scrolls through the menu. It's strange, as the YouTube widget was placed on level 1 and the menu is at level 2. Shouldn't the menu then always be on top? Only the new widget is not properly defined index-z?

    You can check my web project (and look at the code) here: http://www.firstlight.at

    Any help is greatly appreciated!

    I managed to solve the problem, and I believe this to certainly be a bug in Muse...

    In order to avoid widgets Youtube iframed swim on top of all the other div tags, I had to change the code, add wmode = "transparent" and wmode = "Opaque" to the class of the iframe. This works if you replace all the other parameters behind the CBC "&" by "& amp"tag.

    Here's the original code generated by Muse. This could not prevent my "2nd layer" slip below "Layer 1".

    Makes the following changes to the code, forced the Youtube widget below all other div again (I pinned all changes to "BOLD", so you can see the changes easily):

    Ensure that you do not miss the following change: you need to change all of the vipers '&' to '& amp' this procedure will not work!

    After the new version, I'm sure the Adobe team is working hard to bust of bug last version. But I hope that we will be dismantled soon, otherwise users using the youtube widget will have to recode output Muse whenever we make a change and it is exactly what is the Muse striving to prevent (; After all, in Dreamweaver, you can hardcode the change and he would stick!

    I hope that it will be useful to someone!

  • Problems with HTTPS and javascript widgets

    My HTTP site works fine, but when I switch to HTTPS, I get the following error...

    MuseJSAssert: Error calling the function switch: TypeError: E.split is not a function

    I have even tried to create a simple page with nothing else than a javascript widget, and I still get the error when you use the HTTPS version.

    FYI - I upload my pages using the 'upload to the FTP host.

    Muse and HTTPS is not compatible?

    It is more likely a problem with your server as a problem of cross-site script because the HTTPS protocol uses a folder or a different domain and browser security mechanisms as long as the server itself remove access to the script so. If there is a specific secure folder on the server, import is your files, otherwise, you will need to set an option in the web interface to allow HTTPs and normal HTTP access to your folder.

    Mylenium

  • Problems with the 'Text Ticker' Widget

    Hello, I have a problem with the widget "Ticker text." I tried to put more ticker and then a text on my site, but it does not work, when I look in Muse it looks like this:

    TextTickerinMuse.JPG

    and when I look in the preview only the first text ticker works... maybe it is not possible to have more then ticker text on a site?

    TextTicker.JPG

    Thank you.

    It seems that you use the same name for all instances of ticker on the page.

    You must have a unique name for each ticker you want on a single page. Strips with duplicate names will not work.

    See you soon,.

    Vikas

  • Webview from landscape orientation to portrait mode causes the font size to become smaller and a problem with the context Menu

    Hi, I have a webview with inline html. It works fine except that when I pass in landscape mode, the screen fills fine and the police grows, but when I go back to portrait fonts are tiny, even smaller then when initially in the portrait. I am installing this on a Z10 with cascades 10.1 SDK. Is this a Bug somewhere in the SDK or BB10?

    Another problem I have is in Web mode, the shortcut menu appears when I touch a Word. I is no need to use the context menu. How can I get rid of him. In the case where I would like to someday use this menu, I would need to add code to it. I can't find the code. Where can I find it?

    Thanks for your help

    Concerning

    Roland

    I' to propose taying far WebView as much as possible and using TextArea (with type HTML). There are still a few bugs present in WebView that make it unpleasant to use.

    You cannot get rid of the context menu, so it will disappear once you remove WebView. You can still share with other methods.

    This may seem more work and it's probably, but it's going to do to improve the user experience and fewer headaches for you.

  • Problem with default system menu item "Switch Application"

    I used the system menu item in my app screen. If I select 'Application Switch', I noticed that my app icon becomes empty. The problem doesn't stop here. If I go back to the home screen and in all cases, my icon of gets too empty.

    The system has lost somehow, the application icon.

    Anyone see this problem and suggestions on how to fix?

    Version of Blackberry 6, 9800 Simulator.

    Thank you

    Sherry

    So you see your application autostart - unless it is enforcement, not UiApplication. Also focus on the method of Application.acceptsForeground - you might want to tinker with it.

    Check all the icons in the 'Application Switch' strip - it will be your main application with an icon as well.

Maybe you are looking for

  • 15 d 103tx lan wifi not detected on win7 64-bit

    Dear expertsI installed win7(64bit) on 15d103tx... but the wireless lan is not detected by the laptop... when I checked in network adapters, there were only two bluetooth device it... wifi is also available in nt

  • Need help with manual XP restore point files to copy

    Hello I have a Sony VAIO VGC-RB40 with XP SP3 Desktop installed.  I had a module of RAM go bad and it crashed my system.  I pulled the bad RAM and am able to boot into Windows, but there are some things corrupt as I can not drag and drop, IE does not

  • LaserJet Pro P1102: p1102 xp ServicePack

    I have to buy a new printer for my old pc with Windows XP Service Pack 2. Can you confirm that this printer (P1102) doesn't have Service Pack 3?

  • HP PhotoSmart 7510 does not print

    We have installed and had the HP PhotoSmart 7510 up and works fine on our wireless.  Then, we called HP to download an application.  HP technician decided to 'fix' our PC.  While working on this issue, we started to notice that MS applications were d

  • Help - can't get the firmware to install WRT54GL ver 1.1

    Hi everyone, I spent and openwrt 2.4 and now you want to put the linksys back on. I followed all the instructions and just can't get it to happen - what am I doing wrong 1. the unit is in safe mode - by pressing reset after power cycling the unit wai