-
Search Results
-
Topic: vLookup in List View
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!
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
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
Topic: Rules Limitation?
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?
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.
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
Topic: Hyperlink On List Form
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.
Topic: DFFS and vLookup Date Issue
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.
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
Topic: Tooltip Position Issue
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.
Topic: Attachments
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!