Custom Seach Out of What - Messes up Layout

What on earth is WRONG with the Custom Search portlet!? As if it weren't enough that it is HUGE, and its size and layout cannot be customized, now (Portal 10.1.4) something seems to be wrong with its coding: no matter how I integrate it either within a page, or even on its own in a separate page, it always messes up the layout of the page. It doesn't seem to be possible tomake it correctly fit within an 800px wide page, and it does something strange to the left side of any page - almost as if somenone had left an open HTML tag within its rendering programming...
Will somebody PLEASE get this thing working correctly once and for all?
That would be sooo nice.
Thanks for listening, and if anyone knows of a way to make this thing work and render correctly, I'd truly most obliged.
Alex.

UPDATE:
One of our geniouses came up with a bizarrely unlikely (yet functional) workaround to at least part of this problem.
It seems like it´s only certain settings of the custom search portlet that cause it to misbehave. So, for example, if you have it in "Display a search form " mode, you MUST also make sure to select the box at the bottom of the "Search Form" tab named "Allow users to add extra attributes to the search". With this box selected, the portlet renders the results fine. You check it off, and it's whacko city.
Sad but true.
We have also got it to render correctly under "Automatically display search results" mode, but still haven't figured out which particular setting it is that makes it go nuts in that mode. If I find out which one is the trigger, I'll post it.
Cheers,
Alex

Similar Messages

  • I have iphone 3gs and last days i made upgrade 5.01, but i dont know that this version is not avaliable in brasil yet. than my iphone 3gs 32 gb no more find the wide and it be seaching the sinal. what i need to do to back to before situation. thanks a lo

    i have iphone 3gs and last days i made upgrade 5.01, but i dont know that this version is not avaliable in brasil yet. than my iphone 3gs 32 gb no more find the wide and it be seaching the sinal. what i need to do to back to before situation. thanks a lot

    iOS 5.0.1 has been out for a couple months, if not longer. 
    There was no delay in releasing it in any country.
    So what is your issue? 

  • On the input :   error message if there is no such id in the database to edit?  and out put comments messed up the whole

    The first page (CoGetEditForm.cfm lets you input the co id
    then it get to the next page for you to edit (CoEditForm.cfm). then
    it lets take action and UPDATEs (CoEditAction.cfm) finally, it goes
    to the colist.cfm to query results and outputs it to html format.
    <td>#comm#</td>
    Question is that:
    1. where and what do I do to have an error message if there
    is no such id in the database to edit?
    2. the out put comments messed up the whole query results
    when I added it to the html out put results. What can I do to clean
    this up and where do I put the code?
    <!-------------------------edit
    page----------------------------->
    <html>
    <head>
    <title>Main Title</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>Edit a Co based on co_ID</h1>
    <table>
    <cfform action="CO_EditForm.cfm" method="POST">
    <tr>
    <td>Co_ID</td>
    <td>
    <cfinput type="Text"
    name="Co_ID"
    message="Please enter the Co_ID"
    validate="integer"
    required="Yes"
    size="22"
    maxlength="20">
    </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <input type="submit" value="GetCo">
    </td>
    </tr>
    </cfform>
    </table>
    </body>
    </html>
    <!------------------------------------------CO_EditForm.cfm
    page------------------------------------->
    <cfquery name="GetCo"
    datasource="#Request.MainDSN#">
    SELECT
    COName,
    ADD,
    City,
    st,
    zip,
    comm
    FROM
    CO
    WHERE
    Co_ID = #Val(Co_ID)#
    </cfquery>
    <html>
    <head>
    <title>Main Title</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>Edit a CO</h1>
    <table>
    <cfform action="COEditAction.cfm" method="POST">
    <cfoutput>
    <input type="hidden" name="COID" value="#Val(COID)#">
    </cfoutput>
    <tr>
    <td>CO Name</td>
    <td>
    <cfinput type="Text"
    name="COName"
    value="#GetCO.COName#"
    message="Please enter a name for this CO."
    required="Yes"
    size="40"
    maxlength="40">
    </td>
    </tr>
    <tr>
    <td>ADD</td>
    <td>
    <cfinput type="Text"
    name="ADD"
    value="#GetCO.ADD#"
    message="Please enter this new CO's ADD."
    required="Yes"
    size="32"
    maxlength="30">
    </td>
    </tr>
    <tr>
    <td>City</td>
    <td>
    <cfinput type="Text"
    name="City"
    value="#GetCO.City#"
    message="Please enter a city."
    required="Yes"
    size="22"
    maxlength="20">
    </td>
    </tr>
    <tr>
    <td>st</td>
    <td>
    <cfinput type="Text"
    name="st"
    value="#GetCO.st#"
    message="Please enter a st."
    required="Yes"
    size="3"
    maxlength="2">
    </td>
    </tr>
    <tr>
    <td>ZIP Code</td>
    <td>
    <cfinput type="Text"
    name="zip"
    value="#GetCO.zip#"
    message="Please enter a valid ZIP Code."
    validate="zip"
    required="Yes"
    size="11"
    maxlength="10">
    </td>
    </tr>
    <tr>
    <td>comm</td>
    <td>
    <textarea cols="40" rows="5"
    name="comm"><cfoutput>#GetCO.comm#</cfoutput></textarea>
    </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <input type="submit" value="Update Database">
    </td>
    </tr>
    </cfform>
    </table>
    </body>
    </html>
    <cfquery name="UpdateCO"
    datasource="#Request.MainDSN#">
    UPDATE CO
    SET
    COName = '#Trim(Form.COName)#',
    ADD = '#Trim(Form.ADD)#',
    City = '#Trim(Form.City)#',
    st = '#Trim(Form.st)#',
    zip = '#Trim(Form.zip)#',
    comm =
    <cfif Len(Trim(Form.comm)) GT 0>
    '#Trim(Form.comm)#'
    <cfelse>
    NULL
    </cfif>
    WHERE
    COID = #Val(Form.COID)#
    </cfquery>
    <cflocation url="COList.cfm">
    <cfquery name="GetCo"
    datasource="#Request.MainDSN#">
    SELECT
    coID,
    coName,
    ADD,
    City,
    st,
    zip,
    comm
    FROM
    co
    ORDER BY
    coName ASC
    </cfquery>
    <html>
    <head>
    <title>title getco</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>y List</h1>
    <table>
    <tr>
    <td><b>ID</b></td>
    <td><b>Name</b></td>
    <td><b>ADD</b></td>
    <td><b>City</b></td>
    <td><b>st</b></td>
    <td><b>ZIP Code</b></td>
    <td><b>comm</b></td>
    <td> </td>
    </tr>
    <cfoutput query="GetCompanies">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#coID#</td>
    <td>#coName#</td>
    <td>#ADD#</td>
    <td>#City#</td>
    <td>#st#</td>
    <td>#zip#</td>
    <td>#comm#</td>
    <td>
    <a
    href="EmployeeList.cfm?coID=#coID#">Employees</a>
    <a href="coAddForm.cfm">Add</a>
    <a href="coEditForm.cfm?coID=#coID#">Edit</a>
    <a
    href="coDeleteForm.cfm?coID=#coID#">Delete</a>
    </td>
    </tr>
    </cfoutput>
    </table>
    </body>
    </html>

    After your SQL SELECT on CO_EditForm.cfm, you need a
    <CFIF> that checks to see if any records were retrieved. See
    below.

  • What is Report layout?

    What is Report layout?

    Hi Ajay,
    The information shown on line item reports (SAP describes them as “list displays”) can be controlled using a report Layout.  A Report Layout specifies the sequence of line items should be shown on and their positioning on the list etc.
    Cost centre line item reports are one of the more commonly used list displays but vendor, customer and general ledger line item reports are also list displays. 
    Check this link to know about report layout
    http://www.le.ac.uk/cc/cchelp/sap/SAP%20Guide%20-%20Report%20Layout.doc
    Thanks,
    Vinay

  • Customer Part No on PO , SO print layouts

    WRT to PLD,
    1. I need to show the customer part numbers on the PO , SO layouts.
    Now, I am maintaining the customer part numbers using BP part numbers. But in PLD, i dont see any mention of the table OSCN for BP part numbers.
    How to achieve this ?
    2. I need to show the name of the user printing the sheet out. How to get the details of the current user ? I am sure, there is a function to get this, i just dont know about it !
    Appreciate all the help all of you extend.
    Regards.

    Click open form settings of PO/SO,Select Documents tab,
    Tick mark BP Catalog Number & also tick mark BP Catalog number in table & row format as visible & active.
    Open PO/SO with BP Catlog number,Click Print Preview Icon,You can see BP catalog number appears instead of Item code.
    Jeyakanthan

  • Programme for downloading Customer with out Duns Data

    hello all,
    I want to download customer with out DUNS data,please any one help me on this,how we can download customers without Duns.
    Please any one helpme on this.
    Thanks,
    Raju.

    Hi,
    Do your customers need to communicated with each other?
    Do your customers need to have access to Internet.
    To what device your Internet connection will be attached to?
    If the customers don't need to communicate with each other, you can get a larger firewall and use VRF lite on the switches/routers and  firewall context to separate each customer.
    Here is good document to look at:
    http://www.cisco.com/c/en/us/td/docs/solutions/Enterprise/Network_Virtualization/PathIsol.html
    HTH

  • What kind of layout is this?

    I am starting up a website at VisualizeEdits.com and I really like this website theme and would like to make mine similar but make it better.
    http://www.demo1.diaboliquedesign.com/4/
    What kind of layout does this website have? I noticed that the navigation (metro style) should be the header for every page.
    When I opened up Dreamweaver, it allowed me to choose a template type such as
    ASP JavaScript template
    ASP VBScript template
    ASP .NET C# template
    ASP.NET VB template
    ColdFusion template
    HTML template
    JSP template
    PHP template
    I'm just trying to get my home page started with some html and css. Then add some Java, php, and mysql for the login/registration.
    Is there a certain template I'm suppose to choose? If it doesn't matter then what kind of layout should I choose?
    I also mention this website on my help blog.
    http://blog.visualizeedits.com/website-help/

    Actually, about six years ago, before I took the Lynda.com courses on DW and CSS, I learned a LOT from downloading those templates and "playing around with them".
    I learned how to "float" columns, got a basic understanding of margins and padding and the difference between them, and I think the biggest was how to lay out an inline block navigation menu.
    I also found some really cool scripts like Nivo slider, Piecemaker, and of course Lightbox, which I've since replaced in my pallette with Fancybox.
    Some of those templates are very basic, and some are downright "cheesy", but they make for some good example of how to (and how not to in some cases) do basic CSS design. The first website I ever sold was a redone version of one from freecsstemplates.com. In a comparison between the original and mine, you wouldn't know they came from the same basic layout, but that was the point. Not to use someone elses design, but to take the framework and make the page my own. Once I could do that, I started writing my own CSS and webpages from blank documents.

  • I can't remember my admin password for one of my iMacs.  I'm locked out!  What are my options?

    I can't remember my admin password for one of my iMacs.  I'm locked out!  What are my options?

    Resetting an account password

  • My itunes wont download the newest ipod software and when i try it will download for maybe an hour then say "error has occured, internet connection timed out"  now what do i do?

    My itunes wont download the newest ipod software and when i try it will download for maybe an hour then say "error has occured, internet connection timed out"  now what do i do?

    Disable your firewall/security software, then try again.

  • HT1386 I synced (updated) my iphone to itunes and some songs were deleted from my iphone playlist on my phone.  On the computer, a circle is next to the song and the title faded out.  What the heck is that all about and how do I get my songs back onto my

    I synced (updated) my iphone to itunes and some songs were deleted from my iphone playlist on my phone.  On the computer, a circle is next to the song and the title faded out.  What the heck is that all about and how do I get my songs back onto my phone playlist?  Never happened before.  My software is up to date?

    http://support.apple.com/kb/HT2519

  • I receive a Software Update notice that fails. How do I find out who/what is trying to update? How do I stop its attempt to update? The only response allowed is "OK". When OK is selected the window goes away and nothing else happens.

    About once a month I receive the Software update notice that has failed. How do I find out who/what is trying to update? If I decided I want this update how do I allow it to continue? If I decided I do not want this update how do I stop it and its attempt to update? The only response allowed is "OK". When OK is selected the window goes away and nothing else happens.

    Hi sharkbiscuit79,
    Yes your cabinet 10 on the Crediton exchange has already been installed and linked with a FTTC DSLAM cabinet (making it able to provide FTTC fibre broadband) and has been Accepting FTTC orders since December 2013.  PCP10 (with it's DSLAM cabinet within 100meters of it) is locate on the junction of Commercial Road and the A3072.
    However by the looks of things your are just too far away to obtain a FTTC (VDSL2) connection, meaning FTTC fibre broadband is not available to you.
    Have a look at the Connecting Devon and Somerset Considerations (particularly the last paragraph) - http://www.connectingdevonandsomerset.co.uk/where-when-map-conditions/
    Your best bet is to talk to Connecting Devon and Somerset to see if there are any further plans to get a fibre based service to your area via https://www.connectingdevonandsomerset.co.uk/contact-us/ (as your area may not be inscope of any further deployment). Best give them your full address and landline number too as they can check if you are within a NGA area.
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • HT3310 i have a problem with the headset of my ipod nano 4th gen. the right side don't have a sound. It comes in and out.  what do I need to do?.. I am using the original headset eversince. I took it to an Apple Mac Center I was told they can't do anythin

      I have a problem with the headset of my ipod nano 4th gen. the right side don't have a sound. It comes in and out.  what do I need to do.. I am using the original headset eversince. I tool it to a Apple Mac Cennter and Taked with a Service Center Rep. And he told me that they can't do anything because they don't repair the ipod they didn;t even look at it. I was told instead to buy a new one. I was very disappointed.. This is already my 5th ipod though i am planning to buy a new one.. I still want it fixed so I can give it to my little sister

    From the OP: "My old computer got a virus and when that happened all my music was lost. "
    They don't have the music on their computer so they cannot transfer the iTunes folder, from the computer to their iPod and then to the new computer. And if they try to enable disk use on the iPod it will erase all the music that is on it. The method you cited is moving the files in a data format using the iPod as a flash drive. It doesn't work if they are in music format. That is why I suggested Yamipod.

  • Not sure what I did but all of a sudden everything I touch has a voice attached to it telling me what it is. For instance, if I touch an icon it tells me out loud what the icon is, and tells me to double tap to open it. What is happening? Help!

    Not sure what I did but all of a sudden everything I touch has a voice attached to it. For instance, if I touch an icon it tells me out loud what the icon is and tells me to double click it. ***??? Help!

    Connect your iPhone to your computer via its USB cable and select it in the left column of iTunes.
    Select the "Summary" tab, scroll to the bottom and click the "Configure Universal Access" button.
    Disable "VoiceOver" and click the "OK" button.
    Click the "Sync" button at the bottom-right.

  • My mail is getting stuck in outbox, but I am receiving mail just fine. Message says 'server timed out'. What can i do to fix this?

    My mail is getting stuck in outbox, but I am receiving mail just fine. Message says 'server timed out'. What can i do to fix this?

    Hello Naila1,
    It sounds like you are unable to send emails, as they go straight to the outbox, but you can get the emails without issue. I recommend using the Connection Doctor to help you troubleshoot what is happening with the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • In custom control , I wnt to save the layout with variant  -

    Hi,
    In custom control , I want to save the layout using variant and i want to choose the layout from the variant
    Plz give me the details.
    Rerards,
    Rani

    Hello Rani
    I assume you have an ALV grid displayed within a custom control. For this ALV grid you want to be able to save layouts.
    Assuming that you are using class CL_GUI_ALV_GRID you have set the following IMPORTING parameters when calling method go_grid->set_table_for_first_display:
    " Fill variant parameter with following values:
    gs_variant-report = syst-repid.
    gs_variant-handle = 'GRID'.  " 4-digit handle; required if you have multiple ALV grids
    - I_SAVE = 'A'   " allows saving of user-specific and global layouts
    - IS_VARIANT = gs_variant
    Regards,
      Uwe

Maybe you are looking for

  • Java.util.logging.XMLFormatter - need advise

    Hi all, I have this class which suppose to write some message into the custom log file (in XML). Problem is, after the first time of writing it into the same file, it will append additional XML header : <?xml version="1.0" encoding="UTF-8" standalone

  • 'Install black cartridge' message persists

    I have a Laserjet M1212nf MFP printer. A few days ago the ink levels were fine, but today I got the 'Install black cartridge'. I bought a new cartridge, but the message persists. I have tried taking it out a few times, and I have powered down and res

  • 'form' is not useable in bsp page?

    HI. here is only simple example in oninitialization bsp page. data:      disp_alv  type as4flag value 'X' . perform test using  disp_alv. form test  using   disp_alv  type as4flag   . endform.                  but it shows error 'statement endmethod

  • Run time engine download disabled?

    Hi,  I am trying to download the lates LV run time engine.  There are pages for 8.0 and 8.2, no 8.2.1.  However, when I click on the links to download either version, the files are not there.  What's going on?

  • Im trying to install my apps onto my laptop, it keeps telling me that they're desktop apps

    Hey can anybody help? I've just signed up to creative cloud and I'm trying to install my apps onto my laptop. However, whenever I go to click the button it simply comes up with a message saying; "Creative Cloud is a desktop app so you'll want to down