2016-06-21 21 views
-1

SharePoint UI開発者になるために必要なスキルは何ですか? UIを開発する際に使用されるツールとアプリケーションSharepoint UI開発者のスキル

私の心配は基本的にUI開発者であり、それは共有ポイントUI開発者とは何ですか?

答えて

0

私は、ASP.NET、CSS、HTML、JavaScriptのようなWeb開発のスキルを持っているべきだと思います。しかし、SharePointでページを作成した場合、バックエンドコードはC#(2010年版 - わからない他のバージョン)にあることがよくあります。したがって、C#のような.NET言語の1つにもスキルが必要です。

+0

C#またはVB.net。どちらも同じようにサポートされています。 –

1

厳密には、UIの場合は、必要に応じて、CSS、HTML、JS、jQueryで指定された同僚の@dns_nx以外の特別なことに慣れる必要はありません。あなたが理解する必要があるのは、SharePointの基本概念とその運用方法だけです。たとえば、SharePoint内のすべてがその中でホストされているような基本的なことを理解する必要があります。だから、例えば、あなたはjQueryのを使用している場合、あなたはこのように、好ましくはカスタムアクションでは、競合を防ぐために、一度だけ、それをロードする必要があります:あなたはAjaxコントロールを使用している場合

 <CustomAction 
     Location="ScriptLink" 
      ScriptBlock=" 
      document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/bootstrap/css/bootstrap.css? v=1.2&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/slick/slick.css?v=1.2&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/style/prettyPhoto.css?v=1.2&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/style/fontawesome/font-awesome.min.css?v=1.2&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/style/jquery-ui.css?v=1.4&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/UniteGallery/css/unite-gallery.css?v=1.5&quot;&gt;&lt;/' + 'script&gt;'); 
document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;~site/_layouts/15/MyPortalAdditions/style/Mydevstyle.css?v=1.85&quot;&gt;&lt;/' + 'script&gt;');" 
Sequence="1000" /> 


<CustomAction 
Location="ScriptLink" 
ScriptSrc="~site/_layouts/15/MyPortalAdditions/script/jquery-1.11.1.min.js" 
Sequence="1001" /> 
<CustomAction 
Location="ScriptLink" 
ScriptSrc="~site/_layouts/15/MyPortalAdditions/script/jquery-ui.min.js?v=1.4" 
Sequence="1002" /> 
    <CustomAction 
    Location="ScriptLink" 
    ScriptSrc="~site/_layouts/15/MyPortalAdditions/slick/jquery-migrate-1.2.1.min.js?v=1.4" 
    Sequence="1003" /> 

また、あなたがいることを知っている必要がありますSharePointはすでに独自のスクリプトマネージャをロードしています。したがって、別のページを追加すると競合が発生し、ページ/ Webパーツは機能しません。

関連する問題