sharepoint

Creating a Custom Page Layout in SharePoint 2013

时光怂恿深爱的人放手 提交于 2020-01-26 01:20:10
Creating a Custom Page Layout in SharePoint 2013 In my last article, I documented how to create a Master Page in SharePoint 2013. Master Pages define the global chrome elements of your web site. This article explains how to create custom page layouts in SharePoint 2013. For more information on the SharePoint 2013 page model, see this Microsoft article . Planning Out Your Page Layout For this example, we’re going to recreate a chunk of a page on our web site ( www.navantis.com ): In our previous article, we created Master Page that defined the header, footer and global style sheets for this

How to rename “Title” column in “Item” content type

。_饼干妹妹 提交于 2020-01-25 22:05:26
问题 I wrongly renamed the 'Title' to 'First Name' in the Item content type. Now sharepoint won't allow me to rename 'First Name' back to 'title'. Now in my site all Title columns show up as 'First Name'. Can anyone please help to rename 'First name' back to 'Title'? 回答1: The easiest it to use SharePoint Manager: Go to the right site collection Go to the right site Open Fields Find the column and rename the Title property Save 回答2: Once you change the name from Title to something else, you are

Is there options how to code/create workflow using SPFx?

﹥>﹥吖頭↗ 提交于 2020-01-25 12:13:20
问题 I developing web-part client-side solution using sharepoint framework. I successfully create a lists with some columns (it's list's columns not site). But now, I need to create a workflow, so is there any options, how to coding workflows using sharepoint framework and web-part client side solution? Have anybody some ideas or documentations witch could help me to moved further? 回答1: Can't create workflow in SPFx solution, you could use SharePoint add-in or Microsoft flow. SharePoint add-in

Is there options how to code/create workflow using SPFx?

倖福魔咒の 提交于 2020-01-25 12:12:21
问题 I developing web-part client-side solution using sharepoint framework. I successfully create a lists with some columns (it's list's columns not site). But now, I need to create a workflow, so is there any options, how to coding workflows using sharepoint framework and web-part client side solution? Have anybody some ideas or documentations witch could help me to moved further? 回答1: Can't create workflow in SPFx solution, you could use SharePoint add-in or Microsoft flow. SharePoint add-in

Is there options how to code/create workflow using SPFx?

大兔子大兔子 提交于 2020-01-25 12:12:15
问题 I developing web-part client-side solution using sharepoint framework. I successfully create a lists with some columns (it's list's columns not site). But now, I need to create a workflow, so is there any options, how to coding workflows using sharepoint framework and web-part client side solution? Have anybody some ideas or documentations witch could help me to moved further? 回答1: Can't create workflow in SPFx solution, you could use SharePoint add-in or Microsoft flow. SharePoint add-in

SharePoint extension command set

会有一股神秘感。 提交于 2020-01-25 08:57:05
问题 SharePoint Modern: Is it possible to add an custom action using command set for a particular list or how to activate a custom action for specific list? I am trying to develop a custom action for specific list but when I deployed in SharePoint tenant this custom action is added for all list(same type of list template). 回答1: Here is my test solution to limit command set extension to specific list. We could get current list title by this.context.pageContext.list.title . @override public

How to load the online pdf files in Xamarin webview?

女生的网名这么多〃 提交于 2020-01-25 07:05:52
问题 I have trying to load and display the online pdf file (file from sharepoint link) in Xamarin forms Webview. To load the pdf, i have implemented the pdf viewer using custom renderer. But, there files are not loaded. Can you please help me out on this ? Following code are used to load the file. var customWebView = Element as AuthWebView; Control.Settings.AllowUniversalAccessFromFileURLs = true; Control.Settings.PluginsEnabled = true; Control.Settings.JavaScriptEnabled = true; // Control.LoadUrl

How to load the online pdf files in Xamarin webview?

佐手、 提交于 2020-01-25 07:05:07
问题 I have trying to load and display the online pdf file (file from sharepoint link) in Xamarin forms Webview. To load the pdf, i have implemented the pdf viewer using custom renderer. But, there files are not loaded. Can you please help me out on this ? Following code are used to load the file. var customWebView = Element as AuthWebView; Control.Settings.AllowUniversalAccessFromFileURLs = true; Control.Settings.PluginsEnabled = true; Control.Settings.JavaScriptEnabled = true; // Control.LoadUrl

webservice oneway and new SPSite(myUrl)

旧城冷巷雨未停 提交于 2020-01-24 22:04:26
问题 I have a problem with a oneway web method that open a moss site (probably because in a oneway webmethod the context is null) Is possible to rewrite this code to remove the null reference exception? (without the oneway attribute i don't have the exception) [SoapDocumentMethod(OneWay = true)] [WebMethod(Description = "TestOneWay")] public voidTestOneWay(string webUrl) { using (SPSite site = new SPSite(webUrl)) { .... } } the exception is: [2304] Error:Object reference not set to an instance of

visual studio does not copy assembly into gac

折月煮酒 提交于 2020-01-24 16:06:49
问题 I have a class library and a sharepoint project. I have added a reference to the class library in the sharepoint project and when I click deploy I don't see the class library assembly in the gac. I think this is not normal. can any please let me know how can I solve this issue without resorting to manual deployment? thank you. 回答1: You have to open the package in the package editor, go to Advanced, and add the class library's DLL there. It doesn't happen automatically just from adding an