New Form View

When creating new forms, the light blue outlines is hard to see on the screen.  Is there any way to change the color?
Also, can you magnify the screen for better viewing?  I catch myself squinting at the screen to see if the boxes are uniform.

Hi,
I am sorry you are having trouble seeing things in the Design tab.  Unfortunately I don't have a good answer for either issue, the color of the fields is fixed, you can change the background color to try to obtain a better contrast but the white background is probably clearest.
For the zoom, our site doesn't zoom in browsers, the best I can recommend is changing your screen resolution so everything is bigger including FormsCentral, I know that isn't a great solution.
Thanks,
Josh

Similar Messages

  • Sharepoint new form but view old form

    Dear all,
    I'm with sharepoint 2010 without infopath.
    I had a form called newForm.asp for my time sheet.
    I created a new form in a files called mytimesheet.aspx.
    Then I copy/paste all the code from mytimesheet.aspx to newform.aspx.
    Everything I did is javascript only.
    But now I have a problem. With my account I can see the new form. But for all the other user when they access to the newForm.aspx, they still see the old form who doesn't exist anymore ... !!
    I tried to delete cache from their browser but the problem is still the same.
    I connect with one other user on my laptop and I still have the problem. And if I connect with my account to their laptop, it's working.
    Any idea ?
    thanks

    It seems that you are working on Windows XP operating system ..... try this setting:
    Open wireless network connection properties .... go to wireless network tab....
    remove all networks from preferred network list .......click "ADD" ..... type in the new network name under SSID blank space ......
     Network authentication leave it under "open" .....
     Data encryption make it disable .....
     Click ok ....
     Again go to "view available network" ..... try to connect to new network..... it will ask you for network key ..... type in the key ...... confirm it & click connect ........
    Wait for the message when it shows connected ............
    Try going online .......

  • xsl:if test="ddwrt:IfHasRights(16)" no longer working in a New form

    Hello all - 
    We have a list with some fields hidden for normal users, but approvers have edit access to these fields. The list has been working fine with the new,edit, and view forms all working as expected for over a year. BTW, this is on a Sharepoint Online site.
    Somehow, over this last weekend, although no changes were made to any of the forms, the New item form no longer works, but rather comes up with an "unable to display this web part" error. 
    So, in doing some troubleshooting, I created a new form for the list and confirmed that the new default form works fine. I then added in just the code for hiding a field and immediately the form came up with the "unable to display this web part"
    error. 
    Is this functionality no longer supported?
    btw, here's the code I tested in the new form:
    <xsl:if test="ddwrt:IfHasRights(16)"><tr>
    <td width="190px" valign="top" class="ms-formlabel"><H3 class="ms-standardheader"><nobr>Entry Status</nobr></H3></td>
    <td width="400px" valign="top" class="ms-formbody"><SharePoint:FormField runat="server" id="ff8{$Pos}" ControlMode="New" FieldName="Entry_x0020_Status" __designer:bind="{ddwrt:DataBind('i',concat('ff8',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Entry_x0020_Status')}" /><SharePoint:FieldDescription runat="server" id="ff8description{$Pos}" FieldName="Entry_x0020_Status" ControlMode="New" /></td>
    </tr>
    </xsl:if>
    Also, quick note that I double-checked to make sure that there was no other field on the form with ff8 already.
    TIA
    Michael

    Hi Michael,
    I have reproduced when I use this function for a field of a list from SharePoint online site, however it couldn't be reproduced from SharePoint on-premise.
    Not sure if SharePoint online update causing this, since we cannot check the ULS log according to the Correlation ID, I would recommend you post this issue in Office365 SharePoint Online forum via the following link, you can get a better assistance
    regarding SharePoint Online issue and there may be possible to involve the back-end support engineer to look into the issue.
    http://community.office365.com/en-us/f/154.aspx
    Thanks
    Daniel Yang
    TechNet Community Support

  • JDev 11.1.1.2.0: Problem with refresh in form view after delete

    Hi All,
    I'm trying to delete the current row in a form view with the delete binding operation and obviously I do NOT want to fire any validations so I use the immediate = true but that causes the ADF lifecycle to skip the update models phase and thus my fields are not refreshed with the new current row after the old row has been deleted.
    How can I fix this ?
    Thanks in advance,
    Mark

    First the standard disclaimer: SQL code should be in a servlet/bean. It has no place on a JSP.
    I would recommend you write a bean method that returns a list of objects, and then iterate over that list of objects on the JSP.
    What exception does is getting thrown?
    At a guess, your problem is that you are not releasing all resources. Connections, statements, resultsets...
    That is probably hidden inside your DBBean. You are maybe releasing your result set with the statement Rset.close() - but if an exception happens even that wouldn't be executed.
    Any sql code should be in a try/catch block, with resources being freed in the finally.
    Cheers,
    evnafets

  • The size of a form viewer

    Hi, friends,
    For some reasons, I would like to develop an off-line tool say a form viewer using Java Swing. The data will be stored in xml files. The form viewer will display the data as electronic form. A user can edit the form and store the updated form in another xml file. The tool should also allow to compare the data stored in two seperated xml files. The tool should also allow to merge the data in two seperated xml files and store the result in a new xml file.
    Do you have any idea of the size of this application?
    I would like to know if this tool can be sent by flopy diskette.
    Thanks in advance.
    Youbin

    Well, this question is objective... but based on how Java compiles code, it's hard to get applications up to 1.4 MB in size.
    The great thing about java is that it compiles only the classes that get used in your application. By comparision, C++ programs will compile all the files included in your application whether you use all the classes or not. This adds a lot of bulk to C++ programs.
    In general, you applications my reach up to a couple hundred KB if they are very complex. I would assume your xml application my be about 100 KB if it has a lot of classes involved. Plus you can compress the files into one Jar file to make it smaller and easier to distribute.
    Just from experience I would say you final application will be under 100 KB. Just my opinion.
    Also, remember the user of your application needs the Java runtime environment intalled...

  • How to construct a new complete view object programmatically

    HI,
    I want to construct a new complete view object programmatically. I have a result set based on the rows returned from this query i need to build the new vo and show it n a form. Please tell me the complete procedure to do this or else provide me any links.
    Thanks
    Satya

    Hi,
    have a look how dynamic tables are created (using af:forEach to iterate the attribute Defs for generating columns). Your approach is similar except that you not only need to know about attributes but also the rows to fecth
    1. create a tree binding for the view object
    2. create the binding with one hierarchy
    3. ensure all attributes are deleted for the tree binding (you do this manually in the PageDef)
    4. when executing the query for a new SQL, call clearForRecreate() on the DCIteratorBinding instance
    5. On the page, use af:forEach to create the form fields and labels for each row. Like for dynamic tables, you first need to determine the attributes to render (its a nested loop you are going for
    6. Updates of the form fields must be through a managed bean
    Frank

  • Display a text conditionally in a form view

    Hi Experts,
        I have a BAPI being used as a data service in my model.
    It returns a table.
    If that table is empty, i need to diplay a plain text message "Success".
    If the table has atleast one entry, I should display a text message "Not Success".
    How can this be achieved in Visual Composer?
    Regards,
    Ravi Kanth Talagana

    Drag a line from the output port of the bapi and select "Aggregate Data". 
    Select the new sigma operator that was added to the storyboard and in the configure element task panel select the field that you want to count and in the sigma field select 'count'.
    Drag a line from the out port of the Sigma operator and select form view.
    In the "Select Display Fields" box - select the field that the was counted by the sigma.
    Add a plain text control to the form. Select the control properties and in the Label field at the Display tab write the formula - "IF((@ - select the field from the form>0),'Succeess','Not Success')"
    Good-Luck,
    Dafna

  • Primary key in new form wizard

    I tried to create a form with report using the New Form Wizards. But it seems always hidden the primary key and if I make changes to the generated form or report, I normally end up with broken pages. I found the forms in the example application are against tables with sequence backed primary key. But all our tables are not use that approach. Does anyone know any work around?
    Another unrelated question about LOV? It seems the wizard require two different column to be used. If I want a list based on one column (like show all the possible value of one column), how can I do that?

    <zq>
    I tried to create a form with report using the New Form Wizards. But it seems always hidden the primary key and if I make changes to the generated form or report, I normally end up with broken pages. I found the forms in the example application are against tables with sequence backed primary key. But all our tables are not use that approach. Does anyone know any work around?
    </zq>
    <raj>
    i just created a "Form with Report" and a "Form on a Table or View" using the wizards on htmldb.oracle.com which i accessed a few different ways, and they seemed to consistently expose the primary key of my table in the form. if you're referring to your primary key column in your report being rendered as an edit icon, you can change that from the report column attributes screen for your primary key column. just use the popup LOV for the "Link Text" field in the "Column Link" region of that screen to select the primary key value from your query rather than the html image tag that's there by default. also, if you'd like to, let us know what tweaks you're making to your generated forms/reports that result in errors. we should be able to help you with those, too.
    i think the last part of your question above asks about using the wizards against tables that don't have sequence-backed primary keys. if so, i just did that on htmldb.oracle.com w/o issues. i might not be understanding your issue correctly, but it seems like you shouldn't have problems doing this. if so, though, please provide much more detail. we did have some issues with this stuff (and with the primary key column not being exposed as you mentioned above) in some earlier versions of html db. is it possible that you're not running of the most current version: 1.4.2.00.21 ?
    </raj>
    <zq>
    Another unrelated question about LOV? It seems the wizard require two different column to be used. If I want a list based on one column (like show all the possible value of one column), how can I do that?
    </zq>
    <raj>
    html db likes you to define your LOV queries using both a value to be displayed and a value to be returned to be submitted. if you'd like these values to be the same, simply select the same value twice from your table (being sure to alias the columns, which is always a good habit). so if you want to show and return all values of ename from emp, you could define your LOV query to be something like...
    select ename my_display_val, ename my_return_val from emp order by 1
    ...and that'd do it.
    </raj>
    hope this helps,
    raj

  • Crystal Report Windows Forms Viewer problems - table could not be found

    Hi,
    I installed Crystal Report Viewer in SAP Business One 2007. All the while, I can run the reports without any problem. but when I loaded some of the new report, it gives me the following error message:
    the caption says: "Crystal Reports Windows Forms Viewer"
    the message says: "The table 'paymentVoucher' could not be found.
    Error in file C:\...paymentVoucher.rpt. The table could not be found."
    By the way, I can run the report in another workstation.
    Any help or ideas of why this is happening or how to solve this will be greatly appreciated.
    Thanks in advance.

    The report is not created by me. I just help others to transfer the report from one workstation to another workstation. PaymentVoucher is a view in the database and it is being put at a workstation that can be shared by everyone.
    I've go through other forums and found out that it might be permission issues and now managed to solve the problem already.
    Thanks everyone for the advice.

  • XML Multiple Data Export/Import into New Form

    Is it possible to import an XML file with multiple form data (exported via "Merge data files into spreadsheet" option, then saved as XML) into a "template" form and create individual forms from the multiple data sheet? In other words, I've merged 65 forms' data into an XML file. Now I'd like to import it all back into an updated form.
    What I've been doing now is exporting the XML data individually for each form and importing each form individually into the new form.
    One option is to extend rights to the user to import nd export themselves, but I'm still looking into the Formrouter service, which, if implemented, won't be for a while.
    Any solutions to this painful process?
    Thanks - Derek
    I just realized this may be a question for a different forum...Acrobat... My apologies.

    Hi Derek,
    Without the LC Enterprise server product(s) I don't think you will be able to achieve this. Acrobat.com give a mechanism of distributing the form, I am fairly sure it will allow you to view the responses in a new form.
    Also applying reader extensions to the form with Acrobat will not help, as this removes the ability of importing/exporting XML. See https://acrobat.com/#d=3lGJZAZuOmk8h86HCWyJKg. If you are extending rights with LC Reader Extensions ES then this restriction should not apply.
    If you have the 65 XML responses, I would be inclined to bite the bullet and manually import the XML into the new form.
    Good luck,
    Niall

  • Unable to find the default new form for list mylist1 - deploying the list instance via module feature

    hi,
    am facing a problem deploying a list instance via a feature, 
      I created the list in the UI with content and views.
    Exported the site template as WSP.
    Imported into Visual Studio the list instance, pages module and property bags.
    Copied into my new solution.
    Deploy list instance as a site-collection level scoped feature.
    activated the below features :
    mylist_ModulesFeature
    mylist_ListInstancesFeature
    mylist_PropertyBagFeature
    List deploys fine with content and views. However, I receive the following error when trying to add a new item: “Unable to find the default new form for list”. The same applies for editing items.
    can anyone pls help why i am getting this  error ?

    try these links:
    http://tomvangaever.be/blogv2/2010/04/unable-to-find-the-default-new-form-for-list/
    http://sharebrad.blogspot.in/2012/08/unable-to-find-default-edit-form-for.html
    http://stackoverflow.com/questions/10243131/deploying-a-list-instance-to-sharepoint-2010-error-unable-to-find-the-default-n
    https://happiestsharepointminds.wordpress.com/2014/03/01/unable-to-find-the-default-edit-form-for-list-or-unable-to-find-the-default-display-form-for-list/
    http://itsolutionsblog.net/sharepoint-problem-with-library-forms-unable-to-create-folder-ore-edit-properties/
    http://blogs.technet.com/b/yashgoel-msft/archive/2013/08/30/recreating-default-display-edit-and-new-forms-of-a-list-in-sharepoint-2010-using-powershell.aspx
    Please mark answer as correct if it is correct else vote for it if you find it useful

  • Create New Form

    I am trying to create a new form that is the exact size of my envelope. I click Start - Printers, then select my Photosmart C6180. Click File, Server Properties, but the create new form button is grayed out. I am using Mail Merge w/Open Office, and I can print a test of the first envelope on letter paper, but not on the envelope itself. I have Vista-64bit

    I made a mistake in explaining but I don't think it mattered but let me see if I can explain better.   I create a work order in frmWO that writes to tblWO.   A relationship exists between tblVehicles and tblWO where I select the
    VehicleID on the frmWO.  Also on the frmWO are four dates.  WOStartDate, WOEndDate, LoanStartDate and LoanEndDate.   Also on the frmWO is a WOStatus field.   This acts as a control for billing purposes.  The Status can be
    Scheduled, Active and Completed. As an example of what is common, I create a WO for the initial delivery.  More often than not, the WO's are completed the same day.  So on the initial WO, I would choose the vehicle and the Loan Dates along with the
    WO start and end dates.   For instance, I create the work order for today with 4/9/2015 as the WO start date, WO end date, and the Loan Start date.   The Loan End Date would be 4/16/2015.  What I want to happen is click a "Create
    Return WO" button that creates the return WO with the Loan Start Date and End Date being the same but the WO start and end date now become what was the Loan End Date (4/16/2015) from the WO I was on when I hit the "Create Return WO" button.  
    I would like the WO Status to be "Scheduled", the VehicleID to be the same and then the dates from Above to be brought in as described.  There are a few other fields I want to transfer to the new WO as well but I figured if I could get what
    I have mentioned to work then I am pretty sure I can get the other fields I need by reviewing the code and adjusting it as needed.   Does this explanation help Tom?  I am not sure how to use an Append Query as that seems like it would Append
    something existing whereas I need a whole new WO to be created based on the one being viewed when I click the create button.   Let me know if I can provide anything more that helps clarify?  Thanks, Troy

  • Task List - Create New Form for Subtasks

    Hi, Is this possible to create a new form for SubTasks in SharePoint 2013 task List
    probably using Infopath. Out of Box, Sharepoint opens datasheet view to add the subtask for a main task. just want to know whether it is possible.
    Any help will be highly appreciated
    Ram Sharma

    Hi Ram,
    Per my understanding, you want to create a New Form for creating sub tasks.
    By default, the subtasks can only be created in the datasheet view, which means that there are some fields of a task cannot be filled in when subtask created, what’s
    more, there is no OOTB feature can meet this requirement.
    Actually, a subtask is also a normal task, the difference is that it can be connected with the parent task through a property “ParentID”. Let’s say if there is a task
    with “ID” 1, then the “ParentID” of its subtasks will be “1;#1”.
    Thus, as a workaround, you can create a custom New Form page with the extra “ParentID” field to be filled in. After submitting, a new task will be created, because
    the “ParentID” has a value which points to another task, this new task will be a subtask now. This can be done with Client Object Model programmatically.
    About how to work with Client Object Model:
    JavaScript Client Object Model
    http://msdn.microsoft.com/en-us/library/office/hh185006(v=office.14).aspx
    More information about JavaScript Client Object Model:
    How to: Create, Update, and Delete List Items Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx  
    Common Programming Tasks in the JavaScript Object Model
    http://msdn.microsoft.com/en-us/library/office/hh185015(v=office.14).aspx
    Best regards
    Patrick Liang
    TechNet Community Support

  • New GL View in AFS 6.3

    Hi,
    We did activate New GL and Document spliiting in AFS 6.0 and it worked fine but now we have upgraded the system to AFS 6.3 and i do not see a new GL view in the system though all configurations are in place.
    Regards,
    Roville

    Hi,
    Please see note 1070629 - FAQs: New General Ledger Migration
    https://websmp204.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1070629&_NLANG=E
    Extract :
    77. How can I deactivate classic Profit Center Accounting (EC-PCA) after activating the new General Ledger?
    Note 702854 explains how to deactivate classic Profit Center Accounting.
    If you use document splitting for profit centers in ERP2004, delete the dummy profit center from the table TKA01 also. For this purpose, Note 702854 provides the program Z30PCA23. Use the program Z30PCA23 to delete the dummy profit center of classic Profit Center Accounting in the controlling area.
    Hope this helps.
    Cheers,
    Gimmo

  • Open a new form based on the selection from the drop down list

    Good Morning Everyone,
    Can any one please advise how I can start to build the form that has a drop down list(DDL) to list other forms so the user can select one from the selection of that DDL to open a new form.
    e.g  A form in workspace ES3 with drop down list to list 3 forms: form1, form2, form3. When user select form1 from the DDL, then it will kick off the render servic to launch form1 in workspace ES3.
    Thanks in advance,
    HD

    Hi,
    I'm not surea about the data structure...Are there two ClassNodes, one for "VALVES" and one for "BOLTS"??
    and for scripting it is no good idea if the names of the attributes are value, don't know if this is your naming...
    but to access a node of the DATA view -->
    //var selection --> you have assigned "VALVES"
      var onodeCN =  xfa.resolveNodes("xfa.record.Classification.ClassNode[*].value");
    // get the node with the valves -->
                   for (var i = 0; i < onodeCN.length ; i++) {
                        if ( onodeCN.item(i).value == selection ) {
                                         //get the Leaves of Node VALVES
                                         var onodeVALS = xfa.resolveNodes("xfa.record.Classification.ClassNode[+i+].ClassLeaf[*].value");
                                         for (var j = 0; j < onodeVALS.length ; j++) {
                                           // insert values of Leave to 2nd drop down
                                XXX.addItem(onodeVALS.item(j).value, onodeVALS.item(j).value);
    ??works??
    norbert

Maybe you are looking for

  • Error when adding a provider

    Hi I am new to Biztalk RFID and am trying to follow exapmples from a book " Pro RFID in Biztalk Server 2009" When i try to add a contoso provider to the device simulator i get the following error The HTTP request is unauthorized with client authentic

  • Faster Importing From Mini Dv Tape...?

    In Adobe Premiere Pro, is there a way to import from a mini dv tape faster than real-time? 

  • My powerbook can't recognize a font!

    Hi, experts! I have a FFIL font(New Baskerville) for my web design job. I've copied it to Fonts folder a few times but either Font Book nor other applications such as Photoshop. Could anyone help me? Thanks in advance.

  • Menu Transition not playing completely

    I have an Encore Project with transition videos created to go from menu to scene selection, and scene selection to menu etc. I also have a first play / intro video. When I build out an image to test it, the intro video plays correctly (to lead into t

  • Acrobat XI - combine feature

    I have a paid account for Acrobat XI. The combine documents into one feature is missing. I have the other features of the paid account.