ディスカッション掲示板のURLをどのように取得しますか?つまり、件名にマウスを重ねると表示されるURL(Webパーツとしてページに追加されたURL)です。SharePoint Discussion BoardのエントリのURLを取得する方法は?
答えて
ディスカッション掲示板内の個々のディスカッションのURLを見つける方法は?ディスカッションへの個別の返信ですか?
あなたがリスト項目を持っていないかもしれませんが、あなただけの「FileRef」プロパティを見てみなければhttp://site/discussion/lists/discussionboard/discusontitlenameまたは対象
ピリオドのような特殊文字が最後にある場合、これは必ずしも機能しません。 – trgraglia
protected void gvForum_RowDataBound(object sender, GridViewRowEventArgs e)
{
SPListItem item = e.Row.DataItem as SPListItem;
Label lblTitle = e.Row.FindControl("lblTitle") as Label;
HtmlAnchor aURL = e.Row.FindControl("aURL") as HtmlAnchor;
if (item != null)
{
if (lblTitle != null && aURL != null)
{
aURL.HRef = "~/" + item.Url;
lblTitle.Text = item["Title"].ToString();
}
}
}
protected global::System.Web.UI.WebControls.GridView gvForum;
public string Region
{
get
{
return "";
}
}
public string DefaultRegion { get; set; }
public int Top { get; set; }
public string ListName
{
get
{
string listName=string.Empty;
if (!string.IsNullOrEmpty(this.Region))
listName=string.Format("{0} {1}","Forum",this.Region);
else
listName = string.Format("{0} {1}", "Forum", this.DefaultRegion);
return listName;
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindGrid();
}
}
private void BindGrid()
{
string region = this.Region;
string [email protected]"<OrderBy><FieldRef Name=""Modified"" /></OrderBy>";
try
{
using (SPSite spSite = new SPSite(SPContext.Current.Site.Url))
{
using (SPWeb spWeb = spSite.OpenWeb())
{
SPQuery spQ = new SPQuery();
spQ.Query = caml;
spQ.RowLimit = (uint)this.Top;
SPList spList = spWeb.Lists[ListName];
SPListItemCollection items = spList.GetItems(spQ);
if (items != null && items.Count > 0)
{
gvForum.DataSource = items;
gvForum.DataBind();
}
else
{
this.Visible = false;
}
}
}
}
catch (Exception ex)
{
Logger.Log(ex.Message, System.Diagnostics.EventLogEntryType.Error);
}
}
protected void gvForum_RowDataBound(object sender, GridViewRowEventArgs e)
{
SPListItem item = e.Row.DataItem as SPListItem;
Label lblTitle = e.Row.FindControl("lblTitle") as Label;
HtmlAnchor aURL = e.Row.FindControl("aURL") as HtmlAnchor;
if (item != null)
{
if (lblTitle != null && aURL != null)
{
aURL.HRef = "~/" + item.Url;
lblTitle.Text = item["Title"].ToString();
}
}
}
他の投稿を次回編集してください。 2つの答えを投稿してはいけません。 – trgraglia
のように、単に対象の名前を付けることができます。 「https://mycompany.sharepoint.com/sites/Lists/discussion/」のように表示されます。そのURLをブラウザに入れたら(SharePoint Onlineを使用しています)、https://mycompany.sharepoint.com/Lists/Discussion/Flat.aspx?RootFolder= ... URLにリダイレクトされます。
特定のディスカッションアイテムへの直接URLを生成するには、(REST API呼び出しを使用して)クライアント側で、あなたがこれを試みることができる:
var jqXhr = $.ajax({
url:"/DiscussionSite/_api/lists/getByTitle('Discussions')/items?
$select=ID,FileRef,ContentTypeId,Title,Body&
$filter=ContentType eq 'Discussion'",
headers: { 'Accept': 'application/json;odata=verbose'}
});
// Fetch only the discussions from the Discussion list (excl. Messages)
jqXhr.done(function(data){
// Picking only the first item for testing purpose
// Feel free to loop through the response if necessary
var firstItem = data.d.results[0],
firstItemUrl = '/DiscussionSite/Lists/Discussions/Flat.aspx?RootFolder=' + firstItem.FileRef + '&FolderCTID' + firstItem.ContentTypeId;
// Result - /DiscussionSite/Lists/Discussions/Flat.aspx?RootFolder=/DiscussionSite/Lists/Discussions/My Discussion Topic 1&FolderCTID0x01200200583C2BEAE375884G859D2C5A3D2A8C06
// You can append "&IsDlg=1" to the Url for a popup friendly display of the Discussion Thread in a SharePoint Modal Dialog
console.log(firstItemUrl);
});
は、この情報がお役に立てば幸い!
あなたは直接のREST APIのURLを使って、ディスカッショントピックを取得するために使用「TopicPageUrl」フィールド列を使用することができます
http://sp2013.in/_api/web/Lists/GetByTitle('Discussion')/Items?$select=Title,TopicPageUrl,DiscussionLastUpdated,Folder/ItemCount,LastReplyBy/Title,Author/Title&$expand=Folder,LastReplyBy,Author&$orderby=DiscussionLastUpdated desc
上記のコードは、最後の更新の議論を取得する(そのフォルダに保存された回数を返信することも有用です)、最後に返信しました。
- 1. 相対URL形式でSharepointのイメージを取得する方法
- 2. itemAdded EventReceiverのSharepoint ListItemの現在のURLを取得する方法は?
- 3. 返信メッセージ(コメント)to Discussion - SharePoint Online JavaScript
- 4. django-discussion applicationのインストール方法は?
- 5. 今日のすべてのエントリを取得する方法は?
- 6. firebaseデータベースのエントリの詳細を取得する方法は?
- 7. 重複したエントリのIDを取得する方法は?
- 8. SharePointでリストの値を取得する方法は?
- 9. SharePointリストアイテムのターゲットセキュリティグループを取得する方法は?
- 10. URLを取得する別の方法
- 11. ダウンロードリンクのURLを取得する方法
- 12. グラフのURLを取得する方法
- 13. sharepointサーバ上のすべてのsharepoint Webアプリケーションをプログラムで取得する方法
- 14. URLからSharePointリストを取得
- 15. Sharepoint 2010クライアントオブジェクトモデルURLからリストアイテムを取得
- 16. Firebaseデータベースの子エントリのSUMを取得する方法
- 17. TreeMapの前後のエントリを取得する方法
- 18. MYSQL:マルチテーブルテーブルの現在のエントリを取得する方法
- 19. SEOフレンドリーなURLを取得する方法とサーバー側のコードで実際のURLを取得する方法
- 20. Sharepointポータルサイトの(公開)インターネットURLを取得する
- 21. 測定値のエントリ数を取得する方法
- 22. データストアから一意のランダムなエントリを取得する方法
- 23. ラジオストリームURLの取得方法は?
- 24. SharePoint CAMLクエリでダブルレコードを取得する方法は?
- 25. SharePoint ServicesでOpenID認証を取得する方法は?
- 26. Sharepoint 2010ユーザーグループからカスタム列の値を取得する方法
- 27. Office 365でSharePointファイルのアクセス許可を取得する方法
- 28. Skypeのステータスを取得する方法 - SharePoint Framework webpart
- 29. SharePointリスト(SPList)の最終更新日を取得する方法
- 30. ページネーションURLを取得する方法
どこを探していますか? APIを介して? JavaScriptを介して?ワークフローでは? – glenatron