Forum Replies Created
-
AuthorPosts
-
I’ll have to test this in a SP2010 test site to try to recreate this behavior, and I’ll update this post when i have looked at it.
Alexander
Look at page 6 in the installation manual:
If this does not help, send me and email and I’ll generate a new license code for you.
Alexander
Hi,
If I understand your question correctly, this is not possible as these “extra” lookup column properties are only available in DispForm.Have you looked at the vLookup plugin? – this might be able to solve your problem.
If not, you would need to write some custom code to get hold of the value from the “lookup list”.
Alexander
Hi,
Have you updated the DFFS files also? – this is necessary for the new vLookup functionality to work.Alexander
Yes, the load time is most likely suffering from all the vLookups. I have developed a new version of vLookup and DFFS that makes the vLookups render on first display in a DFFS Tab. This will reduce the load time significantly.
I have not had the time to publish it yet, but I have sent you an email with the updated files for test, and will try to find time this weekend to publish it.
PS: If you have not received it, your mail server may have blocked the attachments.
Alexander
It’s hard to tell without looking at it, but this child list: does it have for example a lot of lookup or people picker columns?
Can you try setting up a new custom list with only the title field and test pointing the vLookup to this list?
Same issue there?
Alexander
Can you test to pull back only the “Title” field in the “ViewFields” from the vLookup “child”?
Alexander
Can I see the config screen for the vLookup column in DFFS backend?
Alexander
Sorry for the delay – I didn’t get a notification form the forum.
You should find the ID column in your field list to include in the tabs, but only when configuring DispForm or EditForm.
Are you sure you don’t see it.
Alexander
Put this is the Custom CSS in the “CSS and JS” tab:
.tabGreen *{ color:#ffffff !important; background-color:green !important; } .tabYellow *{ color:#444 !important; background-color:yellow !important; } .tabRed *{ color:#ffffff !important; background-color:red !important; }
Put this is the Custom JS in the “CSS and JS” tab:
function colorTab(){ $("#dffs_tab_2").removeClass("tabGreen tabYellow tabRed"); switch(getFieldValue("Color")){ // Color is the FieldInternalName case "Green": // The option form the choice field $("#dffs_tab_2").addClass("tabGreen"); break; case "Yellow": // The option form the choice field $("#dffs_tab_2").addClass("tabYellow"); break; case "Red": // The option form the choice field $("#dffs_tab_2").addClass("tabRed"); break; } }
Change the tab ID number of the tab – “dffs_tab_2” is the third tab as the index is 0-based. Also change the “case” to match your choice field values.
Then add a rule to trigger on your choice field, and have it call the function “colorTab” in the “Run these functions / trigger these rules” field.
Alexander
Hi,
I’m not sure I understand exactly what you mean. Can you attach a screenshot or explain in more detail?Alexander
Hi,
To fix this, you must move the headings up – over the field where you pull it into the side-by-side field.Alexander
Hi,
Sorry for the late reply. Did you by any chance inclued jQuery two times to the page? – this could explain this behavior. If you did, try removing the additional script tags referring to jQuery.Alexander
Currently you cannot sort the list items from within the chart configuration when you are not using “Custom CAML”. This means you must sort the list items in the list view you use as source for your chart.
Alexander
Sorry, but there is currently no such option.
Alexander
-
AuthorPosts