Portlet content control

I know this will probably sound stupid but I'm still new and it seems like something
that should happen automatically anyway.
I have one portlet that contains many links to other jsp's and html. Whenever
I click a link, I would like for the hyperlinked content to stay within the same
portlet. However, whatever the hyperlinked content is takes over the entire portal
page.
We solved this before by making the main jsp a URI portlet through the Web Service
Portlet Wizard for 4.0 (see code below that was generated by Wizard tool). Even
then it seemed that the normal behavior should have been for the content to stay
within the portlet that it was linked from, the URI portlets worked so it wasn't
that big of a deal. Now, it seems that the Web Service Portlet Wizard doesn't
work in 7.0 or that the webservice.tld is not supported so I am at a loss.
Any help would be greatly appreciated!!!
URIPortlet.jsp
<%@ taglib uri="webservice.tld" prefix="ws" %>
<ws:getExternalURL id="externalRequest" defaultURL="http:lbug.ets.mta:63710/gsweb/portlets/gsMainPortlets/Main.jsp"/>
<table>
<ws:getPortalPrefixURL id"portalPrefixURL" />
<ws:uriContent id="uriContent"
externalRequest="<%=externalRequest%>"
portalPrefixURL="<%=portalPrefixURL%>"
ttl="0">
<tr><td><%out.print(uriContent);%></td></tr>
</ws:uriContent>
<tr>
<td>

Hi Chris,
you should use <portlet:createWebflowURL> if you want to restrict the new contents
within the portlet. Also it will be good idea to define all your JSPs as presentation
node within the webflow to get the complete picture of spread of pages in your
web-app though it is not necessary for your scenario.
<portal:createWebflowURL> will keep your resulting contents within the same portal
but not withing same portlet coz it is used for navigating between portal pages
(visualized by the navigating tabs) and not between portlets.
I hope this helps.
cheers
Kam
"chris" <[email protected]> wrote:
>
tanya,
no, we aren't using webflow. i think that is what the benefit of the
4.0 web services
portlet wizard (which was a separate download and install in the EBCC)
did for
us when creating a URI portlet from the tool.
i started to go the webflow route but got kind of halted when the portlet
wizard
(the new feature in the 7.0 EBCC) wouldn't let me create a 2-page webflow
portlet.
For some reason, it will not create the .portlet file. So, I will have
to start
from scratch.
I am trying to keep the flow within the main portlet itself and I have
20 or so
links to other .jsp and .html files that I wish to stay within the main
portlet.
Will I use <portal:createWebflowURL> or <portlet:createWebflowURL>? Also,
when
I create the webflow within the EBCC will I make a node for every .jsp
or .html
file and just make it a different event?
I apologize for the very basic questions but the docs don't really seem
to help
unless you are trying to flow from one portlet to another and there is
no one
here with enough webflow experience to help me.
thanks,
chris
"tanya" <[email protected]> wrote:
are you using webflow?
if so, there are tags that will keep the flow w/in a portlet:
<portal:createWebflowURL>
(if you weren't inside of a portlet, you'd use a different tag:
<webflow:createWebflowURL>)
see edocs for more info:
http://edocs.bea.com/wlp/docs70/jsp/index.htm
"chris" <[email protected]> wrote:
I know this will probably sound stupid but I'm still new and it seems
like something
that should happen automatically anyway.
I have one portlet that contains many links to other jsp's and html.
Whenever
I click a link, I would like for the hyperlinked content to stay within
the same
portlet. However, whatever the hyperlinked content is takes over the
entire portal
page.
We solved this before by making the main jsp a URI portlet through
the
Web Service
Portlet Wizard for 4.0 (see code below that was generated by Wizardtool).
Even
then it seemed that the normal behavior should have been for the content
to stay
within the portlet that it was linked from, the URI portlets workedso
it wasn't
that big of a deal. Now, it seems that the Web Service Portlet Wizard
doesn't
work in 7.0 or that the webservice.tld is not supported so I am at
a
loss.
Any help would be greatly appreciated!!!
URIPortlet.jsp
<%@ taglib uri="webservice.tld" prefix="ws" %>
<ws:getExternalURL id="externalRequest" defaultURL="http:lbug.ets.mta:63710/gsweb/portlets/gsMainPortlets/Main.jsp"/>
<table>
<ws:getPortalPrefixURL id"portalPrefixURL" />
<ws:uriContent id="uriContent"
externalRequest="<%=externalRequest%>"
portalPrefixURL="<%=portalPrefixURL%>"
ttl="0">
<tr><td><%out.print(uriContent);%></td></tr>
</ws:uriContent>
<tr>
<td>

Similar Messages

  • Open xml relationship target is NULL when inserting chart into a mapped rich text content control in Word 2013

    Hi,
    I have a word document with a rich text content control that is mapped to a CustomXml. You can download an example here
    http://1drv.ms/1raxoUr
    I have looked into the specification ISO/IEC 29500-1:2012 and i understand that the attribute Target for the element Relationship can be set to NULL at times(Empty header and footer in the specification).
    Now, i have stumbled on Target being NULL also when inserting a diagram into a word document. For example:
    <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/oleObject"
    Target="NULL" TargetMode="External" xmlns="http://schemas.openxmlformats.org/package/2006/relationships" />
    Why is Target="NULL" and how should i interpret that Target is null?
    Br,
    /Peter
    Peter

    Hello Peter,
    The relationship in question is associated with the externalData element (ISO/IEC 29500-1:2012 §21.2.2.63). For the other two charts in this document, the corresponding relationships are of the other allowable form:
      <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/package" Target="../embeddings/Microsoft_Excel_Worksheet1.xlsx"/>  <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/package" Target="../embeddings/Microsoft_Excel_Worksheet2.xlsx"/>
    For charts 1 and 3 in your document, the data can be edited via the Chart Tools ribbon control. The option to edit data is not available for chart 2. The data used to create chart 2 is the same default spreadsheet data used for chart 1, and in fact the spreadsheet
    references are still present in the file format, despite there being no apparent link to a spreadsheet for chart 2.
    Thus, it appears that Target="NULL" in this context means that the chart is not associated with an external data source. The specification doesn't have much to say about the semantics of the Target attribute (ISO/IEC 29500-2:2012 §9.3.2.2) beyond
    the fact that it be a valid xsd:anyURI, which the string "NULL" is.
    It looks like there is some unexpected interaction between the chart and the content control. I don't think the file format is the issue. You will probably need to pursue that behavior from the product perspective via a support incident, if that behavior
    is unexpected. If you still have questions about what is seen in the file format, please let me know.
    Best regards,
    Matt Weber | Microsoft Open Specifications Team

  • How to get the name of the selected building block in a building block content control?

    Hello,
    How can I obtain the name of the selected building block in a building block content control?
    I want to use this together with an on exit-event to populate other content Controls depending on the name of the selected building block item.
    Environment: Word 2010.
    Thanks,
    Peeter

    Hi Peeter,
    As far as I know the building block is the pre-built content, and the
    BuildingBlock object represents a building block in a template. After add the building block to the document, it inserts the content to the document.
    Building blocks are stored in the templates, therefore, to access the building blocks available for a document, we need to access an attached template.
    So, I think, we can’t obtain selected building block in the document.
    There are some links that may benefit you:
    # BdingBlock Object (Word)
    https://msdn.microsoft.com/en-us/library/office/ff192414.aspx?f=255&MSPPError=-2147217396
    # Working with Building Blocks
    https://msdn.microsoft.com/en-us/library/office/ff837878.aspx
    # Set the Building Blocks That You Can Use for a Content Control
    https://msdn.microsoft.com/en-us/library/office/ff197523.aspx
    Regards
    Starain
    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.

  • Insert a Picture into the Picture/Image Content Control using Open XML SDK 2.0

    I have created a word template as follows
    Here PizzaPicture is a Picture Content Control, PizzaName is a Plain Text Content Control and PizzaDescription is a Rich Text Content Control
    I am able to assign text to PizzaName and PizzaDescription Easily but not able to even locate the PizzaPicture. Here is my code
    using (WordprocessingDocument document = WordprocessingDocument.Open(@".\test.docx", true)) {
    MainDocumentPart mainPart = document.MainDocumentPart;
    DocumentFormat.OpenXml.Wordprocessing.Text text = null;
    SdtContentBlock pizzaNameBlock = null;
    SdtContentBlock pizzaDescriptionBlock = null;
    //SdtContentBlock pizzaPictureBlock = null;
    List<SdtBlock> sdtList = mainPart.Document.Descendants<SdtBlock>().ToList();
    foreach (SdtBlock sdt in sdtList)
    Console.WriteLine(sdt.SdtProperties.GetFirstChild<Tag>().Val.Value);
    SdtBlock s1 = mainPart.Document.Body.Descendants<SdtBlock>().Where(r => r.SdtProperties.GetFirstChild<Tag>().Val == "PizzaName").Single();
    SdtBlock s2 = mainPart.Document.Body.Descendants<SdtBlock>().Where(r => r.SdtProperties.GetFirstChild<Tag>().Val == "PizzaDescription").Single();
    SdtBlock s3 = mainPart.Document.Body.Descendants<SdtBlock>().FirstOrDefault(r =>
    SdtProperties p = r.Elements<SdtProperties>().FirstOrDefault();
    if (p != null)
    Console.WriteLine("P is not null");
    // Is it a picture content control?
    SdtContentPicture pict =
    p.Elements<SdtContentPicture>().FirstOrDefault();
    if (pict != null) Console.WriteLine("Pict is not null");
    // Get the alias.
    SdtAlias a = p.Elements<SdtAlias>().FirstOrDefault();
    if (pict != null && a.Val == "PizzaPicture")
    return true;
    return false;
    if (s3 == null) {
    Console.Write(" s3 is Null");
    } else {
    Console.WriteLine("s3 not null");
    if (s1 != null) {
    pizzaNameBlock = s1.Descendants<SdtContentBlock>().FirstOrDefault();
    text = pizzaNameBlock.Descendants<DocumentFormat.OpenXml.Wordprocessing.Text>().FirstOrDefault();
    // here you can set the current time
    text.Text = "Peperoni";
    Console.WriteLine(text.Text);
    string embed = null;
    if (s3 != null)
    Drawing dr = s3.Descendants<Drawing>().FirstOrDefault();
    if (dr != null)
    Blip blip = dr.Descendants<Blip>().FirstOrDefault();
    if (blip != null)
    embed = blip.Embed;
    if (embed != null)
    IdPartPair idpp = document.MainDocumentPart.Parts
    .Where(pa => pa.RelationshipId == embed).FirstOrDefault();
    if (idpp != null)
    ImagePart ip = (ImagePart)idpp.OpenXmlPart;
    using (FileStream fileStream =
    File.Open(@"c:\temp\pepperoni.jpg", FileMode.Open))
    ip.FeedData(fileStream);
    if (s2 != null) {
    pizzaDescriptionBlock = s2.Descendants<SdtContentBlock>().FirstOrDefault();
    string altChunkId = "AltChunkId12345";
    AlternativeFormatImportPart chunk = mainPart.AddAlternativeFormatImportPart(AlternativeFormatImportPartType.Xhtml, altChunkId);
    chunk.FeedData(File.Open(@".\html.txt", FileMode.Open));
    AltChunk altChunk = new AltChunk();
    altChunk.Id = altChunkId;
    ////Replace content control with altChunk information
    OpenXmlElement parent = pizzaDescriptionBlock.Parent;
    parent.InsertAfter(altChunk, pizzaDescriptionBlock);
    pizzaDescriptionBlock.Remove();
    mainPart.Document.Save();
    document.Close();
    Here the call mainPart.Document.Descendants<SdtBlock>().ToList(); returns me only 2 items PizzaName, PizzaDescription but
    no PizzaPicture.
    Secondly the line   SdtContentPicture pict =  p.Elements<SdtContentPicture>().FirstOrDefault();
    returns NULL. So it seems that there is no element of type SdtContentPicture.
    What am I doing wrong? I am pretty sure that I have put PizzaPicture as a Picture content control.
    My objective is to locate this control in the document and then insert an image into it programmatically.
    MSDNStudent Knows not much!

    Hi,
    I'm running some test on your code, and I'll come back as soon as I get some update. But before that, I would recommend you to bind customXMLPart with the content controls via Content Control Tool Kit,
    which enables us to bind customXMLPart with CC by dragging and dropping.
    After binding, you can change contents of the template via OpenXML SDK easily as the following code:
    private void button1_Click(object sender, EventArgs e)
    string fileName = @"C:\CCTest.docx";
    WordprocessingDocument wordDoc = WordprocessingDocument.Open(fileName, true);
    MainDocumentPart mainPart = wordDoc.MainDocumentPart;
    CustomXmlPart customPart = mainPart.CustomXmlParts.FirstOrDefault();
    //convert image into string
    string picName = @"C:\Users\Public\Pictures\Sample Pictures\Desert.jpg";
    System.IO.FileStream fileStream = System.IO.File.Open(picName, System.IO.FileMode.Open);
    System.IO.BinaryReader br = new System.IO.BinaryReader(fileStream);
    byte[] byteArea;
    byteArea = br.ReadBytes(System.Convert.ToInt32(fileStream.Length));
    string picString = System.Convert.ToBase64String(byteArea);
    //Load the XML template
    string DataString = Properties.Resources.XMLData;
    XmlDocument xmlDoc = new XmlDocument();
    xmlDoc.LoadXml(DataString);
    //change the value
    XmlNodeList xmlNode = xmlDoc.GetElementsByTagName("pizzaPic");
    xmlNode[0].InnerText = picString;
    xmlNode = xmlDoc.GetElementsByTagName("pizzaName");
    xmlNode[0].InnerText = "Pizza Name";
    xmlNode = xmlDoc.GetElementsByTagName("pizzaDescription");
    xmlNode[0].InnerText = "Pizza Description";
    //write the custom xml data into the customxmlpart
    System.Xml.XmlTextWriter writer = new System.Xml.XmlTextWriter(customPart.GetStream(System.IO.FileMode.Create), System.Text.Encoding.UTF8);
    writer.WriteRaw(xmlDoc.InnerXml);
    writer.Flush();
    writer.Close();
    fileStream.Close();
    br.Close();
    mainPart.Document.Save();
    wordDoc.Close();
    and the XML template of the project would something like:
    <?xml version="1.0"?>
    <Pizza xmlns="http://Test/ContentControls/Pizzas">
    <pizzaPic></pizzaPic>
    <pizzaName></pizzaName>
    <pizzaDescription></pizzaDescription>
    </Pizza>
    I hope this helps.
    Calvin Gao[MSFT]
    MSDN Community Support | Feedback to us

  • Change Portlet Content item in 9.0.2.

    Hi
    If I add a few images to a page, and I go to the categorie page where these images are stored, I can't see these images.
    Instead I see a lot of information about these images (create date, page group,...)which i don't want to see.
    On this categorie page all the items are stored in a "portlet content" item.
    Is there a way to change the settings of this "portlet content" item?
    greetings

    Hi
    The changing of relative to absolute is the one that bothers me. I think it also added line breaks, which caused problems with gaps appearing between images.
    The other one I remember is adding <tbody> tags to a table.
    I would prefer it if one could prevent the editor from making any changes in the HTML whatsoever. As an option maybe.
    Is it possible to create a simple HTML item as a shared component that one could drop into any page?
    Regards
    Harry
    What changes are you seeing?
    I know that the editor converts relative links to absolute links (a bug has been logged for this and the issue is mentioned in the release notes).

  • How can i find the appreciate XI content: Control System - SAP ERP?

    Hi all,
    I'm try to find an XI Content for Control System (Insite is our Control System) - SAP ERP. I don't know if it exist an XI Content Control System (Insite) - SAP ERP? If this XI Content is exist, how can i find it and the document about this XI Content?
    If anyone do or did an integration scenario between Control System - SAP ERP and know the appreciate XI Content for this scenario, could you please help me?
    Thanks a lot in advance,
    Vinh Vo

    hi
    check whether the content is available in SMP
    https://service.sap.com/swdc -> Content
    The XI content details can be found here.
    rgds,
    Arun

  • Merge Fields with Content Controls

    Hello everybody,
    we are using word templates to generate quotations in print form. This process worked fine using the old Technology (custom XML).
    Because a newer Version of Microsoft Office is now being used, the technology has been updated to the new one (content controls).
    Now we are facing one Problem. With the old Technology we used merge fields for formatting fields, e.g. to get rid of leading zeros. But it seems that the function of merge fields cannot be combined with a dynamic field which has been added to the document out of the SAP Data Panel.
    Has anybody an idea how we can use merge fields with this new technology?
    Best regards,
    Patrick Müller

    Hi Albert,
    The Demo program SAPRDEMO_MAILMERGE_INTERFACE you have found is correct for the issue you are facing. If you still have trouble with your program do let me know and i will write down the steps for you here.
    However, for the issue I have posted here, program does not work. I have tried writing a IF condition in the Mail Merge Template and to execute it but to my surprise it does not work. Neither SAP has provided any specific information related to Formula and calculations to be done in Mail Merge Template.
    Cheers,
    Kunjal

  • Portlet content localization

    Hi,
    I am wondering if someone has successfully localized portlet contents in 5.0 using java.
    I created two properties files MessagesBundle.properties with "greetings = Hello." and MessagesBundle_de_DE.properties with "greetings = Hallo."
    In my portlet.jsp:
    language = new String("en"); //for testing
    country = new String("US"); //for testing
    Locale currentLocale;
    currentLocale = new Locale(language, country);
    ResourceBundle messages = ResourceBundle.getBundle ("MessageBundle", currentLocale);
    out.print(messages.getString("greetings"));
    The file compiles fine but doesn't display in the portal. Any ideas of what I need to change? Currently I place the properties file in the same folder as the portlet.jsp file.
    Thanks.
    Hao
    [email protected]

    Does it happend just for G6? Does it work for v.5.*?

  • Change the Frame content Control style

    Hi,
    Is any way to change the style of current Frame content control  as dynamically...?
    I am using Frame control and navigating to Test.xaml, Test.xaml contains some windows Label control  with styles, So Need change the Test.xaml label color dynamically, while it's in Frame, How..Please help me...?.
    Frame.Navigate(typeof(Test));
    After navigating in to Frame, I need change the Test.xaml control styles  how..?

    Try this:
    1) Create some public static Brushes inside Test.xaml.cs
    2) In the setters for these brushes, assign the value to the Labels
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Content Control for IPhone

    Why can't I set content control for my son's IPhone 5? I was able to set it for his IPhone 4.  Don't tell me to use an app because he has figured out how to delete the app so it does't work.  He's too young for most of what's out there!  You want us to buy smart phones for our kids (because there aren't many basic phones to choose from). I was surprised to find out that other phone companies have more parental controls for the same phone so  it can be done.  Please help parents out and allow us to protect our children.  I've been a loyal customer of Verizon for over ten years.

    Same here... i subscribe to Family Base for 5 bucks a month on top of the outrageous rate i already pay for my family, and i still can't restrict usage time on my kids' iphones. T-Mobile is looking very attractive these days, just sayin'.

  • MS Word 2013 Content Control VBA Code

    Hello,<o:p></o:p>
    I have an MS
    Word Container Control (Word 2013) which populates with an Account Number and a
    Description. I wish for the user to click on this combo box (which initially
    states "Click Here" in the control. When the User clicks there the
    code runs to populate the combo box. After a user selects a specific item
    in the combo box - the other container controls are populated with appropriate
    information according to that selection.<o:p></o:p>
    The population code of the combo box is as follows:
    Sub LoadOpportunityList()
    'On Error GoTo LoadOpportunityError
    Set opportunityList = ActiveDocument.SelectContentControlsByTitle("OpportunityNumber").Item(1)
    Dim cnnLoadOpportunity As New ADODB.Connection
    Dim rstLoadOpportunity As New ADODB.Recordset
    ' Need to update this with URL HTTP and also with error trapping
    ' If Trusted Connection doesn't work, utilize a specific read only user account with access only to a specific view
    cnnLoadOpportunity.Open "Provider=SQLOLEDB;" & _
    "Data Source=(local);" & _
    "Initial Catalog=AdventureWorks2012;" & _
    "Trusted_Connection=yes;"
    rstLoadOpportunity.Open "SELECT Distinct NationalIdNumber, JobTitle FROM [AdventureWorks2012].[HumanResources].[Employee] order by NationalIdNumber;", _
    cnnLoadOpportunity, adOpenStatic
    rstLoadOpportunity.MoveFirst
    ' Clear Combo Box List
    With ActiveDocument.SelectContentControlsByTitle("OpportunityNumber").Item(1).DropdownListEntries
    .Clear
    'Populate Combo Box
    Do
    .Add rstLoadOpportunity![NationalIdNumber] & " - " & rstLoadOpportunity![JobTitle]
    rstLoadOpportunity.MoveNext
    Loop Until rstLoadOpportunity.EOF
    End With
    'GetOpportunityDetails ("Vice President of Engineering")
    ' Find out if the attempt to connect worked.
    If cnnLoadOpportunity.State = adStateOpen Then
    MsgBox "Welcome to Database!"
    Else
    MsgBox "Connection to Database is not available. Please contact IT Help Desk for Support."
    End If
    rstLoadOpportunity.Close
    cnnLoadOpportunity.Close
    Set rstLoadOpportunity = Nothing
    Set cnnLoadOpportunity = Nothing
    LoadOpportunityExit:
    On Error Resume Next
    cnnLoadOpportunity.Close
    Set rsLoadOpportunity = Nothing
    Set cnnLoadOpportunity = Nothing
    Exit Sub
    LoadOpportunityError:
    MsgBox "Error " & Err.Number & vbCrLf & Err.Description, vbExclamation, "Error in ConnectionTest" _
    & "Connection to Database is not available. Please contact IT Help Desk for Support."
    Resume LoadOpportunityExit
    End Sub
    This code works great.
    I'm not certain how to put the code in to execute the update operation for other controls. I'm presuming it needs to be on the Content Control On Exit Event.
    The Content Control Combo Box has the following ID Number: 1399939120
    This code would initialize the combo box with the User Directions (Presumably when creating Only a new document).
    Sub SetInitialComboBoxDirections()
    Dim oCC As ContentControl
    Set oCC = ActiveDocument.ContentControls("1399939120") 'Replace # with actual
    Number Values
    oCC.Range.Text = "Click Here to Select an Account."
    End Sub
    1) How would I extract then just the Account Number of the Content Control. The Description is helpful in combo box with the Account Number, but I don't want to print the combo box out with the Account Number and the Description - just the Id Number. 
    2) what is the syntax for code for updating other document content controls after Combo Box on exit (provided that is the best method).
    3) I'd prefer to use the ControlName itself rather than the IdNumber of the Control, since it is easier to refer to (or utilize code to do a lookup of the Id, if that is best, on the fly).
    Note: I put the Combo box in the Document Header, but also perhaps it should be in the main body of the document.
    Thank you,
    John

    To get the best answer to your question, I recommend you follow Ms. Meister's advice and post your question(s) on this in the
    Word Answers forum. More people will see it. If you do this, please put a link in this thread to the new question.
    Word 2013 documents work fine in Word 2010, 2007, and 2003, for that matter. Word 2013-specific features do not work in those earlier versions.
    You may find the tools provided by Graham Mayor and Greg Maxey helpful. They provide for linked content controls that work in Word 2007-2013. 
    Content Control/Variable/Bookmark and Document Property Tools
    There is a version especially for Word 2013 but I don't think it's documents will be backward-compatible either.
    Add, Map and Employ Repeating Section Content Controls in Word 2013
    Charles Kenyon Madison, WI

  • Portlets access control

    Can portlets access control be implemented at the user's group level ?
    That is, for users belongs to group A, I want them to be able to access
    portlet A and portlet B; for users in group B, they can only access
    portlet B
    and porlet C, and users in group C can access all the portlets.
    Thanks,
    Leo
    6th Dimension-

    Hi Ture !
    Can you elaborate the step 4.
    Thanx,
    chalma.
    Ture Hoefner wrote:
    Hello Leo,
    Yes, portlet access control can be implemented at the group level. That
    is a very common use of user/group personalization. If you want to try it
    out, you can:
    1) Create a few test users and test groups with the admin tool.
    2) Associate your test users with the groups with the admin tool.
    3) Use the Portal Admin tool to associate your test groups with a portal,
    perhaps exampleportal.
    4) Use the links to the groups in the portal admin tool to customize the
    portal layout (including portlet availability).
    5) Access the portal with a browser and take turns logging in/out with your
    different users to see the results.
    Ture Hoefner
    BEA Systems, Inc.
    2590 Pearl St.
    Suite 110
    Boulder, CO 80302
    www.bea.com

  • Word 2010 - Extra Space Around Checkbox Content Controls - only on some computers

    I am experiencing a problem with Word 2010 adding extra above/below spacing on content control checkboxes, but only on some of our computers. We have a template we use that is the same file for our network. On some of the computers in our office however,
    we get extra spacing what can not be removed.  
    I am at a lose to fix this and have been trying for about 3 weeks. The settings are the same on all the computers. The user can switch to another computer and the form will open correctly, but if they move back to their workstation and try to reopen it there
    the double spacing returns - again only for the checkbox content controls. 
    Attached are two images - Correct formatting, and then what happens on some of the computers. Any assistance would be greatly appreciated. 
    Can't post links due to account not verified
    Correct Formating Image - https://drive.google.com/file/d/0BzORWKV0f6tjWjdaTGxTd0tWeUk/view?usp=sharing
    Extra Space Added on Some Comptuers Image - https://drive.google.com/file/d/0BzORWKV0f6tjOU8wYXp0d1ZZVDA/view?usp=sharing

    Some issues worth noting:
    1. Word uses information returned by the active printer driver to manage a document's layout. This can result in line spacing, text-wrapping, and so on varying from one PC to the next - or even on the same PC when switching to a printer that uses a different
    driver.
    2. Differences in font versions (or the use of a font that is available on one PC and not another) can result in line spacing, text-wrapping, and so on varying from one PC to the next.
    3. Differences in Word version (or even update state) may result in line spacing, text-wrapping, and so on varying from one PC to the next.
    4. Your document that displays the extra spacing has Word's formatting display switched on - even that can change the appearance if the document contains hidden content.
    5. Various Word options can also affect line spacing, text-wrapping, and so on. These include having Word configured to 'optimize character positioning for layout rather than readability', 'scale content for A4 or 8.5x11" paper sizes' and, perhaps,
    the use of draft print quality.
    Obviously, there are multiple possibilities to work through, ensuring all PCs & printer configurations are the same. That said, your use of tables allows you the option of setting the row heights to 'exact' measurements, so they won't expand as they
    evidently now can. You can also try setting the paragraph line spacings and before/after spacings to precise numbers of points, for example, so they don't auto-adjust.
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • Change propertise of Picture Content Control in microsoft office Word 2010

    Hi
    I have a Picture Content Control in my document. When I right click on object and select size and position, on the size tab we have two option: Absolute and Relative.
    How i can change absolute to Relative... The relative option is always grayed.
    I want to when i add picture to my picture content control object, it's resize fit with my image size.
    Please help me as soon as possible.
    Thanks

    Hi,
    Based on my research, the Relative Size settings only pertain to 'Drawing
    Objects' (AutoShapes). It does not apply to photographs, Clip Art or other images unless they are Grouped with a Shape. See:
    http://answers.microsoft.com/en-us/office/forum/office_2010-word/set-relative-size-of-an-image/a22b83c5-d098-4c8c-a68e-f6c92a2ef5eb
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Identifying a content control in a Word 2013 document and accessing the current "text" value of the control.

    I'm new to VBA and need to better understand the syntax for identifying, accessing control "value" and setting the value from a user form.
    My task is this, I have a word document containing the new Content Controls. I need to be able to access each individual control to initialize a UserForm control. I then need to update the "values of the controls on exiting the UserForm. Can someone
    proved some simple sample code showing this functionality? I have surmised that the "range" attribute holds the value of the control but I need the textual or logical value of the control.
    Thanks.

    Hi Gunteacher,
    My task is this, I have a word document containing the new Content Controls. I need to be able to access each individual control to initialize a UserForm control. I then need to update the "values of the controls on exiting the UserForm.
    What's content control you are using? Based on my understanding, we can indentify the content control by its tag and get the value of content control and initialize the control on the userform in the initialize event of userform. For example,
    code below is that get the text of rich text content control:
    ActiveDocument.ContentControls(1).Range.Text
    And here are some helpful links about content control for your reference:
    ContentControl Object (Word)
    Working with Content Controls
    What did you mean "I then need to update the "values of the controls on exiting the UserForm."? Did you mean that when the values of content control is changed, it should update the control on the user form which was open before?
    As far as I know, there is no such event suitable for this secnario. If you want content control to support this event, I suggest that you submit the feedback from the "Smile Face" at the top right corner of Word.
    Regards & Fei
    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.

Maybe you are looking for

  • How do I save photos from email to the photo library?

    How do I save photos from email to the photo library? I've seen an online demo of users that hold their finger or thumb over the image for a few seconds and a "save photo" window option appears. That doesn't work on my 6-month old iphone. It's versio

  • Communication between SAP and Webserver

    Hi, we customize the communication between our sap ecc system (module HR) and https-Server of ELENA (see sap note 1408879). Between both server should be installed a proxy server. Is it possible to communicate from sap system (transaction sm59) over

  • 24" iMac not recognizing internal hard drive..

    end of '07 iMac 24" 2.4GHz I have been having problems with this iMac since day 1... I'm kind of fed up with it at this point BUT I would like to get it working at least. PROBLEM: Yesterday I was working on the ol' iMac and I walked away, the compute

  • Java Web Start opening code not app

    For the past year I have had no problems opening up *.jnlp files with Java Web Start. Starting last week when clicking on any link to launch a Java app I get the code opening up in TextEdit. For example when I click on 'Welcome to Web Start' on this

  • Problem in Upload and Split

    Hello All, I have one text file with 'TAB' seperated fields. When i am uploading this file into UNIX server(thru customize prog) fille uploaded successfully but it take field sepration '#' instead of 'TAB'. now uploaded file looks like AAA#BBB#CCC#DD