Posts

Showing posts from February 13, 2015

Cascading DropDown Using SP Services in Sharepoint 2013

<script type="text/javascript" src="http://uscl2012v3:1234/SiteAssets/jquery-1.8.2.js"></script> <script type="text/javascript" src="http://uscl2012v3:1234/SiteAssets/jquery.SPServices-0.7.2.min.js"></script> <script>    $(document).ready(function() { $().SPServices.SPCascadeDropdowns({ relationshipList:"EmpManualMaster", relationshipListParentColumn: "Country", relationshipListChildColumn:"Title", //relationshipListSortColumn : "ID", parentColumn:"Country", childColumn:"Category", //State //completefunc: null, debug : true }); }); <script>

Hide Header Column span

$(document).ready(function(){ $('.ms-addcolumn-span').parent().hide(); });