How do I customize the forms to the SharePoint list

I need to customize a form to a SharePoint list that I created in Visual Studio.
After the deploy list, try to customize the EditForm.aspx, NewForm and forms, however when publishing the form of a message that basically says catastrophic error is displayed:
This form is not a standard SharePoint.
How do I customize the forms to the list created?

Hi,
Here is a link which describe how to customize SharePoint list forms using Visual Studio, Please compare it with your code and see if there is any possibility causing the error.
http://www.codeproject.com/Articles/223431/Custom-SharePoint-List-Forms
More important, I’d strongly recommend you using InfoPath Form to custom list form for SharePoint. For your convenience:
http://msdn.microsoft.com/en-us/library/office/aa947697(v=office.15).aspx
Regards,
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] .
Rebecca Tu
TechNet Community Support

Similar Messages

  • How to execute the data in the form when the data is already avaliable

    Hi,
    I am working with forms 6i. I have a problem while executing the data in the form
    Actually, the data is already present in the form. But when i run the form, the data is not displayed.
    can anyone please help me how to execute the data. below is the code
    Set_Alert_Property(alert_id,ALERT_MESSAGE_TEXT,'Do you want to refresh new Data for that Year and Field ? (it will take a time).') ;
                   SET_ALERT_BUTTON_PROPERTY(alert_id, ALERT_BUTTON1, LABEL, 'Yes');
                   SET_ALERT_BUTTON_PROPERTY(alert_id, ALERT_BUTTON2, LABEL, 'No');
                   SET_ALERT_BUTTON_PROPERTY(alert_id, ALERT_BUTTON3, LABEL, 'Cancel');
                   button_number :=Show_Alert(alert_id) ;
                   synchronize;
                   if button_number != ALERT_BUTTON3 then
                        if button_number = ALERT_BUTTON1 then
                             :param.field := :control.f_cd;
                             :param.year := :control.year;
                             build_tables;
                             fields;
    -- areas(:param.field);
                             PUT_PARAM;
                             COMMIT_FORM;
                        go_block('wet_criterias');
                        end if;
                        if button_number = ALERT_BUTTON2 then
                             :exhibits.field_display := :control.f_name || ' - Exhibits';
                             go_block('RESERVOIR');
                             execute_query;
                        end if;
                   end if;
              end if;
    else
         message('Fields must be entered...');
    end if;
    else
    message('Fields must be entered...');
    end if;

    It's hard to know what logic you are trying to implement.
    However, by looking at your code, it seems that if the user select 'Yes' to the question "Do you want to refresh", nothing is done except the go_block('wet_criterias'). Should there be an 'Execute_Query' ?
    No idea...

  • How do you customize your sync with the new itunes?

    How do you customize your sync with the new itunes?

    Connect the device
    Tap the icon for it towards the top right of the iTunes window
    Same as before...
    tt2

  • How to Unload the form when the user presses Escape Key

    Hi all
    I have tried several triggers for unloading the form when the user presses escape key,but none of them worked. Could any body give the trigger name and the code that unloads or closes the form when the user presses escape key.

    Hello,
    Change the EXIT entry of you ressource file:
    27   : 0 : "F4"             : 32 : "Exit"Francois

  • How can i store oracle forms in the database.

    hi,
    i m using oracle 10g and forms 6i. is it possible to store the forms in the database, is it possible plz tell the steps.
    with thanks and regads
    anish kumar

    It's possible to store any file in a database as a blob. The steps are the same for a FMX as it is for any other type of file.
    See
    http://www.dbasupport.com/oracle/ora9i/storing_word_docs.shtml
    However, if you are doing this because you want to use Forms Builder to to query the database for a form and run it, then that may not be possible.

  • Displaying the current users information instead of the value of the person who completed the form in the first place.

    I found this fantatic post regarding querying the user profile service 
    http://blogs.technet.com/b/anneste/archive/2011/11/02/how-to-create-an-infopath-form-to-auto-populate-data-in-sharepoint-2010.aspx?pi47623=2#comments 
    However i have an issue whenever the form is opened again either to view or edit, it displays the current users information
    instead of the value of the person who completed the form in the first place.
    Please help me, I'm turning more grey each minute

    I think it is how the current user information is stored based on your logic.
    You might be quering current value again when loading the form (Form load Rule).
    you have to tweak your logic, after the user submits the form you can set the username to the one who saved it.
    or in form load, write a logic to see if the form was not saved before and then query the username( by using internal field like "formstatue")
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • I have a pdf registration form on my website.  It has a link that take the user to a payment page within my website.  They pay then submit the form.  The link currently opens in the same browser tab as the form and the user thinks that is the submission,

    I have a pdf registration form on my website.  It has a link that take the user to a payment page within my website.  They pay then submit the form.  The link currently opens in the same browser tab as the form and the user thinks that is the submission, which it is not.  I want my link to open into a new browser tab.  How do I do that?

    You can use the following JS code:
    app.launchURL("http://www.example.com", true);

  • Insufficient space on the form for the pasted content

    I am getting an error when i am dragging the table to the form
    "insufficient space on the form for the pasted content"
    how to rectify ?

    Hi Tarang,
    When you drag and drop data source to the form, it automatically sets the length equal to the field's data length.
    So you need to resize it to fit in the screen.
    for example:
    if you have a long text object in data source.
    when you drag and drop it gets both the coulmns TDLINE & other.
    but you only need to display the TDLINE so delete the other coulmn of this field in the form.
    thats how we resize tables. this is quite offen in nested tables.
    hope this helps,
    Cheers,
    Sai

  • How to update an existing item in a sharepoint list using the WSS adapter for Biztalk

    Is there a way that a record in SP list be updated using WSS adapter in biztalk ?
    BizTalk 2013 and SP 2013 ..
    Regards
    Ritu Raj
    When you see answers and helpful posts,
    please click Vote As Helpful, Propose As Answer, and/or Mark As Answer

    A ListItem has its own unique row id so in all likelihood, an insert with the same data will result in a new list entry. The Lists Web Service however, has an UpdateListItem method which will take an update request. [refer
    http://msdn.microsoft.com/en-us/library/office/websvclists.lists.updatelistitems(v=office.15).aspx ]
    There is another note in the conference (marked answered) to your List Item Update problem. Probably worth a try too. [refer
    http://social.msdn.microsoft.com/Forums/en-US/bee8f6c6-3259-4764-bafa-6689f5fd6ec9/how-to-update-an-existing-item-in-a-sharepoint-list-using-the-wss-adapter-for-biztalk?forum=biztalkgeneral ]
    Regards.

  • I am creating a form on LiveCycle Designer and I am trying to create a form that has a e-mail submit button.  When the butten is utilized it attaches the form to the e-mail in an plain text .xml format rather than the pdf format.  Is there a quick fix?

    I am creating a form on LiveCycle Designer and I am trying to create a form that has a e-mail submit button.  When the button is utilized it attaches the form to the e-mail in an plain text .xml format rather than the pdf format.  Is there a quick fix?

    Hi,
    You have the choice between xml or pdf, in later versions of designer you can choose with a dropdown on the email button Object palette, the "Submit As";
    In earlier version you had to edit the XML Source and change the format from xml to pdf (or vice-versa);
    Regards
    Bruce

  • The Form of the Short User Name

    Hello,
    I have a quick question about setting up accounts, notably about user names, and specifically about the form of the short user name (the one used for the home folder).
    I’m going to have to set up a computer with Snow Leopard for someone who knows even less about this stuff than me, so I’d like to do it properly from the start in order to avoid any problems, either immediately or down the road.
    In Leopard (10.5), Apple clearly says that the short user name should contain only lower-case letters (http://support.apple.com/kb/HT1428). For example, if your full name is “Charlie Brown”, or just “Charlie”, then presumably your short user name would be “charliebrown”, or just “charlie”.
    However, I’ve read that Snow Leopard now supports short user names with capital letters. So, if your full name is “Charlie”, your short user name, and the name of your home folder, can also be “Charlie” (with a capital “C”). This change is apparently not documented by Apple (as mentioned here:
    http://www.tuaw.com/2010/01/02/ssh-and-the-case-sensitive-username-in-snow-leopa rd),
    and there is one previous allusion to it on these forums (here: http://discussions.info.apple.com/thread.jspa?messageID=10722806).
    The use of short user names with lower case letters seems to have been the rule for a long time. I’ve read that this practice is attributed to some kind of Unix convention, although I’ve no idea if this is true (and I’ve even less of an idea of the reasons why Unix might prefer just the lower case to the regular combination of upper and lower case). Anyway, the thing is that I’ve read of problems being created by using capital letters in the short user name, for example when restoring from Time machine (see the last comment on this page:
    http://discussions.apple.com/thread.jspa?threadID=2266359&tstart=225), and so I’m asking myself two questions:
    (1) Is the use of capital letters in the short user name definitely supported now by Snow Leopard?
    And, more importantly, (2) is there is a “best practice” in this regard? In other words, is the use of lower-case letters in the short user name really some kind of a convention, and is this the advisable way to set up a machine? Or does it not matter at all which case one uses in the name?
    As I mentioned, I’d simply like to get things straight from the start in order to avoid future problems, since I know that changing the short user name is not particularly advised.
    Thanks to anyone who might be able to shed some light on this detail to help me understand what is going on here.
    Best regards,
    Stephen

    Thank you, Kappy, for your quick and helpful reply to my (admittedly) not very quick question!
    It strikes me as odd that Apple would appear to make the use of both lower- and upper-case letters possible in the short user-name, leaving the possibility that upper-case letters might lead to some problems/conflicts down the line. It would be helpful if they'd provide some explanation about this. Anyway, as I said, I'm very far from being an expert in all this, and appreciate that people like yourself on these
    forums are willing to provide helpful feedback.
    Best regards,
    Stephen

  • I want to post the values of the form in the same Jsp Page

    I want to post the values of the form in the same Jsp page.

    Was that a question? Or are you just informing the world of your grand intentions?
    But yeah, all you need to do is direct your action to the same page you're in. So, if this is your foo.jsp, it'd be something like...
    <%
    if(request.getParameter("bar") != null) out.println("Hello");
    %>
    <form method="post" action="foo.jsp">
       <input type="text" name="bar" value="baz">
       <input type="submit">
    </form>When you submitted your form, it would post the value to the same JSP page as you're already in, and print out Hello to the screen. "Hello" would not print out on the first visit, as the request would obviously not contain the parameter "bar" yet.

  • Color interface of the forms over the web are not confortable

    hello,
    the interface color of our application in the web are not realy confortable for our client comparing the old color used in our client/server application.
    we want to change it but we are not able the set a confortable color for our
    application :
    - if we use the lookandfell=generic but the color of toolbar are disable.
    - if we use the lookandfeel=oracle, the the choice of color for colorscheme is
    not variable (it exist only 5 choice).
    our environment ;
    OAS 10G (9041)
    FORMS 10G
    DATABASE 10G
    we use the forms Servlet (e.g. f60servlet/f90servlet) to invoke the Form over the Web.
    can you help us.
    thank's

    For as far as I can remember there is a difference between look-and-feel Oracle and Generic in displaying toolbar icon.
    Generic follows the Windows 9x/Internet Explorer approach of showing all toolbar icons as gray-tones and only showing color when you hover over them with the mouse. Oracle lookandfeel displays all toolbar-icons in color (as long as they are enabled).

  • Hi, after submission of the form, can the respondents make changes to their answers and submit the form again without completing every single question?

    Hi there,
    After submission of the form, can the respondents make changes to their answers and submit the form again without completing every single question?
    Thanks for your help
    Paline

    Hi Paline,
    Unfortunately this cannot be done.However, being the author of the form you can make the required changes in the response file.
    Thanks,
    Vikrantt Singh

  • I used Adobe Export PDF to convert an online form to word. I only got the form,not the fill-ins. ???

    I used Adobe Export PDF to convert an online form to word. I only got the form,not the fill-ins. ???

    Form document will automatically be saved after closing the file. As far as cloud message is concerned, it seems your Mobile link setting has been turned on. When you pressed device back button after filling the form, it was saved to your Acrobat.com account. You can access this document by going to Acrobat.com tab present in left pane. Its a cloud storage area where you can upload/save any document.
    Thanks,
    Adobe Reader Team

Maybe you are looking for