Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,441 through 4,455 (of 4,756 total)
  • Author
    Posts
  • in reply to: vLookup load time #7846
    Alexander Bautz
    Keymaster

      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

      in reply to: Where to paste the license for DFFS V3 #7845
      Alexander Bautz
      Keymaster

        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

        in reply to: Setting field value from a lookup #7821
        Alexander Bautz
        Keymaster

          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

          in reply to: vLookup load time #7820
          Alexander Bautz
          Keymaster

            Hi,
            Have you updated the DFFS files also? – this is necessary for the new vLookup functionality to work.

            Alexander

            in reply to: vLookup load time #7816
            Alexander Bautz
            Keymaster

              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

              in reply to: Error HRESULT: 0x80131904 #7804
              Alexander Bautz
              Keymaster

                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

                in reply to: Error HRESULT: 0x80131904 #7802
                Alexander Bautz
                Keymaster

                  Can you test to pull back only the “Title” field in the “ViewFields” from the vLookup “child”?

                  Alexander

                  in reply to: Error HRESULT: 0x80131904 #7795
                  Alexander Bautz
                  Keymaster

                    Can I see the config screen for the vLookup column in DFFS backend?

                    Alexander

                    in reply to: Display item ID # on a Tab #7792
                    Alexander Bautz
                    Keymaster

                      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

                      in reply to: Change field color on change #7790
                      Alexander Bautz
                      Keymaster

                        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

                        in reply to: Pre-Filtered Lookup List #7788
                        Alexander Bautz
                        Keymaster

                          Hi,
                          I’m not sure I understand exactly what you mean. Can you attach a screenshot or explain in more detail?

                          Alexander

                          in reply to: Missing side-by-side header after tab switch #7787
                          Alexander Bautz
                          Keymaster

                            Hi,
                            To fix this, you must move the headings up – over the field where you pull it into the side-by-side field.

                            Alexander

                            Alexander Bautz
                            Keymaster

                              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

                              in reply to: Sorting Rows #7769
                              Alexander Bautz
                              Keymaster

                                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

                                in reply to: Accordion Setting to Leave Headings Expanded? #7757
                                Alexander Bautz
                                Keymaster

                                  Sorry, but there is currently no such option.

                                  Alexander

                                Viewing 15 posts - 4,441 through 4,455 (of 4,756 total)