Forum Replies Created
-
AuthorPosts
-
I’ll look into this in the next release.
Alexander
Hi,
When using a calculated column the value returned from the query is delimited with ;# and we have to strip this out.Change the function like this (new code in bold font):
fObj[item[field]] = 1;
if(item[field].split(“;#”).length > 1){
item[field] = item[field].split(“;#”)[1];
}
b.push({“f”:””+item[field]+””,”v”:””+item[field]});Alexander
Hi,
Thanks for reporting this issue. I have already fixed it in v4.101, but have a few other small things I hoped to get into this release. I will publish it within a few days.Let me know if this bug is a show-stopper for you – I could publish a fix for this specific issue.
Alexander
I have done some tests and have successfully used JSLink to load the frontend of DFFS, but I must do some more tests as I currently have not figured out how to load the “overlay”.
Alexander
Hi,
This is caused by SharePoint appending text to the bottom (and maybe the top) of the file when you copy / migrate files in a document library.I’m actually not sure how to prevent this – other than to add the files to a folder on the root of the site collection (not in a document library).
Alexander
Hi,
This was strange – can you post an image of the configuration for the tab you posted the image of?
AlexanderHi,
I cannot think of any other reason that the z-index. Look in the superfish css file to see if there are any z-index settings there that could override.Also use the deceloper tools (F12) to inspect the element to help figure out where the z-index is coming from.
Sorry I cannot be more specific.
AlexanderHi,
Q1: DFFS cannot show fields that are not part of the content type. If you want to be able to show additional columns, you must go into the list settings and add those columns to the “link to document” content type.Q2: Are you sure you have added the Cascading dropdown solution correctly? – the fields in the list is supposed to be of type “plain text”.
Please add some screenshots so it is easier for me to see what you have configured.
Alexander
Hi,
For Q1 I’m afraid I have no good answer, but ensure you have not selected the option “Show data value in the column” in the advanced options.For Q2 this is not possible right now, but I am working on a new version of SPJS Charts for SharePoint where this is one of the new features.
Alexander
The pipe will actually match the “two values” [blank] and [blank]
You are supposed to leave the “This value” field empty to compare with “null” or “blank” – did you try that?
Alexander
Hi,
Use this in the Custom JS section in the Misc tab:$(spjs.dffs.fields["CaseStatus"]).find("h3").html("New status label");
“CaseStatus” is the FieldInternalName of the field you want to change. Look at the bottom of the Misc tab for a reference table to find the proper FieldInternalName.
Alexander
September 23, 2014 at 19:57 in reply to: CSS to remove space between rows in Side by Side Fields #6248Hi,
This should remove the padding:td.ms-formlabel, td.ms-formbody{ padding-top:0px; padding-bottom:0px; }
Add this to the Custom CSS in the Misc tab.
Alexander
Hi,
I guess you could hide it by adding this to the Custom CSS sections in the Misc tab:div.ms-recommendations-panel{ display:none; }
Alexander
Hi,
I have seen this if I attach a master page to a “standalone” aspx file, and then load this aspx file using the content link option of a Content Editor Web part into a web part page. Could this be the issue?Take a look at the actual file (DFFS_frontend_CEWP.js.aspx) to see if this text has actually been added to the file.
Alexander
Hi,
I did a quick test in a list by entering EditForm and changing the “ContentTypeId” to a blank string like this:.../Lists/Tasks/EditForm.aspx?ID=14&ContentTypeId=
This gives me the “Sorry, something went wrong” message with “An unexpected error has occurred”.
I don’t think this error has anything to do with DFFS, but it is a general error from SharePoint.
I hope you can sort it out.
Alexander
-
AuthorPosts