SharePointCommunity
Die deutschsprachige Community für SharePoint, Microsoft 365, Teams, Yammer und mit Azure

Sponsored by

Willkommen im Forum Archiv.
Einträge sind hier nicht mehr möglich, aber der Bestand von 12 Jahren SharePoint-Wissen ist hier recherchierbar.




On Object User Interface (OOUI) anzeigen?

Unbeantwortet Dieser Beitrag hat 3 Antworten

Ohne Rang
496 Beiträge
Derby erstellt 15 Apr. 2013 16:30
SchlechtSchlechtIn OrdnungIn OrdnungDurchschnittDurchschnittGutGutSehr gutSehr gut

 Ich versuche gerade aus einer Anleitung etwas nachzubauen. Dabei wird öfters auf das OOUI verwiesen, den kleinen Pfeil rechts am WebPart (siehe Screen) Allerdings wird der bei mir nicht angezeigt.

 

Ist das eine Einstellungsoption im Designer?  Advanced Mode hat nix gebracht.

Derby



Alle Antworten

Ohne Rang
19231 Beiträge
Andi Fandrich Als Antwort am 16 Apr. 2013 08:28
SchlechtSchlechtIn OrdnungIn OrdnungDurchschnittDurchschnittGutGutSehr gutSehr gut

Das ist ein Screenshot aus SharePoint Designer 2007. Der kleine Pfeil wurde mit 2010 abgeschafft und Du brauchst nicht weiter danach zu suchen.

Viele Grüße
Andi
af @ evocom de
Blog
Ohne Rang
496 Beiträge
Derby Als Antwort am 16 Apr. 2013 11:05
SchlechtSchlechtIn OrdnungIn OrdnungDurchschnittDurchschnittGutGutSehr gutSehr gut

Hallo Andy,

danke für die Antwort. Wenn es diese Option nicht mehr gibt, wie kann ich dann folgende Sachen im Designer 2010 machen?

Creating a custom Hyperlink with parameters

 

We have now created our Session parameter and we are ready to create our hyperlink that will initiate the quiz. 

Before we create the link let’s quickly create the new ASPX page that we are going to link to:

  1.  From the main menu select File | New and choose ASPX page. 
  2. Then File | Save As and save the page as “ShowQuestion.aspx”
  3. Close the page

We are going to create our hyperlink linked to the title of each quiz in the list, and we are going to pass the following variables via a query string into the ShowQuestion.aspx page:

Paramter

Description

Title

Exam Title

Question

The number of the question to display

Of

The total number of questions in the quiz

Session

Unique session ID for the attempt at the quiz

Here are the steps to create our hand-built hyperlink with parameters:

1.       Click on the title of the Quiz in your Data view Web Part table

2.       Click of OOUI button

3.       Change the Format as: to Hyperlink

4.       Select Hyperlink options

1.       For the Address: Browse to our newly created ShowQuestion.aspx page

2.       Hit the Parameters button

3.       Hit the Add Button

The Add Parameter box will pop up asking for a name and value.  To add our “Title” parameter give the name as “Title” and then scroll down the list of values and find the Title field like this:

Important note:  Check that SharePoint designer hasn’t added a @ at the start of the name of your parameter – if it has just delete it so that the name is “Title”.

 To add our “Question” parameter, click add again.  This time give the title as “Question” and type the value as “1” (without the quotes).

Then Add our “Of” parameter (which is the total number of questions) by giving the title as “Of” and the selecting the value from the drop down list as “NumbeOfQuestions”)

Our final parameter is the Session ID we created earlier, although this isn’t available from the drop down list we can still reference it.  Hit add one more time and give the title as “Session”.  For the value enter {$Session}

Ist aus dieser Anleitung: Creating a Quiz Web application using SharePoint designer

Habe noch nicht wirklich mit dem Designer *.aspx Seiten editiert.

Derby

Ohne Rang
19231 Beiträge
Andi Fandrich Als Antwort am 16 Apr. 2013 11:48
SchlechtSchlechtIn OrdnungIn OrdnungDurchschnittDurchschnittGutGutSehr gutSehr gut

Das wirst Du in der Codeansicht selbst machen müssen. Wenn das Feld jetzt als Text formatiert ist, steht dort ungefähr sowas:
<xsl:value-of select="@Fieldname" />
Dort kannst Du Deinen Link einbauen, indem Du einfach das <a> drumrum baust.

Übrigens gibt es in SharePoint Designer 2013 überhaupt keine Designansicht mehr (nur noch Code). Du kannst Dich also schonmal daran gewöhnen ;-)

Viele Grüße
Andi
af @ evocom de
Blog