Re: [Xsltforms-support] Bind to an attribute within a repeat

2013-01-08 Thread Alain Couthures
Hi Elias, XPath expressions for attributes are not correct: it should be "id/@seq" instead of "id@seq" With these fixed XPath expressions, it sounds it works for me! -Alain Le 08/01/2013 22:08, Elias Mazur a écrit : Hi. I need to bind an attribute of an element to an integer. This element

Re: [Xsltforms-support] TinyMCE inside xf:repeat

2013-01-08 Thread Michael Seiferle
Hi Alain, No hurries! I am currently working on loading the editor on demand (and unloading instances that are currently not used); it's not perfect yet but I can send you my changes, it seems to work reasonably well. I'll try to wrap it up and send you a demo by Friday :-) Best and thanks!

[Xsltforms-support] Bind to an attribute within a repeat

2013-01-08 Thread Elias Mazur
Hi. I need to bind an attribute of an element to an integer. This element is part of a repeat. Here is what the code looks like: --- http://www.w3.org/1999/xhtml"; xmlns:xf=" http://www.w3.org/2002/xforms"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";> Test XForms

Re: [Xsltforms-support] TinyMCE inside xf:repeat

2013-01-08 Thread Alain Couthures
Hello Michael, This issue is due to DOM node cloning and tinyMCE doesn't support this. Apparently, duplicate ids are confusing it and XSLTForms is not changing ids before adding cloned nodes but just after. So, this requires a not so trivial change in XSLTForms. Are you in a hurry about this