Posts

Showing posts from April, 2017
Image
Dear All Following are the steps for the After this setup if you got the error for the "Access denied by Business Data Connectivity error for anonymous users when accesing external list"  You need to follow the following steps    This is because the user  doesn't  have the permission to the external content type. How to resolve: Open  Central Administration . Click on  Manage service applications  which is available in the  Service Applications  section. Click on Business Conectivity service application. Select the external content type, click on  Set Permissions  in the ECB menu. Add the user and then click on Add. Give the permissions for the user and click on Ok. Now navigate to the external list you will be able to see the data in the list. After that if you face a problem with the “Login failed for user "NT AUTHORITY\ANONYMOUS LOGON" while browsing to external list.” To resolve it following script need be wri

Sharepoint Workflow 2013 Option not display under sharepoint designer

Image
Dear All, If you are facing a problem not to display sharepoint 2013 workflow option under sharepoint designer kindly follow the below video it will help you sort out the problem I hope it will save your time  Regards 3art Technology Experts http://www.3art.tech

Open and Close SharePoint Dialog Box or dlg and Refresh Parent Page

Dear All,  If you are looking for close the ISDGL=1 Sharepoint dialog box on button click on C# here is the code for it Add following script files in to ascx file for open popup! <Sharepoint:ScriptLink runat="server" Name="SP.UI.Dialog.js" Localizable="false"  ID="s4" LoadAfterUI="true"/> This script will set the properties of popup window <script>     function openPop_up(pageURL, title, dlgwidth, dlgHeight) {         var options = {               url: pageURL,               title: title,             allowMaximize: false,           showClose: true,           width: dlgwidth,         height: dlgHeight,         dialogReturnValueCallback: Function.createDelegate(null, function(result, returnValue) {               if (result == SP.UI.DialogResult.OK) {                   if (returnValue == null) {                       SP.UI.Notify.addNotification('Operation successful');                       SP.UI