How to customize view from?

Hi I created a view in SP designer 2013, and it came out like a straight list form.... (see Below)
[IMG]http://i60.tinypic.com/2zpt5ad.png[/IMG]
but I went ahead and created a form in INFOPATH, but wasn't successful on migrating it over..
So is there a way in SP designer  2013 to split the form up like I have below?
[IMG]http://i62.tinypic.com/dljqqp.png[/IMG]
Please click on links to view the image.
Thank you

Hi,
According to your post, my understanding is that you want to customize the form to view split up side by side.
With SharePoint Designer 2013, owing to a lack of a design view, this is no longer possible.
However, it was possible to open a SharePoint 2013 site in SharePoint Designer 2010, it is still considered a hack and is unstable.
If you wish to find out how we can open and design data views using SharePoint Designer 2010, refer to this blog post by Laura Rogers:
Hack: Data View Web Parts in SharePoint 2013
You can use the SharePoint Designer 2010 to design your view.
For more information, you can refer to:
Overcoming the Lack of a Design View in SharePoint Designer 2013
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • How to call view from Diffrent Components

    Hi Experts,
    In my application 5 component(comp1,comp2,comp3,comp4,comp5) under one DC.
    In Comp1-> View1 have a drop down to select business operations, View Container with empty view while starting.
    Ex: one,two, three, four list of values in drop down.
    If i select Two from drop down, it should  display view from comp2->View1 in ViewContainer.
    Like this it should display view from diffrent component in comp1->View1 (Inter Componet Communication).
    This application developing in CE 7.1 & NWDS 7.1 not in 2004s..
    Please any one help me to do this requirement .....
    Thanks in advance..
    Regards, 
    Satya.

    Hi,
    The simplest solution in this case is to create another DC component.
    This will have a single window with (a) ViewSet Container(s). Then you will have to create a window per view in your first DC Component.
    After this - you will need to add the first DC component to the second DC component (under used DC Components). This is done by first creating public parts of the first DC and adding to the second, following which you need to right click "Used DC components" in the second DC and select the first. You may need to do this multiple times for different windows.
    After this - in your second DC you will need to embed the Component Interface views of each of the windows to the View Set Containers (as created previously).
    Next you will need to write some code in the onSelect Action for the DropDown that will manage the visibility of the different views.
    Let me know in case there are any further issues.
    Thanks.
    HTH.
    p256960.

  • How to open Viewer from other apps? - App 'URL Scheme' has disappeared from Viewer Builder!

    Hello
    The 'URL Scheme' option in the Viewer Builder did let me to specify a url that made other apps open my viewer. But this option has disappeared from the newer version of Viewer Builder. So. How do I do now to let other apps open my viewer?

    Is there a spacial reason that the URL scheme option was taken away from ordinary Multi-issue viewers? It was there in earlier version. I'll explain our situation:
    Our client want to publish corporate information; annual reports etc, with DPS. Not really magazines or newspapers you subscribe to.
    We are making another app where they publish news articles, videos etc. In that app, we want to have a link which opens the viewer with their publications.
    To make this simple thing work, we have to create a 'subscription' to content which is not relly good for subscribing (it is free and announced with push anyway). We also have to tell the client to create Privacy Policys etc for this. A lot of hassle for something we do not really want.
    Any chance that this option will come back in v19?

  • How to customize View to combine UITextView and UITextField?

    I'd like to include one UITextView and one TextField in the headsection of tableView. So I subclass UIView and tried to override the drawRect method. I read the reference guide of UITextField drawRect method, "You should not call this method directly." How can I include a UiTextField in my customized UIView?
    when I called method drawInRect, it broke, please kindly find my code as follows.
    And I found UITextView has no drawTextInRect, I called drawRect instead, but it did not work and I had no output.
    - (void)drawRect:(CGRect)rect {
    // Drawing code
    UIImage *myImage = [UIImage imageNamed:@"zzm_o.png"];
    [myImage drawInRect:CGRectMake(0, 0, 80, 60)];
    UILabel *labelTest = [[[UILabel alloc] initWithFrame: CGRectMake(0, 50, 200, 20)] autorelease];
    labelTest.font = [UIFont systemFontOfSize: 15.0];
    labelTest.textAlignment = UITextAlignmentLeft;
    labelTest.textColor = [UIColor blueColor];
    labelTest.backgroundColor = [UIColor whiteColor];
    labelTest.text = @"Test Label";
    //[labelTest drawTextInRect:CGRectMake(0, 50, 80, 30)];
    /*UITextField *aTextField = [[UITextField alloc] initWithFrame:CGRectMake(0, 50, 200, 20)];
    aTextField.borderStyle = UITextBorderStyleBezel;
    aTextField.textColor = [UIColor whiteColor];
    aTextField.font = [UIFont systemFontOfSize:15.0];
    aTextField.placeholder = @"<enter email>";
    aTextField.backgroundColor = [UIColor blackColor];
    aTextField.keyboardType = UIKeyboardTypeDefault;
    aTextField.returnKeyType = UIReturnKeyDone;
    aTextField.delegate =self;
    aTextField.clearButtonMode = UITextFieldViewModeWhileEditing; // has a clear 'x' button to the right
    [aTextField drawTextInRect: CGRectMake(0, 50, 80, 30)];*/
    UITextView *commentBodytextView = [[[UITextView alloc] initWithFrame:CGRectMake( 0, 0, 200, 100)] autorelease];
    commentBodytextView.textColor = [UIColor whiteColor];
    commentBodytextView.font = [UIFont systemFontOfSize:15.0];
    commentBodytextView.backgroundColor = [UIColor blackColor];
    //commentBodytextView.delegate = self;
    //textView.backgroundColor = [UIColor whiteColor];
    commentBodytextView.scrollEnabled = YES;
    //commentBodytextView.opaque = YES;
    //commentBodytextView.alpha = 1.0;
    commentBodytextView.text = @"Now is the time for all good people to come to serve their country.\n\n\nNow is the time for all good people to come to serve their country.";
    commentBodytextView.editable = NO;
    [commentBodytextView drawRect:CGRectMake( 0, 0, 200, 100)];
    UIFont *font = [UIFont boldSystemFontOfSize:20];
    [[UIColor whiteColor] set];
    NSString *string = @"Molinker Test!";
    [string drawAtPoint:CGPointMake(0, 65) withFont:font];
    }

    I'm afraid you've somewhat misunderstood how these things work in Cocoa Touch. drawRect is for custom drawing with Core Graphics routines. If you want to put one view under another, just use addSubview: to make the subordinate view a subview of the containing view; Cocoa Touch will take care of making sure both views are drawn. You should only have to do this once, probably immediately after you allocate and initialize both views.

  • How can I view from Forms 6 the name of files that i have in a directory?

    Hy !
    I need some help :(
    I want to make a form. This form must tell me the name of the files that are in a directory.
    How can i do that ?
    Thanks!

    Hello,
    If you are using the C/S deploiement mode, you could find all that you want in the d2kwutil.pll library.
    Francois

  • How to retreve images from DICOM

    Hi ,
    I would like to ask a question regarding DICOM objects in database 11g .
    I would like to develop an application in java where i can read from dicom objects and display them in the web application (kinda dicom viewer)
    The question is how can i display the images from DICOM object , or the video ? If a dicom objects has more than one image how can i display them all?
    I was reading the samples about converting dicom in OrdImage but can i get all the images from 1 dicom object and display them all ?
    Can anyone give me a suggestions am getting really confuse with all this .
    Thannks in advance,
    Regards!

    This will be part of my application in java . So i need to develop something mine . What am looking for is how i can view from my web applications all pics of one dicom file and even video if there are ?
    Any help or hint for this? Or if this can be done with the java api that oracle has?
    Thanks

  • Call view from one DC to anothe Dc

    Hi ,
    How to access view from one DC to another DC.
    Please give me details.
    Thanks
    Risha

    go through this thread [Accessing one DC from Another|Re: interacting one DC with another DC]
    nikhil

  • How can I remove the Demo Viewer from my MacBook?

    How can I remove the Demo Viewer from my MacBook?

    Drag it to the Trash.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Lost my url address window. U clicked "customize toolbar" from "View"  but no instructions on what to do next. HELP! on

    Lost my url address window. I clicked on "Customize toolbar" from "View" but there were no instructions on what to do next. How do I get url window back?  Thanks!

    Hello:
    Simply drag what you want (view>customize toolbar) to the toolbar.
    Barry

  • How to call a maintenance view  from a program

    Hello Abapers,
    Can anybody explain with some examples. How to call a mainetenance view from a program.
    Thanks
    Ranjith.

    Use FM 'VIEW_MAINTENANCE_CALL'.
    REPORT  zmaintaintest.
    VARIABLES / CONSTANTS                          
    CONSTANTS: 
                    c_action(1) TYPE c VALUE 'U',                                 "Update
              c_viewname TYPE tabname value 'ZEMP_EXAMPLE', "View Name
              c_field(6) TYPE c VALUE 'EMPNO'.                            "Field Name
    INTERNAL TABLES
    DATA: itab_rangetab TYPE STANDARD TABLE OF vimsellist,
              v_empno TYPE zempno,
              wa_rangetab TYPE vimsellist.
    SELECTION SCREEN
    PARAMETERS:     p_empno TYPE   zempno   OBLIGATORY.  "Emplyee ID
    AT SELECTION-SCREEN                                                 
    AT SELECTION-SCREEN.
    Chcking the existence of the user in EMPLOYEE table
      PERFORM validate_employee.
    START_OF_SELECTION                                                  
    START-OF-SELECTION.
    This will restrict the user view so that user can only view/change
    Table data corresponding to his/her Employee ID
      PERFORM define_limited_data_area.
    Displaying table maintenance view for a particular employee ID
      PERFORM call_view_maintenance.
    *&      Form validate_employee
    Validate plant entered in the selection screen
    FORM validate_employee.
      SELECT SINGLE empno     u201CEmployee ID
        FROM zemp_example     u201CEmployee Table
        INTO v_empno
        WHERE empno = p_empno.
      IF sy-subrc <> 0.
        MESSAGE 'Not an Valid User' TYPE 'I'.
      ENDIF.
    ENDFORM.                    "validate_employee
    *&      Form DEFINE_LIMITED_DATA_AREA
    To restrict the user view so that user can see/change table data
    corresponding to his employee ID. Here one internal table is
    getting populated with field name as u201CEMPNOu201D (Key field of the table)
    And value as given by user in Selection Screen and this is passed as
    Parameter in function module 'VIEW_MAINTENANCE_CALL'
    FORM define_limited_data_area.
      CLEAR wa_rangetab.
      wa_rangetab-viewfield  = c_field.
      wa_rangetab-operator  = 'EQ'.
      wa_rangetab-value       = p_empno.
      APPEND wa_rangetab TO itab_rangetab.
    ENDFORM.                    "define_limited_data_area
    *&      Form CALL_VIEW_MAINTENANCE.
    Displaying table maintenance view for a particular employee ID
    FORM call_view_maintenance.
      CALL FUNCTION 'VIEW_MAINTENANCE_CALL'      
        EXPORTING
          action           = c_action
          view_name   = c_viewname
        TABLES
          dba_sellist     = itab_rangetab.
    ENDFORM.                    "call_view_maintenance
    Regards,
    Joy.

  • How to Customize the Message "No Row Returned" from a Report

    Hi,
    I've been trying to customize the Message "No Row Returned" from a Report.
    First i followed the instructions in Note:183131.1 -
    How to Customize the Message "No Row Returned" from a Report
    But of course the OWA_UTIL.REDIRECT_URL in this solution did not work (in a portlet) and i found the metalink document 228620.1 which described how to fix it.
    So i followed the "fix" in the document above and now my output is,..
    "Portlet 38,70711 responded with content-type text/plain when the client was requesting content-type text/html"
    So i search in Metalink for the above and come up with,...
    Bug 3548276 PORTLET X,Y RESPONDED WITH CONTENT-TYPE TEXT/PLAIN INSTEAD OF TEXT/HTML
    And i've read it and read it and read it and read it and can't make heads or tails of what it's saying.
    Every "solution" seems to cause another problem that i have to fix. And all i want to do is customize the Message "No Row Returned" from a Report. Please,...does anyone know how to do this?

    My guess is that it only shows the number of rows it has retrieved. I believe the defailt is for it to only retrieve 50 rows and as you page through your report it retrieves more. So this would just tell you how many rows was retireved, but probably not how many rows the report would contain if you pages to the end. Oracle doesn't really have a notion of total number of rows until the whole result set has been materialized.

  • How can I view my iCloud contacts from someone else's iPhone? I don't want to change their phone settings.

    Yesterday I ran into a problem that was eye opening to say the least. I could not not access my contacts in order to find a friend's phone number. No one remembers phone numbers any more. God knows I don't.
    I was on a jetski and it broke down. I was stranded at a dock miles away. I needed to contact my friend to tell him (a) I'm ok, (b) where I was, (c) to bring a tow. Of course I had no phone on me because it would have gotten soaked.
    People were kind enough on the dock to let me use their smart phones to attempt to retreive the phone number and call for help. But I quickly discovered that it is impossible.
    On an iPhone, I tried to use their Safari browser to go to www.icloud.com. When you do that, it simply redirects you to the apps. But it isn't my phone, and their apps are logged in to the owner's accounts. I wasn't about to update the settings in a stranger's phone.
    One guy let me try his iPad with Cellular. Same problem as the iphones. It would not let me use www.icloud.com. It insisted that I use the native iOS apps.
    On an Android, www.icloud.com would simply refuse to work. It would say it was not supported.
    The question I have is: How can I view my contacts from someone else's smart phone in an emergency situation?
    Second question: Why can't I use www.icloud.com on a smart phone's web browser like I can on regular computer?
    I got lucky. I happened to know my mom's home number. Many hours later she was home and I was able to use a phone to call her. She brought up www.icloud.com on her home computer, logged on as me, and read me the phone number I was seeking. But what are the chances of being able to call a trusted person who has access to a computer to do this for you?

    Without "pretending" to be yourself on the other phone (change settings) there's nothing else you can do.
    iOS devices are meant to be single user and can't view iCloud.com the same way a Mac or PC can do.
    You need to find a desktop or laptop machine (Mac or PC) to log in at iCloud.

  • How to call a view from another

    Hello Experts,
            I have embedded a view (let us call this view 'A') in standard homepage. This works fine. Now on click of a button on this embedded view I want to launch another view that is also created by me, in the same component in which I had created view A. But I do not know how to launch this second view
         Could you please tell me how to call/launch a view from another on click of a button?
    Regards,
    Prafful

    Hello Prafful,
    I guess by launching you mean substituting one view by another. It can be achieved by declaring a navigational link in the runtime repository from one view to another. You have to create an event handler on the button and outbound plug in your view using the wizard. Then, on the event handler you call an outbound plug where you trigger a navigation using this navigational link and the view A will be replaced by view B.
    A code which needs to be done in outbound plug:
    me->view_manager->navigate(
    source_rep_view = me->rep_view
    outbound_plug   = 'NAVLINKNAME'
    data_collection = iv_data_collection ).
    Best Regards,
    Yevgen

  • How to refer one view from another view?

    Hi,
    I have 2 views in my Adobe Flash Builder mobile app. I need to refer the first view in my second view.
    How to refer one view from another view? Or how to create a reference to a view wherever needed?

    I don't need any data from my first view. In a certain flow, I need to make my first view to be invisible.
    for eg., My First view is in portrait mode. I change the device to Landscape. In the landscape mode, I want to show a completely different view (second view).
    In this case, what happens is, I see my first view in Landscape mode for a second. Then the second view appears. When I change to Landscape mode, only the second view should be seen. I need to make my first view to be completely invisible in the OnOrientationChanging event of
    StageOrientationEvent
    As stage object and StageOrientationEvent works at application level, I need to know how to refer my first view object in the application level.
    private function onOrientationChanging(soe:StageOrientationEvent):void
          MyFirstView.Visible = False; ====> don't know how to refer MyFirstView here
    Is my question clear now?

  • Using family sharing, how does one view and download songs from a family member's collection in itunes?

    Using family sharing, how does one view and download songs from a family member's collection in itunes?

    When you click on your device you are presented with the pages
    Summary
    Info
    Apps
    Tones
    Music
    Movies
    TV shows
    Books
    Photos
    To remove Audiobooks depending on the type of Audiobook ie a series of mp3 files you will find under music and probably have to deselect the album name to remove it. I don't have any of these as I download from Audible or I use Audiobook Builder to stictch together mp3 files into m4b files. To find these Click on Books you will immediately see a section for books (in reality ebooks). Scroll down past that and you will see Audiobooks where you can select and deselect. Deselect the required Audiobooks and Click Sync

Maybe you are looking for

  • Video on TV out has gray bars

    I've been adding some videos to the iPhone and they look and play just fine on the phone and on the computer. However, when I hook it up to my plasma, I will get some translucent gray bar on the bottom of the video. The rest of the area above the bar

  • How to make path object clickable in flex 4.0

    hi , i apprechiate if any one can help me out  with my problem here as i am new to flex I am developing a flex web application and in one my components i need to draw paths around some shapes , i did this easily but my problem is that i need to make

  • My hard drive died, it was replaced, now I don't have lion - can I get it back?

    I got my Macbook Pro LAST July (2011), and because of the timeframe I got it in, I was able to enter a code and get LION for FREE! I loved the hand gestures, but my hard drive died, and I got it completely replaced.... it seems like it went back to s

  • ASA Dynamic Access Policies Issues

    Hi I have created a simple DAP to match a specific tunnel group (AAA attribute) and also to match endpoint attributes matching AnyConnect client version 3.1.xx and OS as Win7. When i test the DAPs on ASDM, i see that the custom one i created is selec

  • Webpart page in a publishing site

    I have a Sharepoint 2013 on premise environment. Does anyone know how to add a webpart page or add the functionality so that it's a little easier and more consistent? Here is an article outlining how one might add a wepart page but my issue is that e