Zebrada

Results 6 comments of Zebrada

Even if this is a poor question without any description, I would really like to know if this is possible with "native" skyhook or not.

Thanks for the advice. I'll have a look at this. Also I'm gonna have to get a closer look at backends since I'll need to add some animations on dropped...

Well the SkyhookDndModule needs a backendFactory where the term Transition appears but I can't figure out how this is supposed to worked.

I've never really worked with animations so I can't say for sure but from what I read, it looks like I will have to listen to events and that a...

Thank you. I'll take a look at his work then. I was hopping to use @angular/animations too ... I'll let you know if I succeed. Maybe you'd want to add...

Alternative is : ``` private static String getAttributeValueByLocalName(XMLStreamReader2 element, String localName) { for (int i = 0; i < element.getAttributeCount(); i++) { if(localName.equals(element.getAttributeLocalName(i))) { return element.getAttributeValue(i); } } return null;...