Search Results for 'list form'

Home Forums Search Search Results for 'list form'

Viewing 15 results - 1,336 through 1,350 (of 1,356 total)
  • Author
    Search Results
  • #6570
    David S Kaimann
    Participant

      I’ve upgraded to the 2.0 version of vLookup (used both 2.000 and 2.002); however, I can no longer see my vLookup Column in ListView. Everything is working fine on the DispForm page and I’ve modified the code below my ListView to match what’s in the User Guide, but still no luck. Any chance you can confirm if there’s something I’m doing wrong? I’ve attached a file with more information.

      Thanks!

      Attachments:
      #6565
      ErikT
      Participant

        I had the same error message, and thought at first there was a DFFS issue.
        After some debugging and searching I thought that Sharepoint probably was to blame.

        The July 2014 CU for Sharepoint 2013 introduced a bug with people picker (comma in user name).
        See info for description, workarounds and fix info.

        BUT:
        For regular list the people picker now works correctly, lists with DFFS enabled still has the same error (Loading …, message This took forever, read-only field is editable and sometimes blanked out

        So at the moment I have the following issue
        DFFS – Error with IE 9 , IE 11 works fine (regular desktop, running Win7).
        Level of access isn’t a factor anymore, was before (September CU fixed this)

        Plattform : Sharepoint 2013 on-premise
        Trigger : field is equal to (value, choice field)

        Some debug info from IE:
        File: spjs-utility.js, Line: 652, Column: 7
        SCRIPT5007: Unable to get property ‘GetControlValueAsJSObject’ of undefined or null reference

        Line 652:
        $.each(SPClientPeoplePicker.SPClientPeoplePickerDict[thisField.find(“div.sp-peoplepicker-topLevel”).attr(“id”)].GetControlValueAsJSObject(),function(i,o){

        schneika
        Participant

          When i add your suggested code to the vLookup list view code (in my CEWP or HTML Form Web Part):

          
          
          <script type="text/javascript">
          var vLookupListViewTracker = "";
          setInterval(function(){
          	if(location.hash.indexOf("InplviewHash") > -1 && location.hash !== vLookupListViewTracker){
          		vLookupListViewTracker = location.hash;
          		spjs.vLookup.init();
          	}
          },1000);
          </script>

          then with this fix the behavior of the inplaceview is much better now. it works with a single listview-paging Action or a single list-box-search Action. But the fix gets broken and the context to the vLookup gets lost, when i use the inplaceview (Paging or List-Search-Box) twice without pagerefresh

          #6540
          Lana
          Participant
            <a href=“http://xxxxx.xxxx.xxxxxx/xxxxx/xxxxx/xxxxxTestingArea/TestScripts/ScheduleASATObjectivesforEntities.docx”>Click here to open Scheduler Script.</a>

            This is to a Document Library on my site.
            When the above is entered in the heading, it is appended to the URL for the form itself. So after inputting the above, you save the Tabs page and go back to the form. If you click on the link created by the above you get a blank page. If you go back to the form and hover over it you will see the URL that it is trying to go to at the bottom of the screen. It ends up looking like this:
            http://xxxxxx.xxxxx.xxxx.xxx/xxxx/xxxxxxx/xxxxxxxxxxx/Lists/xxxxxxx/“http://xxxxx.xxxx.xxxxxx/xxxxx/xxxxx/xxxxxTestingArea/TestScripts/ScheduleASATObjectivesforEntities.docx”
            So it is adding the href to the current URL for the form…..

            #6532
            Alexander Bautz
            Keymaster

              Hi,
              Sorry for the delay. If you have not already figured it out, please look at the “SPJS-vLookupSettings” list and see if the value in the Title field is in this format “LibraryUrlName:vLookupFieldName”.

              When it comes to Project server I have no experience so I cannot tell if this affects the functionality of vLookup.

              Alexander

              #6514
              Alexander Bautz
              Keymaster

                I got a question from William like this:

                So this is working great. Because the SPID is not created until the record of the parent is saved, I assume I cannot create child records when making a new parent item. So I have this case where I need to enter multiple child items related to a parent, is there a way to have something that would basically be a button or something that would “Save and add new child item” vs hitting the save button, finding the parent record in a long list and clicking create new child each time? Basically, what is the easiest way to create multiple child records?

                Thanks

                This can be done by adding this snippet of code to the child NewForm:

                <script type="text/javascript">
                if(location.search.indexOf("SendMeBackToNewForm") === -1){
                	var nURL = location.href.split("&Source=")[0];
                	nURL += "&Source="+nURL.split("&").join("%26")+"%26SendMeBackToNewForm";
                	location.href = nURL;
                }else if(location.search.indexOf("Source=") === -1){
                	location.href = location.href+"&Source="+location.href.split("&").join("%26");
                }
                
                if(GetUrlKeyValue("ClickCancelBTN") === "1"){
                	$("input[id$='diidIOGoBack']:last").trigger("click");
                }else{
                	$("input[id$='diidIOGoBack']").click(function(){
                		location.href = location.pathname+"?ClickCancelBTN=1";
                	});
                }
                </script>

                Please note that this code requires jQuery to be loaded in the page. This should already be in place when you add the vLookup solution to the NewForm, but you must place this snippet below the jQuery script, but before the vLookup script is loaded.

                Alexander

                #6419
                Kyle Vaske
                Participant

                  Is there an amount limitation to the rules that can be applied a form? I have created a list that is growing rather large as the users keep asking for more data to be displayed on it. The list format is several questions that have a Yes/No choice, and then a comments field for each question. They are asking for a rule to be in place for if the answer is No, the comments tab will be required. This would be in place for over a hundred fields, with each question requiring a separate Rule. Will this get too large and slow down the processing of the list?

                  • This topic was modified 10 years, 6 months ago by Alexander Bautz. Reason: Moved to DFFS forum
                  Jay Nebben
                  Participant

                    I’m trying to set up vLookup 1.731 (as an add on for DFFS4) on a document library to show the workflow history for related documents. The SharePoint site is inside a Project Server 2010 environment.

                    I see the prompt for the field setup over and over again and the configuration is saved to the vlookup list but the library title is missing from the entry and it never seems to register with the form.

                    #6393
                    Alexander Bautz
                    Keymaster

                      Hi,
                      I’m not sure I can do anything about this as by default there is a redirect / refresh when deleting an item or closing a dialog. If you do not have a “Source=SomeURL” in the URL, you will be redirected back to the default list view of the list you deleted the item in.

                      You might be able to “hack it”, but this would take some custom code.

                      As a start you can look at this code that hijacks the built in delete function in SP2013 and possibly SP2010? (add it to the DispForm of the item you want to delete):

                      /* must refer jQuery and spjs-utility.js scripts */
                      DeleteItemConfirmation = function(){
                      if(confirm("Are you sure you want to delete this item?")){
                      var res = spjs_deleteItem({"listName":_spPageContextInfo.pageListId,"id":GetUrlKeyValue("ID")});
                      if(res.success){
                      if(GetUrlKeyValue("IsDlg")==="1"){
                      alert("Item deleted successfully");
                      window.frameElement.commitPopup(); // < this code will make the parent page refresh...
                      }else{
                      alert("add a redirect here..:");
                      }
                      }else{
                      alert("Delete failed with this message:\n"+res.errorText);
                      }
                      }
                      }

                      Alexander

                      Ben H
                      Participant

                        When I delete an item in a vLookup child list by opening from the parent in DFFS (popup iframe) the parent item is reloaded in full page Display View losing any unsaved changes made to the parent item. Is there a way to stay in the parent item Edit Form after deleting a child (as happens for new or editing the child item)? Thanks

                        #6358
                        Kyle Vaske
                        Participant

                          Is it possible to show a Hyperlink on the form? What I am trying to get here is when a field equals a certain text, then a Hyperlink will appear on the screen and can be clicked.

                          How can I show the Hyperlink? Lookup columns cannot be a hyperlink, as I have tried that.

                          #6336
                          Kasey
                          Participant

                            Having an issue with vLookkup in DFFS v4. I am using your new version of vLookup and when I create a new record with a date column it sets it to the previous day. I think it has something to do with time and maybe will be corrected with your new release. Example. In the display form of list 1 I have vlookup pulling in list 2. When I click on new for list 2 the modal pops up. If I use the date control and set it to today and save the list of items refreshes and it shows the new item but shows yesterdays date instead of todays.

                            • This topic was modified 10 years, 7 months ago by Kasey.
                            #6321
                            Niclas Hultberg
                            Participant

                              Hi Alex, I have to say that i rely like this.
                              When i use DFFS on a subsite I can create tab and everything, but noting shows up when I create a new item.
                              i look in to the SPJSDynamicFormsForSharePoint list
                              and every item i starting with /Lists/something
                              and it is the same for the subsite I was expecting /Subsite/Lists/something but it is the same as above. So a expect that Frontend don’t find the list. every list in the root is working fine. I have put every file in a library http://mysite/CodeLib and I refering i Overlay and frontend /CodLib/DFFS_fr…

                              Can you please tell me what I doing wrong

                              #6316
                              Kasey
                              Participant

                                What controls the position of the Tooltip in v4? I have an issue but it may be related to the master page. I have disabled modal for forms on a list. Tooltip positioning works fine until I scroll down. The more I scroll down on the page the worse the positioning gets for the tooltips. After I scroll down about 400 pixels the tooltips are lower than the viewable area. Any ideas? If I knew what controlled it I might be able to add some custom css to account for it.

                                #6305

                                Topic: Attachments

                                in forum Classic DFFS
                                Oranges2
                                Participant

                                  A) I have a list where after a status is set to Approved the fields become read-only, including attachments. Is it possible to hide the ‘Attach File’ from the ribbon and the paperclip icon on the form so it doesn’t look like they can add more files?

                                  B) On a task list, is it possible to hide the Save button?

                                  Thank you!

                                Viewing 15 results - 1,336 through 1,350 (of 1,356 total)