6 Replies Latest reply on Feb 1, 2008 6:48 AM by marx3

    dragindicator

    marx3

      Hello
      I made drag&drop and it's working. Hovewer I have a problem with dragindicator. It shows only as dotted line (green or red) and there is nothing inside. I would like to have indicator exactly as in demo (image+dragged object). I've tried to put sth into dragindicator tag, but nothing works.
      For example:

       <rich:dragIndicator id="indicator">
       <f:facet name="single">
       <h:outputText value="TEST" style="color: red; border: 3px solid blue;"></h:outputText>
       </f:facet>
       </rich:dragIndicator>
      

      There is nothing in demo suggesting I need my own images, so I suspect those images indicating when I can drop are build in into RF?

        • 1. Re: dragindicator
          marx3

          I've isolated my code and it seems there are some requirements on placing dragindicator in page, but they aren't documented anywhere
          I dig through forum and i've found only:

          "empty box means the default indication. I.e. you did not point to your custom indicator correctly and the default appeared instead.
          Did you have a h:form or f:subview around the top htm:table ?"

          but I don't understand: should I have h:form or f:subview or I shouldn't?

          • 2. Re: dragindicator
            marx3

            When I place sth like this inside dragindicator tag:
            <f:facet name="single">...
            it works
            But
            <f:facet name="accept">
            <f:facet name="reject">
            <f:facet name="default">
            doesn't work.
            Is it anywhere documented which facets are available?

            • 3. Re: dragindicator
              marx3

              ok I see there is only "single"
              There is also build-in makro {marker}.
              Are there any other macros predefines? Is anybody reading it? :)

              • 4. Re: dragindicator
                marx3

                ok it seems dragindicator cannot be inside a <h:form

                • 5. Re: dragindicator
                  ilya_shaikovsky

                  if you use dragIndicator inside a form you should use id like "formId:indicatorID" defined in dragSupport indicator attribute

                  • 6. Re: dragindicator
                    marx3

                    it works thx
                    i feel it should be documented somewhere