JQuery Tutorial needed to customize Add New Item and Edit Item forms

Hello,
I need a tutorial to use JQuery to customize the UI Screen of SharePoint to add a new item in a list.
since I don't have prior UI experience it will be nice if the tutorial is specifically targetted towards customizing the automatic form which is presented by sharepoint when we try to add an item to a custom lists.
val it: unit=()

Hi,
According to your post, my understanding is that you want to customize the New Item and Edit Item forms using jQuery.
The following examples for your reference:
http://ankursharepoint.blogspot.com/2012/10/jquery-for-tabbed-navigation-in.html
http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
https://www.nothingbutsharepoint.com/sites/eusp/Pages/10-jQuery-Snippets-for-SharePoint-2010.aspx
jQuery Tutorial
http://www.w3schools.com/jQuery/
Thanks,
Dennis Guo
TechNet Community Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Dennis Guo
TechNet Community Support

Similar Messages

  • Add new column at line item level in MIR7 transaction

    Hi All,
        I would like to know how to add new column at line item level for GL Account
       tab  in MIR7 transaction. could you please let me know how do i add new
       column in MIR7  transaction. Please let me know is there any user exit or any
       other wat to do it.
    Thanks,
    rao

    Hi,
    The customer include CI_FMBL can only be used with FMPEP and not with other transaction like FMBB.
    Technically speaking, the structure CI_FMBL must be part of many other interfaces like the one use by BAdI 'FMKU_BUDGET_EVNT'.
    In order to add such customer fields in FMPEP, you have to use the BAdI 'FMBW_CUSTOMER'. For instruction, you have to look at the note 1356725 and the instruction of paragraph 30. Please read the instruction and start to do your implementation.
    With the BAdI 'FMBW_CUSTOMER', you can use the PBO and PAI for handling the customer fields. There is no other place to populate these customer fields. Do you want to use customer fields in FMPEP? Please check note 1356725 for reference.
    I believe this answer your inquiry.
    Best Regards,
    Vanessa Barth.

  • Remove "Add New Instance" and "Remove New Instance" Entity buttons

    Hi,
    While Adding new Entity, "Add New Instance" and "Remove New Instance" buttons will be displayed.
    I don't want to display "Add New Instance" and "Remove New Instance" because by default i have created instances. I am able to disable it but i don't want to display at all.
    For "Add New Instance" , one-to-one, Automatically disabled by OPA
    For "Remove New Instance" added below code in ButtonControl.vm:
    #if( ${control.getButtonClass()}.equals("remove"))
    #set( $disabledString = "disabled" )
         #set( $visibility = "false" )
    #end
    Please tell me how to not display these two buttons.
    Thanks,
    Sri

    Hi Sri and Patrick,
    There's no out-of-the-box configuration to hide the Add/Remove Instance buttons from entity collect screens in Web Determinations. However, this requirement can be achieved through Custom Properties. This requires a technical person to create the custom property, which the rulie then attaches to the Rule Project. The technical person also needs to modify the velocity template which renders the entity collect screens so that it will remove the Add/Remove buttons on any entity collect control where the custom property is set to True.
    I can't advise on exactly how to write the custom property or edit the velocity template (I'm a functional expert, not a programmer), but the OPA Developer Help should have guidance. Try searching on ‘custom property’. From the rulie perspective, have a look at this article for how to attach a custom property to the project and to the particular screen control:
    * Augment the rulebase with metadata: http://docs.oracle.com/html/E24270_01/Content/Integrating/Augment_the_rulebase_with_metadata.htm (particularly the sections 'Specify a custom property defintion' and 'Assign a custom property to a control'). This link is to the 10.3 version of the OPM Help. If you are using an earlier release of OPA, you can look at the equivalent article in your copy of the Help.
    (If there are technical people following this thread, perhaps you could reply with specific OPA Developer Help articles people should look at with regard to writing custom properties?)
    Cheers,
    Jasmine

  • Cannot add new selectors or edit existing CSS file with my Mac

    I have just subscibed to Dreamweaver CC and I cannot add new selectors or edit the exisiting "main" css that comes with the tutorial. When asked to add selector a box appears but when I press enter/return twice it disappears. Also there is no option to edit existing properties. for example, to change a font color I pick color but there is no enter or "OK" option. I'm very puzzled and stuck.

    The trial version of Dreamweaver is fully functional. The only limitation is that it stops working after 30 days. If you're having problems with getting the software to work correctly, it might be a good idea to try posting a question in the Downloading, Installing, Setting Up forum, mentioning the fact that you've already posted here (otherwise, they might just transfer you back to this or one of the other Dreamweaver forums).
    If you can't make changes to files, it might have something to do with permissions or the user account that you've logged onto the computer with.
    When asking for help in the other forum, mention your operating system, and which version you're using. The problem might be related to your computer setup.

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How to add new row and update existing rows at a time form the upload file

    hi
    How to add new row and update existing rows at a time form the upload file
    example:ztable(existing table)
    bcent                      smh            nsmh         valid date
    0001112465      7.4                       26.06.2007
    0001112466      7.5                       26.06.2007
    000111801                      7.6                       26.06.2007
    1982                      7.8                       26.06.2007
    Flat file structure
    bcent                       nsmh         valid date
    0001112465     7.8     26.06.2007  ( update into above table in nsmh)
    0001112466     7.9     26.06.2007  ( update into above table in nsmh) 
    000111801                     7.6      26.06.2007 ( update into above table in nsmh
    1985                      11              26.06.2007   new row it should insert in table
    thanks,
    Sivagopal R

    Hi,
    First upload the file into an internal table. If you are using a file that is on application server. Use open dataset and close dataset.
    Then :
    Loop at it.
    *insert or modify as per your requirement.
    Endloop.
    Regards,
    Srilatha.

  • How to add new fields to the system form (Ex.expenses to a/r invoice form)

    hi
    can any one tell me how to add new fields to the system form (Ex.expenses to a/r invoice form)
    i want to add expenses field to system a/r invoice form and connect data base also.
    i used the code of samples\11.system form manipulation(vb.net) but i'm not able to get it....so can any one help with code or concepts.
    reply soon plz..
    thankQ

    If I understood you correctly, you are just trying to add new fields to the invoice form and then use them in your form. you should first go and add the field to your tables, which you would do by going to Tool --> User Defined Fields --> Manage User Fields. There are different documents or categories given. For ex. for invoices, Sales Orders you would add your field under the Marketing Documents. If you want the field to be just one per invoice, add it to the Title, otherwise if you want a field per invoice or Sales Order line, add it to the Rows section. Once you have done that then you can just create a edit box or drop down to represent the field and set the datasource for that to your field. If you want example code to do that, let me know.

  • I have just purchased Logic Pro X and it doesn't seem to want to work with my Tascam us-122L sound card. Do i need to purchase a new one and if so, any advice on a reasonable priced one?

    I have just purchased Logic Pro X and it doesn't seem to want to work with my Tascam us-122L sound card. Do i need to purchase a new one and if so, any advice on a reasonable priced one?

    What OS do you have? Have you tried the latest drivers?
    http://tascam.com/product/us-122l/downloads/
    alternatives: Focusrite Scarlett 2i2, Presonus Audiobox.

  • Ever since the last update I don't have my old bookmarks, can't add new ones and can't import my HTML file. How do I fix this?

    ever since the last firefox update I don't have my old bookmarks, can't add new ones and can't add my HTML file of my bookmarks

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • ALV  List Layout add new button  and modify Append Row Button Text and Logi

    Hi All,
    I am working on Employee custom development Application in Webdynpro ABAP>
    In my ALV list Layout  I have to add new  two Buttons  Top or Bottom of the ALV List.
    If I am adding I have to add logic for those Buttons. How to add and add logic for those buttons.
    as well as I have to Change the  Text  for  Existing Button ''Append Row''    to  "ADD NEW ROWS"
    and I have to add logic in this button while Append New Row I have to generate ID no for New Rows .
    Kindly help/advice  me to proceed further.
    Thanks in advance.
    Dav

    Hi Dav,
    To Add buttons please refer this thred,
    ALV with user-defined buttons on toolbar in wd abap
    To change or rename text in ALV standard buttons, please refer this ...
    How can i change the text of an standard button in ALV?
    and also see this article on self defined functions...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/101df93f-4b5c-2910-14aa-9eb0338c2110?quicklink=index&overridelayout=true
    Thanks,
    Kris.
    Edited by: kissnas on Feb 22, 2011 5:59 AM

  • How can I add new songs and videos...?

    How can I add new songs and videos to my ipod without syncing as it wants to wipe out the ipod and replace all the existing media?

    On the ipod itself?  If so how?
    I've tried checking on box by the sync music to deselect "Entire music library", but get the  message about "Are sure.... All existing content on the iPod will be removed and replaced...".  However, I don't want to do that as there is music on my ipod I don't want to loose, got it from a previous computer that crashed and could not be recovered.

  • I recently had to set my laptop back to factory settings, thus had to reinstall Itunes.  I connected my Ipod to the lap top my songs went back to my Itunes but when I add new songs and try to sync my Ipod, the new songs won't appear on my Ipod.  Help me!!

    I recently had to set my laptop back to factory settings, thus had to reinstall Itunes.  I connected my Ipod to the lap top my songs went back to my Itunes but when I add new songs and try to sync my Ipod, the new songs won't appear on my Ipod.  Is there someone out there that can help me out? I would appreciate it!

    Hi NYYJMM,
    Thanks for visiting Apple Support Communities.
    You may want to reset your iPod nano and then sync again. If the issue persists, restore your iPod and try again. See these articles for the steps:
    How to reset iPod
    http://support.apple.com/kb/ht1320
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    Best Regards,
    Jeremy

  • Impossible to add new contact or edit

    l can't add new contact or edit on my phone

    Hello !
    Try the following:
    Simply delete all the  Messenger apps (Yahoo, MSN or Live) which you might have upgraded recently / delete apps which were recently installed before the error which actually started occuring .
    After that unplug the battery while the phone is still "on" and restart the phone.
    In fact I had deleted a whole bunch of apps to facilitate my OS upgrade as I did not have enough memory on my Device.  
    This not only helped solve my above mentioned problem but also made my phone restart in less than 3 minutes (the earlier reboot was done in not less than 15  minutes !!).
    Therefore my conclusion as from the above incidents is to keep your apps in the bare minimum so that your phone performs to the best.
    Hope this resolves your Problem!
    If your problem has been resolved then would request you to Click on "Like" and accept as "Solution" so that other Advisors doesnt invest their time on this Message anymore.
    Thanks.

  • Cannot add new contact or edit existing one

    Cannot add new contact or edit existing one. TH GSM, curve 8900, OS v5.0.01067, file free none ,battery pull didn't fix the problem, applications Google maps 3.0.2, whatsapp 2.6.2177. Device even freezes when trying to add or edit . Thanks

    I am having the exact same problem!!  I hope we get an answer.

  • I cannot remove albums and playlists from my iPhone; I deselect them in iTunes, but they remain.  I can add new albums and playlists

    I cannot remove albums and playlists from my iPhone; I deselect them in iTunes, but they remain.  I can add new albums and playlists

    How did the photos/albums get onto the phone ?
    Only photos taken with the iPhone or saved from emails/websites etc can be deleted directly on the phone - either via the trashcan icon at the bottom right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it top right in thumbnail view. Albums that you've created directly on the phone can be deleted via the Edit button at the top right of the album selection screen.
    Photos/albums that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from on your computer and then re-syncing

Maybe you are looking for

  • Event Generator Configuration

    Hi there I'm developing an process application for which i have configured two timed and a jms event generator. The question I have is, is it possible to export event generator configurations from my dev box and simply import them into wliconsole on

  • How do i copy/burn my library onto dvd/cd?

    Hi i am quite a computer novice so please speak in none technical terms. I would like to back up my itunes library onto a dvd or even several audio cds. My library is only 4GB and i had tried: 1. to copy library into playlist and then use the icon to

  • Export preferences

    Is there a setting where my export setting only pertain to that file so if i open another file it exports differently for example i have one file that must always be exported as a interactive PDF and the others as print PDF, each time i change this p

  • HT5246 I have downloaded Flashback Malware Removal tool, now where do I find it and how do I get to run?to run

    I have downloaded Flashback Malware Removal tool, now where do I find it and how do I run it?

  • ADI0052E: TSM API Error: ANS1311E (RC11)   Server out of data storage space

    Hello guys, I have a problem with the backup on MaxDB. It always fails with the following error message ADI0052E: TSM API Error: ANS1311E (RC11)   Server out of data storage space Has anyone faced this problem before? Any solution how could this be s