Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,456 through 4,470 (of 4,756 total)
  • Author
    Posts
  • Alexander Bautz
    Keymaster

      I’m glad it worked – you find more bacon here: https://baconipsum.com

      Alexander

      in reply to: No "Enhanced with DFFS" link on form #7753
      Alexander Bautz
      Keymaster

        Hi,
        Unfortunately DFFS does only support unmodified forms (no SPD customization).

        Alexander

        in reply to: Change "Enhanced with DFF" to Something Else #7751
        Alexander Bautz
        Keymaster

          Sorry, but currently there is no built in method to do this. I’ll consider adding support for this in future releases.

          Alexander

          Alexander Bautz
          Keymaster

            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,
            Alexander

            in reply to: Erorr on date field #7738
            Alexander Bautz
            Keymaster

              No problem, I’m glad you figured it out.

              Alexander

              in reply to: Highlighting Specific Cells in Table Chart #7737
              Alexander Bautz
              Keymaster

                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,
                Alexander

                in reply to: Readonly Field Overwriting Dividing Line #7735
                Alexander Bautz
                Keymaster

                  Hi,
                  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,
                  Alexander

                  in reply to: DFFS Form examples #7721
                  Alexander Bautz
                  Keymaster

                    Hi Rich,
                    I fixed the image format (and removed your other comment) – thanks again for taking the time to post these examples!

                    Best regards,
                    Alexander

                    in reply to: DFFS Form examples #7712
                    Alexander Bautz
                    Keymaster

                      Thanks!

                      Alexander

                      in reply to: DFFS Form examples #7707
                      Alexander Bautz
                      Keymaster

                        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,
                        Alexander

                        in reply to: DFFS: Creating a "delete" button on Edit form #7699
                        Alexander Bautz
                        Keymaster

                          If 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

                          in reply to: DFFS: Creating a "delete" button on Edit form #7695
                          Alexander Bautz
                          Keymaster

                            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

                            in reply to: DFFS for mobile use #7693
                            Alexander Bautz
                            Keymaster

                              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

                              in reply to: spjs.dffs.data.lcidToDateFormat #7691
                              Alexander Bautz
                              Keymaster

                                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

                                in reply to: jquery disables OOB navigation #7690
                                Alexander Bautz
                                Keymaster

                                  Hi,
                                  Sorry for the delay – this one might help you
                                  Alexander

                                Viewing 15 posts - 4,456 through 4,470 (of 4,756 total)