Is it possible to disable the + button at the bottom of a view where Inline Editing in enabled?

As per the title, I have a list view where Inline Editing is enabled. I need to know how to disable or hide the green plus icon at the bottom of the list (Add new item).

Thank you Wendy! That solution works great.
So all that is needed is this:
<script
src="http://code.jquery.com/jquery-1.10.2.min.js"
type="text/javascript">
</script>
<style
type="text/css">
.ms-listviewtable
img[alt='New']{
  display:none;
</style>

Similar Messages

  • Is it possible to disable a button in the Headstart 6i Toolbar/smartbar?

    In a master/detail form, which I'm developing, I want to disable
    the Create Record button in the Toolbar the moment I enter the
    detail block.
    I've tried using QMS$TOOLBAR.DISABLE_BUTTON in the WHEN-NEW-
    BLOCK-INSTANCE, but that wouldn't work.
    I'm using Headstart 6i.
    Can somebody tell me if it's possible to disable the buttons and
    if so, how?
    Regards,
    Ivo Hensgens

    Yes, you can disable a button on teh smartbar.
    You do this by disabling the associated menu item.
    Use: QMS$MENU.DISABLE_ITEM or QMS$FORM_FUNCTION.DISABLE.
    (See page 14-9 en 14-10 of the User Guide)
    In your case you can use:
    QMS$FORM_FUNCTION.DISABLE('CREATE_RECORD');
    By the way: there is now a seperate forum for Headstart.

  • Is possible see a pdf file without the buttons of the program adobe? don´t permit a copy of the file

    Is possible see a pdf file without the buttons of the program adobe? don´t permit a copy of the file

    For the hiding, go to the document properties under initial view. You may confuse some folks if there is no file menu to close the file (a lot of folks just can't get the keyboard shortcut, alt-F4, into their head. They are going to look for where to find the file menu to close.

  • How does one disable a button in the web UI?

    How does one disable a button in the web UI? I am trying to disable the edit button in the web UI for Accounts. What are the steps to take in order to accomplish that?

    Hi Abdul,
    Locate the Toolbar group group for that application. It should be ACC_OIC01 in your case. You can deactivate a specific button (event) under the toolbar group.
    Regards,
    J.Prabananth

  • Disable a button of the include page

    I am trying to disable a button on the include page using javascript's document.form.button.disable=true function. It works fine if I see just the include page in the browser but if I see the whole jsp page along with the include page, the button is not disabled. Can anyone help me here.
    Thanks in advance,
    snd

    The reason for this is due to the fact that the include page behaves like a component when the main page is loaded. This makes the attributes of the include page available to the main page, but restrictions are imposed on the realization of conditions applied on the include page when the main page is loaded. This results in the button becoming enabled.
    Suggest reworking on the logic or to handle the button in JSP itself.

  • Enabling and disabling the button in the multi record block

    hi all,
    i am using
    Forms [32 Bit] Version 6.0.8.24.1 (Production)
    Oracle Database 10g Release 10.2.0.1.0 - Production
    i have a multi record block each block contains a button(button is to approve the record in terms of changing the status)
    i have the items like date,remarks and button
    the button should be enabled if the remarks is not null otherwise it should be disabled.
    for this in pre-record trigger i have written
    if :record is null then
       set_item_property('button',enabled,property_false);
    else
          set_item_property('button',enabled,property_false);
    end if;what problem is enable and disable is impacting on all the buttons in the block. in other words if first record's remarks is null then all the records button is disabled. if first record's remarks column is not null then all the records of the button column is enabled.
    i have to make enable and disable the button for the corresponding record.that means if first record's remarks column is not null then only first records button should be enabled others should be disabled.
    Thanks..

    You need to set the No. of items displayed to 1 as Ammad had said, additionally you can set the X and Y Position (Just Y will do and having fixed X) of the button depending upon the current record.
    can u explain this part alone bit more (setting the position of x and y)You need to calculate the variable Y_POS depending upon the current position of the cursor that is the current record.
    You can find the current record Y_POS using combination of
    V_CURRENT_RECORD := :SYSTEM.CURSOR_RECORD;
    V_TOP_RECORD := GET_BLOCK_PROPERTY ('BLOCK_NAME', TOP_RECORD);
    V_ITEM_Y_POS := GET_ITEM_PROPERTY ('ITEM_NAME', Y_POS);
    -- Also needs to add the Y_POS of the relative other items in the muti-record block
    V_HEIGHT := GET_ITEM_PROPERTY ('BUTTON_NAME', HEIGHT);
    -- Note :- TOP_RECORD  Returns the record number of the topmost visible record in the given block.
    V_Y_POS := V_ITEM_Y_POS + ((V_CURRENT_RECORD - V_TOP_RECORD) * V_HEIGHT);
    -- You will need to add Distance between Items in records if anyThen you can Set the current Y_POS of the button.
    SET_ITEM_PROPERTY ('BUTTON_NAME', Y_POS, V_Y_POS);
    [/code[
    Hope this helps
    Best Regards
    Arif Khadas
    Edited by: Arif Khadas on Feb 24, 2011 4:58 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is it possible to deactivate a button on the application toolbar?

    Hello everybody!
    Is it possible to deactivate a button on the application toolbar from standard transaction like PA40?
    I'd want to do it using an user-exit.
    Thanks in advance.
    Cristian

    there is a push button on the std tool bar of pf-status 'Function code'.using that u can activate and deactivate teh function codes
    or
    Check this FM : RS_SET_SELSCREEN_STATUS
    sample code :
    DATA: BEGIN OF i_exc OCCURS 0,
    code LIKE sy-ucomm,
    END OF i_exc.
    DATA: ws_repid like sy-repid.
    CLEAR i_exc.
    i_exc-code = 'ONLI'.
    APPEND i_exc.
    MOVE: sy-repid TO ws_repid .
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
    p_status = ' '
    p_program = ws_repid
    TABLES
    p_exclude = i_exc.

  • How to disable a BUTTON on the form?

    Hello
    I am trying to disable my_button (regular) by usinf this.disabled = true by seeing in google, but, its not working!
    Pls. let me know how to either disabel a button or invisible/hide a button, syntax pls. with syntax errors pls.
    Thank you

    To disable a button try the below script.
    this.access = "readOnly";
    To make it hidden or invisible try the below script.
    this.presence = "invisible";
    this.presence = "hidden";
    Thanks,
    Aravind

  • How to disable maximize button of the java.awt.Window ????

    How to disable maximize button of the java.awt.Window !!!!
    Help needed

    How to spam the forum with the same fuqin question. Please get lost.

  • When I click on buttons/pull down tabs on a variety of websites , I can see that I have pressed the button but the website does not recognize the action

    When I have visited travel websites I can not 'click' on the Calendar. I tried to buy a book and checked off to be visit as a guest - and the website did not recognize the button I had checked off. I tried to edit on 'online profile" and the website does not recognize that I have clicked the 'edit' button.
    I have not had problems before and do not understand why this has started to happen.
    I am running mac osx 10.7.5 and firefox 21

    If this was only on one or two sites, I'd suggest "Option #1" below and it's still a good idea. However, when several sites are involved, I begin to suspect an add-on. Hence, "Option #2" below.
    '''Option #1'''
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r / Command+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    (WIN) orange Firefox button (or Tools menu) > Options > Advanced<br>
    (MAC) Firefox menu > Preferences > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (complete any pending transaction first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Tools menu > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    '''Option #2'''
    Try the sites in Firefox's Safe Mode. That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • The buttons for the audiofiles are big. Can I make them smaller?

    The buttons for the audiofiles are big. Can I make them smaller?
    Is it possible to scrawl, while an audio file is playing on another page?
    Thank you for your answers.

    I'm afraid the audio is an 'on page' function and will cease playing if you change pages. As to the size of the audio buttons, it is possible to make an image up to replace the standard audio button, but be advised that this just starts the audio, it cannot be used to pause it like the standard button can.
    The standard button is sized so that it is easy to hit with a finger - if you make it too small triggering the audio will become problematic.

  • E90 The buttons on the inside cover has stopped wo...

    The buttons on the inside the cover has stopped working.
    It seems that it does not vary over when I reach the cover.

    You can work through the five 5 R's of troubleshooting to rule out any possibility of a software error/glitch.
    http://www.apple.com/support/ipod/five_rs/
    It might also be a good idea to let the iPod's battery fully drain. Then charge it back up and restore it once more in iTunes.
    Otherwise, it's likely a hardware issue with the iPod, meaning you'll need to take or send your iPod in for service either via Apple or a third party repair service. Here is Apple's repair pricing.
    http://www.apple.com/support/ipod/service/prices/
    Note that they don't actually repair the device, but exchange it for one of the same generation, model, and capacity.  A third party service will actually replace the damage part for a little less.  Google "iPod clickwheel repair" and you should get a number of results to work with.
    B-rock

  • The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my doc

    The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my dock has resided at the right margin so all my slider manipulation over countless editing sessions in Aperture has been ingrained to work at the left margin -- but, the vast majority of the time, the HUD overlaps the image I am editing in this 'unlocked' mode. 
    Every occasionally I enter Full Screen View and it positions on the left margin *without* superimposition...(!) My great joy is modulated into aggravation, however, should my tracking cursor drift all the way 'out of bounds' -- to call in the hidden pane of adjacent images sequenced in the library... This dramatically shrinks the Full Screen display and re-locks the HUD; if I toggle the switch to re-xpand the image it re-positions at the right margin!!!!  I SOOoooooo wish I knew how to control the default 'locked' margin of the HUD in Full Screen View...

    Drag it over to the Left. Then lock it there.

  • In popup step how do I get the "text on the button" in the report rather than button index?

    (1)
    How do I configure the POPUP step in "SEQ MAIN.seq" to execute the second
    step (IS OUT PUT IS 20?) in "SEQ 1.seq" when "IS OUT PUT IS 20?" button
    hit and execute the third step (IS OUT PUT IS 30?) in "SEQ 1.seq" when "IS
    OUT PUT IS 30?" button hit.
    (2)
    In popup step how do I get the "text on the button" in the report rather than button index?
    File attached
    Attachments:
    test_stand.zip ‏32 KB

    The handle to the Step.Button1Label gets you the data, but there are several ways to get it into the actual report.
    The easiest is to use the reporttext.
    In a post expression, you can use something like
    Step.Result.ReportText = Evaluate("Step.Button" + Str(Step.Result.ButtonHit) +"Label")
    and then the default report generation will include it in the report. Otherwise, you need to get the text into the Resultlist by various means (check the user manual, or the TestStand II customisation course) and handle the report generation yourself inside of the appropriate sequence in the process model.
    Just my 2cents
    S.
    // it takes almost no time to rate an answer
    Attachments:
    IncludeButtonTextInReport2_0.seq ‏18 KB

  • My iphone 5 will not let me control my volume at all. it is turned all the way up.  i try to use the buttons on the side of the phone and they dont work and when im on a call i cant change the volume.

    Im having trouble with my iphone 5.  For about 6 months now i cannot change my volume while on the phone or using the buttons on the side to turn the volume down. I took it to the sprint store so they could fix it and they said they have never had this problem before.  Ive owned every iphone from the very beginning and never had this problem before. please help.

    Have you tried going to Settings> then tapping on Sounds. and making sure that change with buttons is turned on?

Maybe you are looking for

  • Questions on OIM11g

    I have few questions on OIM 11g. 1) I have implemented SOA composite successfully and it is working fine. But, how to provide permission to xelsysadm also to approve the request along with the approver. In OIM 10g, it used to allow xelsysadm to appro

  • Scosche earphones that work with 3rd gen Nano

    The original earphones that came with my 3rd generation 8 GB Ipod Nano recently got destroyed and I'm looking to buy a replacement set. I'd like to upgrade to a set with better sound quality and in the in-ear style that blocks out ambient noise. I've

  • How to put AVCHD and AVI formats in a timeline using Adobe production suite?

    I shot an event with two different types of cameras (AVCHD camera and tape camera with AVI output). I converted the video of avchd into 1080p first, then put it with the tape output together, the video was jittery. How can I put them together in a ti

  • New contacts not sync icloud

    I have problem with new contacts on my iphone are not showing in icloud since 2 days after I added some videos via CopyTrans. I setup Settings>Mail,Contacts,Calendars>Default Account to iCloud and then run a backup but still new contacts are not show

  • Cannot execute stored function.

    Hi Guys, Please can someone tell me why a Package function when executed in SQL Developer returns the right value but, when called from VS 2008, it returns nothing. The function returns a VARCHAR2 and I can execute this procedure from SQL Developer w