Dynamic tabstrip with embedded view

Hi,
my task is to create a tabstrip dynamically and assign a view to a dynamically created tab. I created a tabstrip dynamically:
METHOD wddomodifyview .
  DATA: lr_container TYPE REF TO cl_wd_uielement_container.
  DATA: lr_tabstrip TYPE REF TO cl_wd_tabstrip.
  DATA: lr_tab TYPE REF TO cl_wd_tab.
  DATA: lr_caption TYPE REF TO cl_wd_caption.
  DATA: lr_view_container TYPE REF TO cl_wd_view_container_uielement.
  IF first_time = abap_true.
    lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
    lr_tabstrip ?= lr_container->get_child(
         id        = 'TABSTRIP' ).
    lr_tab = cl_wd_tab=>new_tab(
                id = 'TAB1'
                view = view ).
    lr_tabstrip->add_tab(
        the_tab = lr_tab
    lr_caption = cl_wd_caption=>new_caption(
    id = 'CAPTION'
    view = view
    text = 'TAB1' ).
    lr_tab->set_header( the_header = lr_caption  ).
  ENDIF.
ENDMETHOD.
This works fine. In the next step I want to create a view container UI element and assign it to the TAB1.
Does anyone know how to to this?
The last step woud be that I embed a given view from another component to the created view container. I assume that this can be done as described in the following thread:
Link: [Re: dynamic reusability of components]
Is my assumption correct?
Best Regards, Eddy

Hi Pooja,
thanks, I enhanced the coding with your mentioned method. Additinally I added the code for embedding the view , but now I get an dump, saying:
View usage MAIN_VIEW_USAGE_1 does not exist in window W_MAIN of component Z_DYNAMIC_TAB
Here the enhanced code:
    lr_view_container = cl_wd_view_container_uielement=>new_view_container_uielement(
*    bind_enabled           =
*    bind_tooltip           =
*    bind_visible           =
*    context_menu_behaviour = E_CONTEXT_MENU_BEHAVIOUR-INHERIT
*    context_menu_id        =
*    enabled                = 'X'
         id                     = 'VIEW1'
*    tooltip                =
*    view                   =
*    visible                = E_VISIBLE-VISIBLE
    lr_tab->set_content( the_content =  lr_view_container ).
    lr_tabstrip->add_tab(
*    index   =
        the_tab = lr_tab
    lr_api_main = wd_this->wd_get_api( ).
        try
lr_api_main->do_dynamic_navigation(
  source_window_name        = 'W_MAIN'
  source_vusage_name        = 'MAIN_VIEW_USAGE_1'
  source_plug_name          = 'OUT_PLUG1'
  target_component_name     = 'ZEMTEST'
  target_view_name          = 'V_MAIN'
  target_plug_name           = 'DEFAULT'
  target_embedding_position = 'V_MAIN/VIEW1').
I assume, that the view ussage 'MAIN_VIEW_USAGE_1 must be defined statically. But I like to defiine the usage at runtime. Is this possible?
BR, Eddy
Edited by: Edgar Meyer on Jul 16, 2009 8:31 AM

Similar Messages

  • Dynamic accordion with dynamic datagrid

    I’m trying to create a dynamic accordion with embedded
    datagrids in each accordion area. I have the base working but have
    2 problems I can’t seem to figure out.
    Bases; the accordion uses a repeater and vbox with a custom
    component from a webservice result set to create the accordion. The
    custom component has another webservice that gets a value from the
    repeater to pass it to the custom component.
    My 2 problems:
    1. how do I prevent the custom component from running the
    webservice until the accordion item is clicked or the area is
    visible? Otherwise I end up will a bunch of queries hitting the DB
    and if there is several items for the accordion and many items from
    the datagrid its slower.
    2. how can I get the datagrid query to refresh when the
    accordion item is clicked? Because the data may change I am not
    able to see the updated data unless I reload the entire
    application.
    1 thing I did try. With the tab control you can use the
    show() event and the data will refresh just fine, but with the
    accordion, the show() event does not seem to fire. Its as if they
    are all visible.
    Any help here would be much appreciated, I’ve been
    racking my brain for days now and I sure it is something simple
    that I am missing. Thanks in advance.
    See the example code below.
    the application code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="100%"
    height="100%"
    initialize="ws.getMethod1.send()"
    xmlns:output="com.comp.*">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    [Bindable]
    public var thisWsdl:String = '
    http://localhost/webservice/service.cfc?wsdl';
    ]]>
    </mx:Script>
    <mx:WebService id="ws"
    wsdl="{thisWsdl}"
    useProxy="false"
    showBusyCursor="true"
    fault="Alert.show(event.fault.faultString, 'Error');"
    concurrency="multiple" requestTimeout="30">
    <mx:operation name="getMethod1">
    <mx:request>
    <param1>{param1data}</param1>
    <param2>{param2data}</param2>
    <param3>{param3data}</param3>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:Accordion width="100%" height="100%"
    fillColors="[#808080, #808080]">
    <mx:Repeater id="rp"
    dataProvider="{ws.getMethod1.lastResult}">
    <mx:VBox label="{String(rp.currentItem.catname)}"
    backgroundColor="#C0C0C0" width="100%" height="100%"
    paddingRight="10">
    <output:comp catid="{rp.currentItem.catid}"/>
    </mx:VBox>
    </mx:Repeater>
    </mx:Accordion>
    </mx:Application>
    the component code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%"
    height="100%"
    focusIn="ws.getMethod.send()"
    horizontalAlign="center"
    backgroundColor="#FFFFFF">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    [Bindable]
    public var thisWsdl:String = '
    http://localhost/webservice/service.cfc?wsdl';
    [Bindable]
    public var catid:int;
    ]]>
    </mx:Script>
    <mx:WebService id="ws"
    wsdl="{thisWsdl}"
    useProxy="false"
    showBusyCursor="true"
    fault="Alert.show(event.fault.faultString, 'Error');"
    concurrency="multiple" requestTimeout="30">
    <mx:operation name="getMethod2">
    <mx:request>
    <catid>{catid}</catid>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:DataGrid id="itemGrid"
    dataProvider="{ws.getMethod2.lastResult}" width="700"
    height="250">
    <mx:columns>
    <mx:DataGridColumn width="100" dataField="itemid"
    headerText="Item Id"/>
    <mx:DataGridColumn wordWrap="true" dataField="itemname"
    headerText="Item Name"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:VBox>

    Perhaps you could use the change event of the accordion, or
    the show event of the child containers?
    Tracy

  • Possible to view presentations with embedded clips  on the ipad from an external wifi  drive?

    Hello,
    first of all I am happy to have joined this community, my name is Chris from Germany.
    I am wondering if this setting is possible:
    I have bought an external wifi drive (Seagate Satellite Goflex) as well as the iPad4.
    I am giving lectures (powerpoint and keynote presentations containing lots of embedded video clips).
    Now I would like to show these presentations with my iPad connected to the Wifi drive.
    You have to download a special Seagate App on the iPad to be able to see the data on the external wifi drive - I have managed to open the powerpoint files in the App (unfortunately keynote files are not supported by the Seagate App) but when I open them with keynote or goodreader the embedded media will always be removed.
    Is this the end of the story or are there any solutions (i.e. with other hardware devices or software)?
    Have a nice New Years Eve and thanks in advance,
    Chris

    yes and no ...
    I have figured that out:
    First of all: you can`t just view presentations on an external device without importing them into your iPad (at least when you plan to show slides with embedded clips) - goodreader, filebrowser, dropbox ... just show you "static" slides.
    When you import a ppt-presentation into keynote all the hyperlinks, embedded clips ... are gone - no chance.
    But ... in keynote you are able to "embed" video clips when you drag and drop them directly into the slide alowing "copy video into the document" as well (that is "vital") - the files are getting larger but you don`t have to add a clip when you transfer it to another device (i.e. the iPad) - they are "fixed" in the document..
    Now seagate goflex has the problem that you just can`t open/view keynote presentations - but there is a solution:
    hacksatellite firmware. When you install that you can go into keynote, activate WebDav, import a keynote file from the external drive, edit it and send it back to the external drive - so: import (can`t live without that), show or edit the presentation, copy it again to the external device and delete the presentation in the iPad (to save storage) is the way you can get the optimum from the iPad at the moment.
    Correct me if there is any other more comfortable solution.
    Thanks for your reply Daniel,
    Christian

  • Problem in embedding view

    Hi,
    I have view container being dynamically generated . My requirement is to embed a standard view in it at run time.
    Please help me out.
    Thanks&Regards,
    Narendra N Shukla

    Hi Naren,
    Check out the methods:
    prepare_dynamic_navigation and do_dynamic_navigation of the interface if_wd_view_controller.
    I tested with a simple scenario the code for which follows:
    the scenario is i hv window main with a view v_test, at runtime i m creating a view conatiner vc1 within v_test and embedding the view v_test1 within it.
    the only difference between prepare and do methods is that former just creates the navigation link where as the latter fires the outbound plug too, so in ur case i suppose the prepare method shud suffice as u can fire the outbound plug only when a particular tab is selected.
      DATA: lo_api_v_test TYPE REF TO if_wd_view_controller,
            lo_comp_usage     TYPE REF TO if_wd_component_usage.
      lo_api_v_test = wd_this->wd_get_api( ).
      TRY.
          CALL METHOD lo_api_v_test->do_dynamic_navigation
            EXPORTING
              source_window_name        = 'MAIN'
              source_vusage_name        = 'V_TEST_USAGE_1'
              source_plug_name          = 'TO_V_TEST1'
       target_component_name     =
       target_component_usage    =
              target_view_name          = 'V_TEST1'
              target_plug_name          = 'FROM_V_TEST'
              target_embedding_position = 'V_TEST/VC1'
            RECEIVING
              component_usage           = lo_comp_usage.
        CATCH cx_wd_runtime_repository .
      ENDTRY.
    Regards,
    Shweta
    Message was edited by:
            Shweta R Shanbhag

  • CR report with embedded SWF: Export to PDF displays nothing

    I'm creating CR 2008 reports with embedded SWFs as described in the whitepaper [EMBEDDING XCELSIUS 2008 VISUALIZATIONS IN CRYSTAL REPORTS 2008|http://www.businessobjects.com/pdf/product/catalog/crystalreports/cr_xc_integration.pdf].
    From CR, I can export the report to html and view the report fine. But when I export to pdf, ppt, etc. The SWFs are not viewable. Is this a bug or by design?
    This section of the white paper seems to imply that maybe you cannot export to pdf:
    >TECHNICAL DETAILS
    >
    >Viewing Flash objects embedded in a Crystal Report is supported in the:
    >
    >Crystal Reports 2008 Preview tab
    >Crystal Reports 2008 .NET Webform viewer
    >Crystal Reports 2008 Java DHTML viewer (used in BusinessObjects Enterprise XI 3.0 and other products)
    >
    >Exporting and printing of Flash objects with connections to Crystal Reports data is not supported.
    >
    >Embedded Flash objects that do not have connections to Crystal Reports data can be exported to PDF only.
    I'm using the latest version of Adobe products:
    - Adobe Flash Player ActiveX, Version 9.0.124.0
    - Adobe Flash Player Plugin, Version 9.0.115.0
    - Adobe Reader 9, Version 9.0.0
    Also, I downloaded [CR Viewer 2008|http://www.businessobjects.com/product/catalog/crystalreports_viewer/] and can see the CR reports I've created with embedded Xcelsius swfs.
    Any information is appreciated. Thanks.
    Tim

    > ... it states in your first post, the export is not supported,
    True. It says:
    > Exporting and printing of Flash objects with connections to Crystal Reports data is not supported.
    But I can export such reports to html and view and print the flash objects.
    It seems inconsistent to me. I can export static flash charts to pdf, yet I cannot export dynamic flash charts to pdf, which is from Adobe, as is Flash?
    I'm hoping this is a temporary bug either in Crystal or pdf reader and is to be fixed in a patch release. Or an explanation of why the limitations exist.
    Thanks for the response.
    Tim

  • Reusing select option in different tabstrips of same view

    Hi Experts,
    I have a view. In this i have two tabstrips namely tab1 and tab2.
    I have created one select option and i am using it twice inside (two fields- one for date and one for register no.) one view controller of tab1.
    Now is it possible to use the same select option twice inside tab2. Note that here i have to create another view controller for tab2.
    Can u plz explain in details.
    Thanks in advance

    Hi,
    When you create the 2 viewcontainer Ui elements inside the 2tabs repsectively. Use the same instance of the Select options
    in both tabs would throw the error that same instance of Selectoptions already exists.
    You need to create the 2 select options instances, i mean Component usages to achieve the same.
    Is this dynamic. I mean embeding view inside the view container of Window context is dynamic or static.
    Regards,
    Lekha.

  • Dynamic alv creation in dynamic tabstrip.

    Hi,
    I have already created tabstrip dynamically, now i need to create alv dynamically inside the dynamically created view container.. how can i embed the interface TABLE view of salv_wd_table in it dynamically.
    Thanks and Regards
    Tenzin

    Hi,
    Please check the below article 'Creating navigations and Embedding view at Run time'. This might be helpful for you.
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20abap/creating%20navigations%20and%20embedding%20views%20at%20runtime%20-%20web%20dynpro%20abap.pdf]
    Regards,
    Manne.

  • Is this the right to use or for iOS can use dynamic google maps embeded(can be embedded fo iOS)

    function displayMap(e) {
    var title = e.data.title,
        latlng = e.data.lat + ',' + e.data.lng;
    if (typeof device !='undefined' && device.platform.toLowerCase() == 'android') {
    window.location = 'http://maps.google.com/maps?z=16&q=' + encodeURIComponent(title) + '@' + latlng;
    } else {
    $('#map h1').text(title);
    $('#map div[data-role=content]').html('<img src="http://maps.google.com/maps/api/staticmap?center=>' + latlng + ' &zoom=16&size=320x420&markers=' + latlng + '&sensor=false">');
    $.mobile.changePage('#map', 'fade', false, true);
    my phonegap (Adobe press, Powers jQuery with dw 5.5) book (old book (c)2010-11) says for above code: // is this valid for today, is this the right to use or for iOS can use dynamic google maps embeded(can be embedded fo iOS)???
    On iOS, calling window.location loads the map directly
    into the app. That’s great until you realize that iOS devices
    don’t have a Back button, so there’s no way to exit the
    map. To get round this problem, I loaded a static map as
    an image in the map page block. It’s not interactive, but at
    least you can continue using the Travel Notes app after
    viewing the map by clicking the Back button generated by
    jQuery Mobile.

    Well, this took me a while to get solved, but it is indeed solved.
    I tried USB Overdrive and it could, and perhaps should work, but apparently it will not. When adding a device, it seems that USB Overdrive is not set up to handle any input device that does not register itself as either a Mouse or a Joystick. The VEC USB Footpedal that I'm using is "Device type: Other".
    So, I went for Quickeys. And Quickeys can do it all. It did recognize the device, I was able to assign it to the scope of the particular audio playback app I wanted to use (Amazing Slow Downer OS X - which is truly amazing. Any musicians reading this who are looking for a way to learn pieces by ear, this does it better than anything else I've seen yet).
    I created a shortcut in Quickeys for the ASD app; added the middle button of the foot pedal as the trigger; set one step, entering 'space bar' as the step (which toggles playback, similar to many audio players).
    It all worked.
    Quickeys is very confusing and seemingly featured with an endless array of options. Enter at your own risk. Ask me for help. This was the only way to get it done that I could find. I did write to the author of USB Overdrive asking him to please support additional devices as I did find some traction from gamers who like to use a foot pedal in addition to other input devices. There was a Windows-only management utility for the foot pedal that was intended for custom input, assigning the buttons to any keyboard input or mouse click event. It would be nice to have a simple and easy to use utility like this. But, Quickeys did do the job.
    Thanks for your help, you guys!!!

  • How to create dynamic DataTable with dynamic header/column in JSF?

    Hello everyone,
    I am having problem of programmatically create multiple DataTables which have different number of column? In my JSF page, I should implement a navigation table and a data table. The navigation table displays the links of all tables in the database so that the data table will load the data when the user click any link in navigation table. I have gone through [BalusC's post|http://balusc.blogspot.com/2006/06/using-datatables.html#PopulateDynamicDatatable] and I found that the section "populate dynamic datatable" does show me some hints. In his code,
    // Iterate over columns.
            for (int i = 0; i < dynamicList.get(0).size(); i++) {
                // Create <h:column>.
                HtmlColumn column = new HtmlColumn();
                dynamicDataTable.getChildren().add(column);
                // Create <h:outputText value="dynamicHeaders"> for <f:facet name="header"> of column.
    HtmlOutputText header = new HtmlOutputText();
    header.setValue(dynamicHeaders[i]);
    column.setHeader(header);
    // Create <h:outputText value="#{dynamicItem[" + i + "]}"> for the body of column.
    HtmlOutputText output = new HtmlOutputText();
    output.setValueExpression("value",
    createValueExpression("#{dynamicItem[" + i + "]}", String.class));
    column.getChildren().add(output);
    public HtmlPanelGroup getDynamicDataTableGroup() {
    // This will be called once in the first RESTORE VIEW phase.
    if (dynamicDataTableGroup == null) {
    loadDynamicList(); // Preload dynamic list.
    populateDynamicDataTable(); // Populate editable datatable.
    return dynamicDataTableGroup;
    I suppose the Getter method is only called once when the JSF page is loaded for the first time. By calling this Getter, columns are dynamically added to the table. However in my particular case, the dynamic list is not known until the user choose to view a table. That means I can not call loadDynamicList() in the Getter method. Subsequently, I can not execute the for loop in method "populateDynamicDataTable()".
    So, how can I implement a real dynamic datatable with dynamic columns, or in other words, a dynamic table that can load data from different data tables (different number of columns) in the database at run-time?
    Many thanks for any help in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    flyeminent wrote:
    However in my particular case, the dynamic list is not known until the user choose to view a table. Then move the call from the getter to the bean's action method.

  • Remote Panels not working in embedded viewing mode

    Hello,
    I'm trying to develop a web version of my project using Labview remote panels. I configured the web server properties as it's described here: http://www.ni.com/white-paper/4791/en/
    Currently I'm trying to create the web page on the web publishing tool. However when I select the Embedded viewing mode option I get an "Requested VI is not loaded into memory on the server computer" error on the web page that is created. But if I select Snapshot or Monitor viewing mode option the page is loaded without problems.
    I'm using Labview 2013 and oppening the web page in google chrome. The VI from which I'm trying  to create a remote panel has some subVIs that show the front panel when called. Is there anything I'm forgetting to configure, or do I need to have any plugins instaled on my browser?
    Solved!
    Go to Solution.

    Mateus23 wrote:
    I'm now developing the web version in HTML 5, using web services to comunicate with my labview application.
    There you go, good solution. When doing this remember that you have access to the database on the server. A structure I have found effective is to use the server DB like a dropbox that I write to, and the web server reads from.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Problem in aligning dynamic UI with the static UI

    Hi All,
    I have problem in aligning dynamic UI with the static UI, I am using Matrix layout.
    Static fields are spread over 2 colums and 3 rows:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    Now when a value is selected in C, than E becomes visible, and depending on the values selected in E, there are dynamic UI generated, i.e dynamic lables and depending on some validation it will be either a dropdowns or input fiels or both.
    at run time screen is like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACEdropdown
    dynbSPACEinput field
    if I change my selection in E than layout looks like:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACESPACEdropdown
    dynbSPACESPACEinput field
    Requirment: I need all the lables as well as dropdown/ input fiels in line with the static fields irrespective of my selection in E.
    Something like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dyna   SPACEdropdown
    dynbSPACESinput field
    dyncSPACESdropdown
    All this elements are in a group and that group has 2 transparent containers, 1 for static and for holding dynamic UI.
    I tried playing with the container properties, and also tried fixing width of dynamic UI but still the alignment issue is encountered.
    Can U guys plz give in ur valuable inputs as i need to fix this urgently.
    Regards,
    JJ

    Hi Armin,
    Can you please elaborate your solution ?, I do not have an idea of InvisibleElement & IWDView.resetView() ,
    If you can give me the exact pointer than it would be great and a good learning exp. for me.
    Thanks for the action assignment part, it worked.
    if (wdContext.nodeMaterialClass().size() > 0 && wdContext.currentContextElement().getActionMatCls()) {
         if (wdContext.currentMaterialClassElement().getMaterialClass_Description() != null || !wdContext.currentMaterialClassElement ().getMaterialClass_Description().equalsIgnoreCase(" ")) {
               IWDGroup Searchgroup = (IWDGroup) view.getElement("DynGroup");
    Searchgroup.destroyAllChildren();
    view.getContext().reset(false);
                                                      for (int i = 0; i < wdContext.nodeMaterialCharateristcs().size(); i++) {
                                  //this for label
         IWDLabel CharLabel = (IWDLabel) view.createElement(IWDLabel.class, "label" + i);
         CharLabel.setText(wdContext.nodeMaterialCharateristcs().getMaterialCharateristcsElementAt(i).getDescr_Char());
         CharLabel.setDesign(WDLabelDesign.EMPHASIZED);
         CharLabel.createLayoutData(MatrixHeadData.class);                              CharLabel.setWidth("154px");                              Searchgroup.addChild(CharLabel);
                 further there are conditions to create either dropdown or input field
    Can you please point where and how to apply your solution.
    Regards,
    JJ

  • Install windows 8 on virtual machine with embedded licence key.

    Hello,
    I bought a laptop with windows 8 Pro with embedded(in bios) licence key.
    I want to install Linux on my PC and use windows 8 by a virtual machine.
    Where can I download windows iso file ? Is my licence key proper to use on virtual machine?
    Best,
    Bumbam.

    Hello,
    I bought a laptop with windows 8 Pro with embedded(in bios) licence key.
    I want to install Linux on my PC and use windows 8 by a virtual machine.
    Where can I download windows iso file ? Is my licence key proper to use on virtual machine?
    Best,
    Bumbam.
    Hi,
    I am afraid that this is a forum for development issues about windows form application, for issue about windows, I would suggest you consider posting it in the following site.
    http://answers.microsoft.com/en-us/windows
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Word 2010 with Embedded Excel table becomes oversized for RDP users

    I originally asked this question on the SharePoint Online forums as this was the first time we've seen this issue. Original Post
    Summarized: we have a Word template with embedded Excel table created in SharePoint Online, and when a RDP user opens it, the document correctly opens in the local version of Word 2010 (not Word Online).   When the table is edited, it becomes
    larger to the point you can no longer view the entire table. 
    We have done some testing with Word 2010 outside of RDP and everything works correctly, the embedded Excel table doesn't become oversized and works as expected.  It seems to definitely be an issue with RDP and I've been looking for any assistance
    on resolving this issue.  I recently did some further testing and found that the only time the table becomes oversized and not view-able is when you copy and paste information from an existing 2003 Excel document.  I would think this is the issue,
    but it doesn't happen when working with Word and SharePoint outside of an RDP environment. 
    The template is a .docx file. All RDP users are in a 2008 R2 environment.

    I did some testing over the weekend and the simple answer to your question - Not always.
    I found 2 variables which seem to cause this to happen:
    1) We have 2 TS servers - one with IE 9, which remains to maintain support for a legacy app which will not work with IE 10 or 11, and one with IE 10.
    2) Screen resolution of the client computer - it seemed that systems with video configurations which could not exceed the maximum of 1280x1024 (the same screen resolution as our TS servers) didn't experience the issue.  There were some laptops
    and higher end systems with widescreen monitors, where this was an issue.  They typically didn't have a 1280x1024 option; yet even if they did they would experience the same issue, just not as pronounced.
    It also seems to only occur when a user copies and pastes information from Excel 2010 into the embedded Excel table in Word 2010.  Again, only within RDP.  On those client computers which had the problem, I could perform the same function outside
    of RDP without any problems.  However, this is not an ideal format for the chefs as they will frequently be moving between different systems during the day.

  • How do I create/host interactive articles with embedded video for use in browsers?

    I'm seeking a little guidance -
    How do I create/host interactive articles with embedded video for use in browsers?
    The aim is to bring together video, design, images and writing in one place. A little like Born Presents, but very accessible and user friendly.
    I'm happy using InDesign but want to create interactive articles / magazines that have embeded video files as required. I've been looking at .SWF files but I've come unstuck.
    I want people to view the articles via a blog, ideally with them opening in a lightbox style viewer. It's not intended for tablet viewing and people should be able to view and interact with the files with little effort on their part.
    I think I know how to create these files within InDesign, but I'm not so hot on web design and I'm not sure how to host these online. Does this start coming into the realms of Flash?
    If anyone could point in the right direction I'd really appreciate it - Thank you in advance.

    PDF is one thing. Folios for DPS is another. There is a little bit of
    overlap but not much.
    The interactivity in the folio overlays panel is for DPS only.

  • Whitespace problem with embedded tables

    I have a datastructure with embedded groups. In my RTF template, I am using a table for each of these groups, and embedding them likewise. When I load my data, however, and view it, there is a random, undesirable amount of whitespace between where one table ends and where its parent table ends.
    To try to make it more clear:
    "TEXT in inner table"
    ----------------------------------------- (End of inner table)
    (Random Gap Here)
    "Text in outer table"
    ----------------------------------------- (End of outer table)
    The Size of the gap seems to depend on how much space is left on the page. If there is just enough data to fill a page, it will all fit nicely, exactly how I want it. If a page does not contain much data, then the gap gets really big, as if it was trying to cover the entire page.
    Anyone else run into this problem?
    Thanks,
    Matt

    Thanks very much!
    Before, I had a separate table for each group. When it was all said and done, I had about 5 levels of table embedding. YUCK!
    Now I made one big table (1x1) and only used tables where I couldn't get by with plain indenting. The most table embedding that is going on now is individual tables within the large 1x1 table. This method proves much more flexible and elegant.
    Thank you very much ashee1,
    Matt Soukup

Maybe you are looking for