Posts

Showing posts with the label sharepoint 15

SharePoint 2013 - Issue su Document Set

Abbiamo sperimentato un paio di Issue sulla gestione dei Document Set su SharePoint 2013 (testati e riprodotti su SP Online). Ecco qui due promemoria per le prossime volte. Singolo Apice nel Nome del Document Set A differenza della gestione dei caratteri speciali NON permessi sui nomi dei file, per il Document Set abbiamo la restrizione solo per i seguenti caratteri: " # % * : < > ? / \ |. Quindi, apice singolo e & sono permessi nel nome del file. MA, utilizzando l'apice singolo, in creazione del Document Set non abbiamo problemi: visualizziamo la Welcome Page correttamente. Se usciamo dal Document Set, e proviamo a rientrarci, invece, abbiamo il comportamento della Cartella: nessuna welcome page... Se togliamo l'apice dal nome, in Modifica Proprietà, tutto torna alla normalità. Conclusione: controllate manualmente che NON sia presente l'apice singolo nel Nome del Document Set. Errore in Welcome Page per Lookup errate Creiamo un Content Typ...

SharePoint - Write XSLT getting icon image for attachment link

I created an event receiver in MOSS that oncreate and onupdate item, save link of Attachment in a HyperLink Field, named Link1. So I have a list of items, with direct link to document in attachment. In web part, I want to show Icon of type of document, in the first column. But there is no function to get "last index of" dot, in extension of file. So I created the script below, getting last 5 chars in link (probably, the dot and the extension, as ".pptx"): <img src='{concat('/_layouts/images/ic',substring-after( substring(substring-before(@Link1,','),string-length(substring-before(@Link1,','))-4,6),'.'),'.gif')}' /> So, if attachment is a 'pdf' file, it search for image at url "/layouts/images/icpdf.gif". Of course, you have all icon image in /layouts/images, or you can create your custom folder for icons!

Will SharePoint 15 (2013) finally get an App Store?

Image
by Mark Jones | Jan 31, 2012 Just decided to have a few minutes investigation into the recently released  SharePoint 15 Technical Preview Managed Object Model SDK  to see if there is any insight into what's coming up! Before I get started, please note this information is all deduced from the Object Model documented in the SDK and is solely my opinion of what "may" happen. The SDK clearly states that it is "subject to change", so don't bet the crown jewels on anything in this post! The SPApp Store classes (SPApp, SPAppCatalog, SPAppInstance, SPApplicationCredentials, etc.) Well, it looks like SharePoint's going to get some tight integration with an App Store (aka market place). This has been on the cards for quite a while, but I thought they'd have to get the API developed to support it eventually. Reading between the lines, I think there's going to be somewhere in the SharePoint GUI to browse for an "App" in an on-line App S...