How to build a slideshow(dynamic) in SharePoint 2013. I have already tried OOTB but all of them are static.I have also tried some java script but even scripting cannot give create dynamic slide show.
By dynamic I mean that if I edit the list/library (from SharePoint itself) that change must be reflected back on the slide show. Can anyone help?
There is sevrals solution.
You could use the SharePoint Search and the display template for generate you slideShow.
You can find a tuto here : Image Slider with SharePoint 2013 Search Results Web Part
Or you can dev it with pure JS script.
A SIMPLE JQUERY CONTENT SLIDER
Related
I use sharepoint 2010 and I get a deformed pop up menu for Date selection. Nothing fancy here. Just a simple form to enter some data with date.
Have you seen this before? I get the same effect in Chrome/Firefox latest versions.
Thank you in advance
This is a problem with your SharePoint site's CSS (or possibly with JavaScript that affects the CSS).
That big image is a spritesheet; CSS is supposed to crop the visible region so that you only see the specific sprites that are relevant to the current control.
You can pull up the developer tools with F12 and inspect the image element and its containers to see what CSS is currently applied, as well as check for any errors in the JavaScript console.
Clear your browsers cache and reload page. Delete the datetime column and create a new.
In multiple Windows Store App tutorials i have come across, where Visual Studio 2012 is used, the user is told to delete MainPage.xaml and replace it with a new item called Basic Page.
Since Windows Store Apps is not available in the version I'm using (Visual Studio 2015 Ultimate), when creating a new project, I went with Windows Universal Blank App. The problem is I can't find the Basic Page item in the version I'm using.
Is there an equivalent item I can use instead?
Edit: YouTube tutorial link
I know absolutely nothing about Windows Store Apps and Universal Apps, but was told by my CS teacher that I should use Windows Universal App, when creating the project. The tutorial was his recommendation, and he expects that I finish it during the weekend, so I can't ask him about it. I'm guessing there must be some difference between WSA and WUA. I can't see any item that looks like Basic Page, and I don't really know why the guy is replacing the MainPage.xaml with a Basic Page, so i'm clueless about what to do now.
You should use Blank Page option instead.
Difference between Basic Page and Blank Page
Basic Page- This on addition also adds some boilerplate code related to navigation inside your app along with back button and Appname header in XAML code.
Blank Page- Only adds a default page with basic navigation.
Make sure you have installed app development SDK's, since under C# you are supposed to get Universal option which I am not seeing in your current screenshot.
If you install Windows 8.1 SDK then you might get Basic Page template option. But for windows 10 SDK you can use Template10 add it as nuget package which already contains these navigation related boilerplate codes.
I'm working on a webpart for SharePoint 2010 and I would like to know how to config it to work in every existing and future document library. It won't be good for the project to add it every time a new document library is created.
Any ideas?
You need to create a custom List Definition which will include its own AllItems.aspx with your custom web part embedded.
However, this will work if you create the library of this template in future not for others.
Other solution could be to have your web part as a web server control and include it in your master page. This way, the control can find out if there is any ListView web part is present on page.
I've built a web part for SharePoint 2010.
Using SharePoint Designer I've got it to work on every page within the site, but then I realized that I only want it to work when users navigate document libraries.
Is there any way to do that? If not, how can I check that condition from the web part?
Using SharePoint Designer I've got it
to work on every page within the site
Does this mean you have embedded it in the master page?
A quick and dirty way; you could check the url for /Forms/ and only show it then.
I m fairly new to working with the TFS SDK and & was wondering whether it's possible to use/write a custom editor 'control' for the work item text editor.. in order to provide more powerful editing capabilities (images, tables etc).
Does anyone know whether this is possible without breaking the rules of physics and/or whether there are already 3rd party solutions out there?
I don't know of any 3rd party tools to JUST do that, I am quite fond of Telerik TFS Work Item Manager though.
It is definitely possible to include a custom control on your work item form essentially displaying images. Here is the offical MSDN for Work Item Tracking Custom Controls. There are some ready-made custom controls on Codeplex: TFS Work Item Tracking Custom Controls.
Lastly a good discussion: Display Image in work item form for TFS. (About really having rich-text within the work items like tables etc. I couldn't find anything)