Forum Replies Created
-
AuthorPosts
-
I’m glad it worked – you find more bacon here: https://baconipsum.com
Alexander
Hi,
Unfortunately DFFS does only support unmodified forms (no SPD customization).Alexander
Sorry, but currently there is no built in method to do this. I’ll consider adding support for this in future releases.
Alexander
Hi,
To restrict the width of this text, you must wrap it in for example a <div> like this:<div style="width:400px;">Bacon ipsum dolor amet t-bone pig turducken bresaola. Drumstick meatloaf jowl salami leberkas venison. Kielbasa prosciutto ribeye rump boudin, jerky pig leberkas hamburger strip steak ham hock turducken bresaola. Pastrami prosciutto biltong filet mignon. Pancetta t-bone chuck shoulder, ribeye jerky rump short ribs turkey capicola venison. Brisket pastrami jerky sausage rump bacon biltong cupim strip steak beef ribs shankle chuck turkey ribeye swine.</div>
Hope this helps,
AlexanderNo problem, I’m glad you figured it out.
Alexander
Hi,
ColorFormat expexts a number range so I guess you must use script. I have tested this and it works, but you must change the timeout to ensure your table is ready:setTimeout(function(){ $("td.google-visualization-table-td:contains('Pending')").css("color","red"); },3000);
Hope this helps,
AlexanderHi,
The reason you loose the default formating is because the original TD is substituted with a new one, and this does not use the default class from SharePoint. The new TD can be styled using standard CSS so if you add this line to your custom CSS:td.dffs-readonly,td.dffs-readonly-inner{ background-color:#FFFF66; background-image:url(); border-top:1px silver solid; }
You must verify the color of the border by inspecting an existing TD using the developer tools in the browser (hit F12) to match the same look.
Hope this helps,
AlexanderHi Rich,
I fixed the image format (and removed your other comment) – thanks again for taking the time to post these examples!Best regards,
AlexanderThanks!
Alexander
Thanks for posting this Rich, the heading looked nice – can you post a screenshot / code snippet of the configuration for the heading with the 1-9 steps?
Best regards,
AlexanderIf you are in a dialog, use something like this:
function deleteMe(){ var dRes = spjs.utility.deleteItem({ "listName":_spPageContextInfo.pageListId, "id":GetUrlKeyValue("ID") }); if(dRes.success){ window.frameElement.commitPopup(); } }
Call “deleteMe” from your custom button.
Alexander
If you cannot use the default delete button in the ribbon, you can use custom code like this (requires spjs-utility.js):
var dRes = spjs.utility.deleteItem({ "listName":_spPageContextInfo.pageListId, "id":GetUrlKeyValue("ID") }); alert(dRes.success);
Please note this example id for SP2010 or 2013 – for SP2007 you must change “_spPageContextInfo.pageListId” with the actual GUID of the current list.
Alexander
Hi,
Unfortunately I currently do not have a solution for mobile views. I might be able to offer this in the future, but for now I’m afraid DFFS will not work for mobile views.Alexander
Hi,
Sorry for the delay, the problem is that the variable is undefined. Can you post here (or email to me) screenshots of the rule that causes this error?Also, specify the version number for DFFS frontend and backend, and the SharePoint version.
Alexander
Hi,
Sorry for the delay – this one might help you
Alexander -
AuthorPosts