xsltforms-support Mailing List for XSLTForms (Page 3)
Brought to you by:
alain-couthures
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(6) |
Jun
(9) |
Jul
(16) |
Aug
(5) |
Sep
(43) |
Oct
(36) |
Nov
(58) |
Dec
(43) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(79) |
Feb
(81) |
Mar
(107) |
Apr
(93) |
May
(85) |
Jun
(54) |
Jul
(64) |
Aug
(54) |
Sep
(45) |
Oct
(53) |
Nov
(34) |
Dec
(77) |
2011 |
Jan
(56) |
Feb
(53) |
Mar
(52) |
Apr
(66) |
May
(44) |
Jun
(16) |
Jul
(28) |
Aug
(5) |
Sep
(15) |
Oct
(21) |
Nov
(51) |
Dec
(46) |
2012 |
Jan
(16) |
Feb
(38) |
Mar
(47) |
Apr
(45) |
May
(41) |
Jun
(41) |
Jul
(72) |
Aug
(17) |
Sep
(10) |
Oct
(16) |
Nov
(29) |
Dec
(30) |
2013 |
Jan
(25) |
Feb
(13) |
Mar
(20) |
Apr
(25) |
May
(34) |
Jun
(8) |
Jul
(12) |
Aug
(9) |
Sep
(21) |
Oct
(19) |
Nov
(6) |
Dec
(2) |
2014 |
Jan
(14) |
Feb
(8) |
Mar
(7) |
Apr
(13) |
May
(33) |
Jun
(13) |
Jul
(6) |
Aug
(5) |
Sep
(5) |
Oct
(34) |
Nov
(7) |
Dec
|
2015 |
Jan
(1) |
Feb
(6) |
Mar
(17) |
Apr
(12) |
May
(10) |
Jun
(18) |
Jul
(31) |
Aug
(9) |
Sep
(3) |
Oct
(6) |
Nov
(19) |
Dec
(1) |
2016 |
Jan
(18) |
Feb
(4) |
Mar
(13) |
Apr
(19) |
May
|
Jun
(17) |
Jul
(7) |
Aug
|
Sep
(3) |
Oct
(6) |
Nov
(3) |
Dec
|
2017 |
Jan
(5) |
Feb
(17) |
Mar
(4) |
Apr
(8) |
May
(3) |
Jun
|
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(5) |
Nov
(6) |
Dec
(4) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
(1) |
2019 |
Jan
|
Feb
|
Mar
(4) |
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
(2) |
Sep
(7) |
Oct
|
Nov
|
Dec
|
2020 |
Jan
(13) |
Feb
(17) |
Mar
(8) |
Apr
(11) |
May
(15) |
Jun
(11) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2021 |
Jan
(9) |
Feb
(26) |
Mar
(17) |
Apr
|
May
(7) |
Jun
(18) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(10) |
2022 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(2) |
Sep
(3) |
Oct
(2) |
Nov
(10) |
Dec
(1) |
2023 |
Jan
(10) |
Feb
|
Mar
(7) |
Apr
(8) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(8) |
Oct
(11) |
Nov
(8) |
Dec
(5) |
2024 |
Jan
(7) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2025 |
Jan
(4) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Winona S. <wsa...@gm...> - 2023-05-01 17:33:15
|
Hi All, I'm wondering if someone can help me with a convoluted XPath I am trying to write. The goal is to restrict the output of an itemset if the item referred to matches certain conditions stored in a different instance. This is what I am currently attempting: <xf:itemset ref="instance('i-schemaConstraints')/*[local-name() = local-name($currentNode)][1]/*:childElements[1]/*:element[count($currentNode/child::*[local-name() = @ident]) < @maxOccurs]"> <xf:label ref="@ident"/> <xf:value ref="@ident"/> </xf:itemset> The problem is I think I lose the context for the @ident attribute. I'm attaching a very simple example form that illustrates the problem. I am using XSLTForms version 1.7 Thanks for your help, -Winona |
From: Winona S. <wsa...@gm...> - 2023-04-23 11:42:40
|
Thanks Alain, I will see if I can figure it out. -Winona On Thu, Apr 20, 2023 at 11:53 AM Alain Couthures < ala...@ag...> wrote: > Hi Winona, > > Because the HTTP request is processed with XMLHttpRequest, the Javascript > part of XSLTForms is looking at the response for a possible processing > instruction and an XSLT stylesheet to be applied. > > I always use the browser debugger to precisely look at responses and, > eventually, to set a breakpoint. > > In this case, it would start with one at "resp = > XsltForms_browser.transformText(resp, xslhref, false);". > > Can you try this? > > --Alain > > Le 19/04/2023 01:28 CEST, Winona Salesky <wsa...@gm...> a écrit : > > > Hi All, > I am building a preview HTML page for my form by POSTing my data to an > xquery, which runs the XML through an XSLT which outputs in a new window > using the following submit: > > <xf:submission id="s-view-html" ref="instance('i-rec')" show="new" replace > ="all" instance="i-submission" method="post" action= > "services/submit.xql?type=previewHTML"/> > > > This works almost as expected, except, my HTML comes back slightly > mangled. By that I mean, some divs are nested in other sibling divs. (I can > provide the screen shots if needed.) This XSLT is used by my main website > to output HTML, so I have something to compare it to, and the version run > through the form is coming out incorrectly. I assume this has something to > do with the output being run through the XSLTforms processor, preprocessing > my returned HTML. Is there any way I can turn that off just for this view, > so it does not touch the returned HTML file? > Thanks for the help, > -Winona > _______________________________________________ Xsltforms-support mailing > list Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > > |
From: Alain C. <ala...@ag...> - 2023-04-20 16:06:49
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> Because the HTTP request is processed with XMLHttpRequest, the Javascript part of XSLTForms is looking at the response for a possible processing instruction and an XSLT stylesheet to be applied. </div> <div class="default-style"> </div> <div class="default-style"> I always use the browser debugger to precisely look at responses and, eventually, to set a breakpoint. </div> <div class="default-style"> </div> <div class="default-style"> In this case, it would start with one at "resp = XsltForms_browser.transformText(resp, xslhref, false);". </div> <div class="default-style"> </div> <div class="default-style"> Can you try this? </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 19/04/2023 01:28 CEST, Winona Salesky <wsa...@gm...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Hi All, <div> I am building a preview HTML page for my form by POSTing my data to an xquery, which runs the XML through an XSLT which outputs in a new window using the following submit: </div> <div> <p style="margin: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-feature-settings: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Helvetica; color: #993300;"><span style="color: #000096;"><xf:submission</span><span style="color: #f5844c;"> id</span><span style="color: #ff8040;">=</span>"s-view-html"<span style="color: #f5844c;"> ref</span><span style="color: #ff8040;">=</span>"instance('i-rec')"<span style="color: #f5844c;"> show</span><span style="color: #ff8040;">=</span>"new"<span style="color: #f5844c;"> replace</span><span style="color: #ff8040;">=</span>"all"<span style="color: #f5844c;"> instance</span><span style="color: #ff8040;">=</span>"i-submission"<span style="color: #f5844c;"> method</span><span style="color: #ff8040;">=</span>"post"<span style="color: #f5844c;"> action</span><span style="color: #ff8040;">=</span>"services/submit.xql?type=previewHTML"<span style="color: #000096;">/></span></p> <p style="margin: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-feature-settings: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Helvetica; color: #993300;"><span style="color: #000096;"> </span></p> This works almost as expected, except, my HTML comes back slightly mangled. By that I mean, some divs are nested in other sibling divs. (I can provide the screen shots if needed.) This XSLT is used by my main website to output HTML, so I have something to compare it to, and the version run through the form is coming out incorrectly. I assume this has something to do with the output being run through the XSLTforms processor, preprocessing my returned HTML. Is there any way I can turn that off just for this view, so it does not touch the returned HTML file? </div> <div> Thanks for the help, </div> <div> -Winona </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Winona S. <wsa...@gm...> - 2023-04-18 23:28:58
|
Hi All, I am building a preview HTML page for my form by POSTing my data to an xquery, which runs the XML through an XSLT which outputs in a new window using the following submit: <xf:submission id="s-view-html" ref="instance('i-rec')" show="new" replace= "all" instance="i-submission" method="post" action= "services/submit.xql?type=previewHTML"/> This works almost as expected, except, my HTML comes back slightly mangled. By that I mean, some divs are nested in other sibling divs. (I can provide the screen shots if needed.) This XSLT is used by my main website to output HTML, so I have something to compare it to, and the version run through the form is coming out incorrectly. I assume this has something to do with the output being run through the XSLTforms processor, preprocessing my returned HTML. Is there any way I can turn that off just for this view, so it does not touch the returned HTML file? Thanks for the help, -Winona |
From: Winona S. <wsa...@gm...> - 2023-04-04 17:07:04
|
Opps! That is a transcription error (my fault!), it is spelled correctly in the form. The form works in XSLTForms version 1.3, I installed 1.7 to test and this error popped up. I will put together a simple version of the form for testing. -Winona On Tue, Apr 4, 2023 at 11:43 AM Josselin Morvan <mor...@gm...> wrote: > Hi Winona, > > Maybe a typo with the first instance name (porject for project ?) : instance('i-porjectSpecificData') > => instance('i-projectSpecificData’) ? > > Could you share a sample file if it still doesn’t work? > > Best, > Josselin > > > Le 4 avr. 2023 à 15:52, Winona Salesky <wsa...@gm...> a écrit : > > Hi All, > I just got around to testing version 1.7. My forms which were working in > version 1.3 are now throwing the following error. Any ideas what is going > on? > Thanks! > -Winona > > ERROR: > XSLTForms Exception > > Error parsing the following XPath expression > instance('i-porjectSpecificData')//*:option[@name= > instance('i-projectSpecificDataSelected')//*:selected]/descendant::*:editionStmt > > Unexpected identifier 'syntax' > _______________________________________________ > Xsltforms-support mailing list > Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > > > |
From: Alain C. <ala...@ag...> - 2023-04-04 16:06:57
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> Since version 1.5, there is a new XPath parser written in Javascript. </div> <div class="default-style"> </div> <div class="default-style"> There is a bug in it when there is a wildcard for prefix between an axis and a local name (in this error: "descendant::*:editionStmt"). </div> <div class="default-style"> </div> <div class="default-style"> As a workaround, if you replace "/descendant::* with "//", such expressions should be parsed correctly. </div> <div class="default-style"> </div> <div class="default-style"> I already have a fix for this bug which will be integrated in the next release. </div> <div class="default-style"> </div> <div class="default-style"> Please also find how to patch yourself the "xsltforms.js" file within the "Fleur.XPathEvaluator._getName" function: </div> <div class="default-style"> ... </div> <div class="default-style"> Fleur.XPathEvaluator._getName = function(s) { <br> var i = 0; <br> var o = s.charAt(0); <br> var prev = ""; <br> while (o !== "" && "_.-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz:*{".indexOf(o) !== -1) { <br><strong> if (o === "*") {</strong> <br><strong> if (s.charAt(i + 1) !== ":") {</strong> <br><strong> if (i > 0 && (s.charAt(i - 1) === ":" || s.charAt(i - 1) === "}")) {</strong> <br><strong> i++;</strong> <br><strong> break;</strong> <br><strong> } else {</strong> <br><strong> if (i === 0) {</strong> <br><strong> i++;</strong> <br><strong> }</strong> <br><strong> break;</strong> <br><strong> }</strong> <br><strong> }</strong> <br><strong> }</strong> </div> <div class="default-style"> ... </div> <div class="default-style"> <div class="default-style"> </div> <div class="default-style"> Thank you for your feedback! </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> </div> <blockquote type="cite"> <div> Le 04/04/2023 15:52 CEST, Winona Salesky <wsa...@gm...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Hi All, <div> I just got around to testing version 1.7. My forms which were working in version 1.3 are now throwing the following error. Any ideas what is going on? </div> <div> Thanks! <br> <div> -Winona </div> <div> </div> <div> ERROR: </div> <div> <span style="font-family: monospace;">XSLTForms Exception<br><br>Error parsing the following XPath expression<br>instance('i-porjectSpecificData')//*:option[@name= instance('i-projectSpecificDataSelected')//*:selected]/descendant::*:editionStmt<br><br>Unexpected identifier 'syntax'</span> </div> </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Josselin M. <mor...@gm...> - 2023-04-04 15:43:33
|
Hi Winona, Maybe a typo with the first instance name (porject for project ?) : instance('i-porjectSpecificData') => instance('i-projectSpecificData’) ? Could you share a sample file if it still doesn’t work? Best, Josselin > Le 4 avr. 2023 à 15:52, Winona Salesky <wsa...@gm...> a écrit : > > Hi All, > I just got around to testing version 1.7. My forms which were working in version 1.3 are now throwing the following error. Any ideas what is going on? > Thanks! > -Winona > > ERROR: > XSLTForms Exception > > Error parsing the following XPath expression > instance('i-porjectSpecificData')//*:option[@name= instance('i-projectSpecificDataSelected')//*:selected]/descendant::*:editionStmt > > Unexpected identifier 'syntax' > _______________________________________________ > Xsltforms-support mailing list > Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support |
From: Winona S. <wsa...@gm...> - 2023-04-04 13:52:54
|
Hi All, I just got around to testing version 1.7. My forms which were working in version 1.3 are now throwing the following error. Any ideas what is going on? Thanks! -Winona ERROR: XSLTForms Exception Error parsing the following XPath expression instance('i-porjectSpecificData')//*:option[@name= instance('i-projectSpecificDataSelected')//*:selected]/descendant::*:editionStmt Unexpected identifier 'syntax' |
From: Alain C. <ala...@ag...> - 2023-04-01 14:10:05
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> XForms 2.0 Specifications also add the retain action: <a href="https://www.w3.org/community/xformsusers/wiki/XForms_2.0#The_retain_Element">https://www.w3.org/community/xformsusers/wiki/XForms_2.0#The_retain_Element</a> </div> <div class="default-style"> <div class="default-style"> </div> <div class="default-style"> The retain action will not apply to nodes but instances. The specifications do not limit the number of retains to be possibly restored with the reset action. </div> <div class="default-style"> </div> </div> <div class="default-style"> It is not implemented yet in XSLTForms but could easily be added in the new release (there could be a patch for previous releases, too). </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 31/03/2023 18:47 CEST, Alain Couthures <ala...@ag...> a écrit : </div> <div> </div> <div> </div> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> For an undo facility, you should store the corresponding instance, or a part of it, within another instance, possibly in successive states. </div> <div class="default-style"> </div> <div class="default-style"> It should be done with the insert action before deleting the element, as a "commit", and a replace action when the undo button is activated, as a "rollback". </div> <div class="default-style"> </div> <div class="default-style"> What do you think? </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 30/03/2023 15:23 CEST, Winona Salesky <wsa...@gm...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Has anyone implemented an 'undo' button that restores a deleted element? My client has requested this, but I'm not sure it can actually be done. <div> </div> <div> Thanks, </div> <div> -Winona </div> <div> </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </blockquote> </body> </html> |
From: Winona S. <wsa...@gm...> - 2023-03-31 17:23:28
|
Hi Alain, That is an interesting idea. I will test it out. Thanks! -Winona On Fri, Mar 31, 2023 at 12:47 PM Alain Couthures < ala...@ag...> wrote: > Hi Winona, > > For an undo facility, you should store the corresponding instance, or a > part of it, within another instance, possibly in successive states. > > It should be done with the insert action before deleting the element, as a > "commit", and a replace action when the undo button is activated, as a > "rollback". > > What do you think? > > --Alain > > Le 30/03/2023 15:23 CEST, Winona Salesky <wsa...@gm...> a écrit : > > > Has anyone implemented an 'undo' button that restores a deleted element? > My client has requested this, but I'm not sure it can actually be done. > > Thanks, > -Winona > > _______________________________________________ Xsltforms-support mailing > list Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > > |
From: Alain C. <ala...@ag...> - 2023-03-31 16:47:16
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> For an undo facility, you should store the corresponding instance, or a part of it, within another instance, possibly in successive states. </div> <div class="default-style"> </div> <div class="default-style"> It should be done with the insert action before deleting the element, as a "commit", and a replace action when the undo button is activated, as a "rollback". </div> <div class="default-style"> </div> <div class="default-style"> What do you think? </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 30/03/2023 15:23 CEST, Winona Salesky <wsa...@gm...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Has anyone implemented an 'undo' button that restores a deleted element? My client has requested this, but I'm not sure it can actually be done. <div> </div> <div> Thanks, </div> <div> -Winona </div> <div> </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Winona S. <wsa...@gm...> - 2023-03-30 13:24:02
|
Has anyone implemented an 'undo' button that restores a deleted element? My client has requested this, but I'm not sure it can actually be done. Thanks, -Winona |
From: Steven P. <ste...@cw...> - 2023-03-10 11:06:37
|
Reminder: check the options at https://cwi.nl/~steven/forms/tests/open-select.xhtml Best wishes, Steven On Thursday 09 March 2023 14:24:17 (+01:00), Javier Diaz Estebaranz(UST, ES) via Xsltforms-support wrote: Hello Alain, thank you for the information, at the moment we will implement the open search with the wikipedia search example, and then upgrade to the last version. Best Regards, Javier El 9/3/23 a las 12:31, Alain Couthures escribió: EXTERNAL EMAIL - Do not click any links or open any attachments unless you trust the sender and know the content is safe. Hello Javier, Open selection is still not implemented in XSLTForms latest release. Version 1.7 comes with significant loading time improvement when XForms elements to be transformed with XSLT are "manually" replaced with corresponding HTML custom elements. Kind regards, --Alain Le 08/03/2023 14:58 CET, Javier Diaz Estebaranz(UST,ES) <jav...@us...> a écrit : Hi to all, sorry to reply to this old thread. We need to implement a 'Open selection' form with xsltforms, and we are using an old version. I want to know if it is available in last XSLTForms version (1.7 I think), and in that case we could upgrade to that version to use that funcionality. If not, it doesn't matter, we would implement it like the wikipedia search example. Best Regards, Javier El 22/9/19 a las 19:49, Alain Couthures escribió: Hello Tim, Yes, open selection is not yet supported and using HTML5 autocompletion has already been tested as a workaround for XSLTForms. Version 1.5 will reconsider how XForms controls are converted into HTML5 elements and Javascript should do this instead of XSLT. It will be a good opportunity to continue implementing open selection. Regards, --Alain Le 06/09/2019 à 03:47, Tim Thompson a écrit : Hello, Alain, I see that HTML5 datalist with "selection='open'" has been (partially?) implemented in XSLTForms (I am using version 1.4). Is this a working feature, or is it still being tested? Based on my initial tests, I assume it hasn't been fully implemented yet, but I thought I would ask :) Best regards, Tim -- Tim A. Thompson Discovery Metadata Librarian Yale University Library On Sat, Mar 30, 2019 at 6:41 AM Alain Couthures <ala...@ag...> wrote: Hi Emmanuel, Actually, HTML5 datalist does really sound like XForms open select, because the associated input allows to enter a new value! I will experiment this soon in XSLTForms. Thank you for pointing at this! --Alain Le 22/03/2019 à 05:52, Chateau Dutier Emmanuel a écrit : Thanks a lot for your kind answer. Do you ask if I’m in a hurry considering the fact I’would have to wait for HTML6 ? ;) I’ve seen the WikipediaSearch for autocompletion, didn’t get all the details. By the way, what would be the recommend way to deal with autocompletion in XForms since HTML5 introduced it ? Best regards, Emmanuel Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 Tél. +1 514 343-6026 emm...@um... | @emchateau Le 18 mars 2019 à 04:29, Alain Couthures <ala...@ag...> a écrit : Hello Emmanuel, Unfortunately, HTML5 is not providing a native solution for some open selection ready to be used by XSLTForms. It is still possible to add this to XSLTForms with multiple HTML elements and CSS classes. Did you already have a look at this example: http://www.agencexml.com/xsltforms/wikipediasearch.xml? As you can see, I am not a CSS expert... Are you in a hurry for open selection? Thanks! --Alain Le 15/03/2019 à 19:29, Chateau Dutier Emmanuel a écrit : Hi, We are currently working avec XForms and we really enjoy it ! Thanks a lot. We couldn’t manage to use the open selection. Is it that we didn’t declare it properly or is it not supported ? In 2010, you answered that it wasn’t supported yet https://sourceforge.net/p/xsltforms/mailman/message/24465876/ Best regards, Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support |
From: Javier D. Estebaranz(UST,ES) <Jav...@us...> - 2023-03-09 13:40:21
|
Hello Alain, thank you for the information, at the moment we will implement the open search with the wikipedia search example, and then upgrade to the last version. Best Regards, Javier El 9/3/23 a las 12:31, Alain Couthures escribió: EXTERNAL EMAIL - Do not click any links or open any attachments unless you trust the sender and know the content is safe. Hello Javier, Open selection is still not implemented in XSLTForms latest release. Version 1.7 comes with significant loading time improvement when XForms elements to be transformed with XSLT are "manually" replaced with corresponding HTML custom elements. Kind regards, --Alain Le 08/03/2023 14:58 CET, Javier Diaz Estebaranz(UST,ES) <jav...@us...><mailto:jav...@us...> a écrit : Hi to all, sorry to reply to this old thread. We need to implement a 'Open selection' form with xsltforms, and we are using an old version. I want to know if it is available in last XSLTForms version (1.7 I think), and in that case we could upgrade to that version to use that funcionality. If not, it doesn't matter, we would implement it like the wikipedia search example. Best Regards, Javier El 22/9/19 a las 19:49, Alain Couthures escribió: Hello Tim, Yes, open selection is not yet supported and using HTML5 autocompletion has already been tested as a workaround for XSLTForms. Version 1.5 will reconsider how XForms controls are converted into HTML5 elements and Javascript should do this instead of XSLT. It will be a good opportunity to continue implementing open selection. Regards, --Alain Le 06/09/2019 à 03:47, Tim Thompson a écrit : Hello, Alain, I see that HTML5 datalist with "selection='open'" has been (partially?) implemented in XSLTForms (I am using version 1.4). Is this a working feature, or is it still being tested? Based on my initial tests, I assume it hasn't been fully implemented yet, but I thought I would ask :) Best regards, Tim -- Tim A. Thompson Discovery Metadata Librarian Yale University Library On Sat, Mar 30, 2019 at 6:41 AM Alain Couthures <ala...@ag...<mailto:ala...@ag...>> wrote: Hi Emmanuel, Actually, HTML5 datalist does really sound like XForms open select, because the associated input allows to enter a new value! I will experiment this soon in XSLTForms. Thank you for pointing at this! --Alain Le 22/03/2019 à 05:52, Chateau Dutier Emmanuel a écrit : Thanks a lot for your kind answer. Do you ask if I’m in a hurry considering the fact I’would have to wait for HTML6 ? ;) I’ve seen the WikipediaSearch for autocompletion, didn’t get all the details. By the way, what would be the recommend way to deal with autocompletion in XForms since HTML5 introduced it ? Best regards, Emmanuel Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 Tél. +1 514 343-6026 emm...@um...<mailto:emm...@um...> | @emchateau Le 18 mars 2019 à 04:29, Alain Couthures <ala...@ag...<mailto:ala...@ag...>> a écrit : Hello Emmanuel, Unfortunately, HTML5 is not providing a native solution for some open selection ready to be used by XSLTForms. It is still possible to add this to XSLTForms with multiple HTML elements and CSS classes. Did you already have a look at this example: http://www.agencexml.com/xsltforms/wikipediasearch.xml? As you can see, I am not a CSS expert... Are you in a hurry for open selection? Thanks! --Alain Le 15/03/2019 à 19:29, Chateau Dutier Emmanuel a écrit : Hi, We are currently working avec XForms and we really enjoy it ! Thanks a lot. We couldn’t manage to use the open selection. Is it that we didn’t declare it properly or is it not supported ? In 2010, you answered that it wasn’t supported yet https://sourceforge.net/p/xsltforms/mailman/message/24465876/ Best regards, Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support |
From: Alain C. <ala...@ag...> - 2023-03-09 11:45:03
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Hello Javier, </div> <div class="default-style"> </div> <div class="default-style"> Open selection is still not implemented in XSLTForms latest release. </div> <div class="default-style"> </div> <div class="default-style"> Version 1.7 comes with significant loading time improvement when XForms elements to be transformed with XSLT are "manually" replaced with corresponding HTML custom elements. </div> <div class="default-style"> </div> <div class="default-style"> Kind regards, </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 08/03/2023 14:58 CET, Javier Diaz Estebaranz(UST,ES) <jav...@us...> a écrit : </div> <div> </div> <div> </div> Hi to all, <br> <br>sorry to reply to this old thread. <br> <br>We need to implement a 'Open selection' form with xsltforms, and we are using an old version. I want to know if it is available in last XSLTForms version (1.7 I think), and in that case we could upgrade to that version to use that funcionality. <br> <br>If not, it doesn't matter, we would implement it like the wikipedia search example. <br> <br>Best Regards, <br>Javier <br> <br> <div class="moz-cite-prefix"> El 22/9/19 a las 19:49, Alain Couthures escribió: </div> <blockquote type="cite"> <div class="moz-cite-prefix"> Hello Tim, </div> <div class="moz-cite-prefix"> </div> <div class="moz-cite-prefix"> Yes, open selection is not yet supported and using HTML5 autocompletion has already been tested as a workaround for XSLTForms. </div> <div class="moz-cite-prefix"> </div> <div class="moz-cite-prefix"> Version 1.5 will reconsider how XForms controls are converted into HTML5 elements and Javascript should do this instead of XSLT. It will be a good opportunity to continue implementing open selection. </div> <div class="moz-cite-prefix"> </div> <div class="moz-cite-prefix"> Regards, </div> <div class="moz-cite-prefix"> </div> <div class="moz-cite-prefix"> --Alain </div> <div class="moz-cite-prefix"> </div> <div class="moz-cite-prefix"> Le 06/09/2019 à 03:47, Tim Thompson a écrit : </div> <blockquote type="cite"> <div dir="ltr"> <div> Hello, Alain, </div> <div> </div> <div> I see that HTML5 datalist with "selection='open'" has been (partially?) implemented in XSLTForms (I am using version 1.4). Is this a working feature, or is it still being tested? Based on my initial tests, I assume it hasn't been fully implemented yet, but I thought I would ask :) </div> <div> </div> <div> Best regards, </div> <div> Tim </div> <br clear="all"> <div> <div class="gmail_signature" dir="ltr" data-smartmail="gmail_signature"> <div dir="ltr"> -- <br>Tim A. Thompson <br>Discovery Metadata Librarian <br>Yale University Library <br> <br> </div> </div> </div> </div> <br> <div class="gmail_quote"> <div class="gmail_attr" dir="ltr"> On Sat, Mar 30, 2019 at 6:41 AM Alain Couthures <<a class="moz-txt-link-freetext" href="mailto:ala...@ag...">ala...@ag...</a>> wrote: </div> <blockquote> <div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Hi Emmanuel, </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Actually, HTML5 datalist does really sound like XForms open select, because the associated input allows to enter a new value! </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> I will experiment this soon in XSLTForms. </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Thank you for pointing at this! </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> --Alain </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Le 22/03/2019 à 05:52, Chateau Dutier Emmanuel a écrit : </div> <blockquote type="cite"> Thanks a lot for your kind answer. <div> </div> <div> Do you ask if I’m in a hurry considering the fact I’would have to wait for HTML6 ? ;) </div> <div> </div> <div> I’ve seen the WikipediaSearch for autocompletion, didn’t get all the details. By the way, what would be the recommend way to deal with autocompletion in XForms since HTML5 introduced it ? </div> <div> </div> <div> Best regards, </div> <div> Emmanuel </div> <div> <br> <div> <div dir="auto" style="color: #000000; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> <strong><br class="gmail-m_-5291679178744701465Apple-interchange-newline">Emmanuel Château-Dutier</strong> <br>Professeur adjoint </div> <div dir="auto" style="color: #000000; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> </div> <div dir="auto" style="color: #000000; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> <div> <div> <span style="color: #00619e;"><strong style="font-size: 11px;">Faculté des arts et sciences,</strong></span> </div> <div> <span style="color: #00619e;"><span style="font-size: 11px;">Département d’histoire de l’art et d’études cinématographiques<br></span><br><strong>Université de Montréal</strong><br><span style="font-size: 11px;">Pavillon Lionel-Groulx, Bureau C-2067</span></span> </div> <div> <span style="font-size: 11px; color: #00619e;">3200, av. Jean-Brillant, Montréal QC</span> </div> <div> <span style="font-size: 11px; color: #00619e;">C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7</span> </div> <div> <span style="color: #00619e;"> </span> </div> <div> <span style="color: #00619e;">Tél. +1 514 343-6026</span><span style="color: #00619e;"><br><a class="moz-txt-link-freetext" href="mailto:emm...@um..." target="_blank" rel="noopener">emm...@um...</a> | @emchateau</span> </div> </div> </div> </div> <div> <br> <blockquote type="cite"> <div> Le 18 mars 2019 à 04:29, Alain Couthures <<a class="moz-txt-link-freetext" href="mailto:ala...@ag..." target="_blank" rel="noopener">ala...@ag...</a>> a écrit : </div> <br class="gmail-m_-5291679178744701465Apple-interchange-newline"> <div> <div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Hello Emmanuel, </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Unfortunately, HTML5 is not providing a native solution for some open selection ready to be used by XSLTForms. </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> It is still possible to add this to XSLTForms with multiple HTML elements and CSS classes. Did you already have a look at this example: <a class="moz-txt-link-freetext" href="http://www.agencexml.com/xsltforms/wikipediasearch.xml" target="_blank" rel="noopener"> http://www.agencexml.com/xsltforms/wikipediasearch.xml</a>? As you can see, I am not a CSS expert... </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Are you in a hurry for open selection? </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Thanks! </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> --Alain </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> </div> <div class="gmail-m_-5291679178744701465moz-cite-prefix"> Le 15/03/2019 à 19:29, Chateau Dutier Emmanuel a écrit : </div> <blockquote type="cite"> <div> Hi, </div> <div> </div> <div> We are currently working avec XForms and we really enjoy it ! Thanks a lot. </div> <div> </div> <div> We couldn’t manage to use the open selection. Is it that we didn’t declare it properly or is it not supported ? </div> <div> In 2010, you answered that it wasn’t supported yet <a class="moz-txt-link-freetext" href="https://sourceforge.net/p/xsltforms/mailman/message/24465876/" target="_blank" rel="noopener"> https://sourceforge.net/p/xsltforms/mailman/message/24465876/</a> </div> <div> </div> <div> Best regards, </div> <div> <br> <div> <div dir="auto" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> <strong><br class="gmail-m_-5291679178744701465Apple-interchange-newline">Emmanuel Château-Dutier</strong> <br>Professeur adjoint </div> <div dir="auto" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> </div> <div dir="auto" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;"> <div> <div> <span style="color: #00619e;"><strong style="font-size: 11px;">Faculté des arts et sciences,</strong></span> </div> <div> <span style="color: #00619e;"><span style="font-size: 11px;">Département d’histoire de l’art et d’études cinématographiques<br></span><br><strong>Université de Montréal</strong><br><span style="font-size: 11px;">Pavillon Lionel-Groulx, Bureau C-2067</span></span> </div> <div> <span style="font-size: 11px; color: #00619e;">3200, av. Jean-Brillant, Montréal QC</span> </div> <div> <span style="font-size: 11px; color: #00619e;">C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7</span> </div> <div> </div> </div> </div> </div> </div> <br> <br> <pre class="gmail-m_-5291679178744701465moz-quote-pre">_______________________________________________ Xsltforms-support mailing list <a class="gmail-m_-5291679178744701465moz-txt-link-abbreviated moz-txt-link-freetext" href="mailto:Xsl...@li..." target="_blank" rel="noopener">Xsl...@li...</a> <a class="gmail-m_-5291679178744701465moz-txt-link-freetext moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/xsltforms-support" target="_blank" rel="noopener">https://lists.sourceforge.net/lists/listinfo/xsltforms-support</a> </pre> </blockquote> <p> </p> </div> _______________________________________________ <br>Xsltforms-support mailing list <br><a class="moz-txt-link-freetext" href="mailto:Xsl...@li..." target="_blank" rel="noopener">Xsl...@li...</a> <br><a class="gmail-m_-5291679178744701465moz-txt-link-freetext moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/xsltforms-support" target="_blank" rel="noopener">https://lists.sourceforge.net/lists/listinfo/xsltforms-support</a> </div> </blockquote> </div> </div> </blockquote> <p> </p> </div> _______________________________________________ <br>Xsltforms-support mailing list <br><a class="moz-txt-link-freetext" href="mailto:Xsl...@li..." target="_blank" rel="noopener">Xsl...@li...</a> <br><a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/xsltforms-support" target="_blank" rel="noopener">https://lists.sourceforge.net/lists/listinfo/xsltforms-support</a> </blockquote> </div> </blockquote> <p> </p> <br> <br> <pre class="moz-quote-pre">_______________________________________________ Xsltforms-support mailing list <a class="moz-txt-link-abbreviated" href="mailto:Xsl...@li...">Xsl...@li...</a> <a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/xsltforms-support">https://lists.sourceforge.net/lists/listinfo/xsltforms-support</a> </pre> </blockquote> </blockquote> </body> </html> |
From: Javier D. Estebaranz(UST,ES) <Jav...@us...> - 2023-03-08 14:14:46
|
Hi to all, sorry to reply to this old thread. We need to implement a 'Open selection' form with xsltforms, and we are using an old version. I want to know if it is available in last XSLTForms version (1.7 I think), and in that case we could upgrade to that version to use that funcionality. If not, it doesn't matter, we would implement it like the wikipedia search example. Best Regards, Javier El 22/9/19 a las 19:49, Alain Couthures escribió: Hello Tim, Yes, open selection is not yet supported and using HTML5 autocompletion has already been tested as a workaround for XSLTForms. Version 1.5 will reconsider how XForms controls are converted into HTML5 elements and Javascript should do this instead of XSLT. It will be a good opportunity to continue implementing open selection. Regards, --Alain Le 06/09/2019 à 03:47, Tim Thompson a écrit : Hello, Alain, I see that HTML5 datalist with "selection='open'" has been (partially?) implemented in XSLTForms (I am using version 1.4). Is this a working feature, or is it still being tested? Based on my initial tests, I assume it hasn't been fully implemented yet, but I thought I would ask :) Best regards, Tim -- Tim A. Thompson Discovery Metadata Librarian Yale University Library On Sat, Mar 30, 2019 at 6:41 AM Alain Couthures <ala...@ag...<mailto:ala...@ag...>> wrote: Hi Emmanuel, Actually, HTML5 datalist does really sound like XForms open select, because the associated input allows to enter a new value! I will experiment this soon in XSLTForms. Thank you for pointing at this! --Alain Le 22/03/2019 à 05:52, Chateau Dutier Emmanuel a écrit : Thanks a lot for your kind answer. Do you ask if I’m in a hurry considering the fact I’would have to wait for HTML6 ? ;) I’ve seen the WikipediaSearch for autocompletion, didn’t get all the details. By the way, what would be the recommend way to deal with autocompletion in XForms since HTML5 introduced it ? Best regards, Emmanuel Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 Tél. +1 514 343-6026 emm...@um...<mailto:emm...@um...> | @emchateau Le 18 mars 2019 à 04:29, Alain Couthures <ala...@ag...<mailto:ala...@ag...>> a écrit : Hello Emmanuel, Unfortunately, HTML5 is not providing a native solution for some open selection ready to be used by XSLTForms. It is still possible to add this to XSLTForms with multiple HTML elements and CSS classes. Did you already have a look at this example: http://www.agencexml.com/xsltforms/wikipediasearch.xml? As you can see, I am not a CSS expert... Are you in a hurry for open selection? Thanks! --Alain Le 15/03/2019 à 19:29, Chateau Dutier Emmanuel a écrit : Hi, We are currently working avec XForms and we really enjoy it ! Thanks a lot. We couldn’t manage to use the open selection. Is it that we didn’t declare it properly or is it not supported ? In 2010, you answered that it wasn’t supported yet https://sourceforge.net/p/xsltforms/mailman/message/24465876/ Best regards, Emmanuel Château-Dutier Professeur adjoint Faculté des arts et sciences, Département d’histoire de l’art et d’études cinématographiques Université de Montréal Pavillon Lionel-Groulx, Bureau C-2067 3200, av. Jean-Brillant, Montréal QC C.P. 6128, succursale Centre-ville, Montréal QC H3C 3J7 _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support _______________________________________________ Xsltforms-support mailing list Xsl...@li...<mailto:Xsl...@li...> https://lists.sourceforge.net/lists/listinfo/xsltforms-support |
From: Robert K. <ro...@er...> - 2023-01-14 11:48:27
|
Shame on me. Tks a lot Alain. On Sat, Jan 14, 2023 at 11:17 AM Alain Couthures < ala...@ag...> wrote: > Hello Robert, > > The URI for the event namespace starts with "http://" not "https://". > > Please find attached a working test case > > --Alain > > Le 28/11/2022 17:23 CET, Robert Kirkpatrick <ro...@er...> a écrit : > > > Hello list, > > The basic test here-attached fails to trap the event and run the JScript. > Using v1.6 via chrome. > TIA for any help. > Robert. > _______________________________________________ Xsltforms-support mailing > list Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > > |
From: Alain C. <ala...@ag...> - 2023-01-14 10:30:29
|
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <div> Hello Robert, </div> <div class="default-style"> </div> <div class="default-style"> The URI for the event namespace starts with "http://" not "https://". </div> <div class="default-style"> </div> <div class="default-style"> Please find attached a working test case </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 28/11/2022 17:23 CET, Robert Kirkpatrick <ro...@er...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Hello list, <div> </div> <div> The basic test here-attached fails to trap the event and run the JScript. </div> <div> Using v1.6 via chrome. </div> <div> TIA for any help. </div> <div> Robert. </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Alain C. <ala...@ag...> - 2023-01-14 09:54:31
|
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> Mozilla Firefox does not handle namespaces correctly in its bugged XSLT processor. </div> <div class="default-style"> </div> <div class="default-style"> Adding such dummy attributes allows XSLTForms to detect namespaces correctly anyway... </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 13/01/2023 15:56 CET, Robert Kirkpatrick <ro...@er...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> <div> PS: I removed </div> @my:dummy="whydoesthiswork" <br> <div> and still work :) </div> <div> R. </div> </div> <br> <div class="gmail_quote"> <div class="gmail_attr" dir="ltr"> On Fri, Jan 13, 2023 at 3:16 PM Robert Kirkpatrick <<a href="mailto:ro...@er...">ro...@er...</a>> wrote: </div> <blockquote> <div dir="ltr"> Thanks a lot Habs, <div> Indeed your version works with me in v1.6 </div> <div> Very tricky namespace mess, to be investigated. </div> <div> Cheers, </div> <div> Robert. </div> </div> <br> <div class="gmail_quote"> <div class="gmail_attr" dir="ltr"> On Fri, Jan 13, 2023 at 1:16 PM Habs <<a href="mailto:ge...@us..." target="_blank" rel="noopener">ge...@us...</a>> wrote: </div> <blockquote> On Fri, 13 Jan 2023, Robert Kirkpatrick wrote: <br> <br>> Hello, <br>> <br>> The here-attached basic example is not working: setvalue not triggered. <br>> <br>> It is now clear to me that xf event handling is disabled in my environment <br>> (Chrome / W10). <br>> <br>> Best regards, <br>> Robert. <br>> <br> <br>It took me ages to get to grips with namespaces and I ended up with this <br>'approach' (see attached) which works for my use cases, but I use [old] <br>xhtml forms. Whether the OP's example is something to do with namespaces, <br>or the document format I've no idea. <br> <br>The attached works on my setup. It is the OP example altered to fit the <br>format I use. <br> <br>Cheers <br>Habs <br> <br> <br> <br>>> <br>> <br> <br>--- Sent using Alpine/Pine, probably the best MUA --- <br>_______________________________________________ <br>Xsltforms-support mailing list <br><a href="mailto:Xsl...@li..." target="_blank" rel="noopener">Xsl...@li...</a> <br><a href="https://lists.sourceforge.net/lists/listinfo/xsltforms-support" target="_blank" rel="noopener">https://lists.sourceforge.net/lists/listinfo/xsltforms-support</a> </blockquote> </div> </blockquote> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Alain C. <ala...@ag...> - 2023-01-14 09:43:13
|
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <div> Hi Winona, </div> <div class="default-style"> </div> <div class="default-style"> XPath axes usage is a possibility for such a complex test case. </div> <div class="default-style"> </div> <div class="default-style"> First, the self:: axis can be used to reduce the size of XPath expressions testing lists of node names. </div> <div class="default-style"> </div> <div class="default-style"> XForms, as XSLT, is always providing a context node for XPath evaluation. Using the parent:: axis is interesting for smaller and more general expressions. </div> <div class="default-style"> </div> <div class="default-style"> In this test case, the preceding-sibling:: and following-sibling:: axes will allow to calculate the position of an item within its own editing group so it can be moved up or down. </div> <div class="default-style"> </div> <div class="default-style"> It is also interesting to be able to disable out-of-bounds moves for the first and the last items (XForms 2.0 does not yet specify that @readonly can also be added to an input control...). </div> <div class="default-style"> </div> <div class="default-style"> Please find the proposed fixed form attached. </div> <div class="default-style"> </div> <div class="default-style"> Using variables would also simplify again the form but they will be more widely supported in XSLTForms in the next release. Which one are you using now? </div> <div class="default-style"> </div> <div class="default-style"> Thank you for your feedback! </div> <div class="default-style"> </div> <div class="default-style"> --Alain </div> <blockquote type="cite"> <div> Le 10/01/2023 15:29 CET, Winona Salesky <wsa...@gm...> a écrit : </div> <div> </div> <div> </div> <div dir="ltr"> Hi All, <div> I have a form that dynamically groups elements into different repeat groups (client wants to group the elements in this way for UI purposes). The two groups of elements are all children of the same parent element, which can also repeat. I want to be able to move elements up and down within the repeat groups, this works for the first repeat group, but not for second group. </div> <div> </div> <div> This form is part of a larger more complex form, I have tried to simplify it is much as possible. </div> <div> If anyone has any ideas how this might work, or if it is even possible that would be so helpful, I have run out of ideas. </div> <div> </div> <div> Thanks so much! </div> <div> -Winona </div> </div> _______________________________________________ Xsltforms-support mailing list Xsl...@li... https://lists.sourceforge.net/lists/listinfo/xsltforms-support </blockquote> </body> </html> |
From: Robert K. <ro...@er...> - 2023-01-13 14:57:10
|
PS: I removed @my:dummy="whydoesthiswork" and still work :) R. On Fri, Jan 13, 2023 at 3:16 PM Robert Kirkpatrick <ro...@er...> wrote: > Thanks a lot Habs, > Indeed your version works with me in v1.6 > Very tricky namespace mess, to be investigated. > Cheers, > Robert. > > On Fri, Jan 13, 2023 at 1:16 PM Habs <ge...@us...> wrote: > >> On Fri, 13 Jan 2023, Robert Kirkpatrick wrote: >> >> > Hello, >> > >> > The here-attached basic example is not working: setvalue not triggered. >> > >> > It is now clear to me that xf event handling is disabled in my >> environment >> > (Chrome / W10). >> > >> > Best regards, >> > Robert. >> > >> >> It took me ages to get to grips with namespaces and I ended up with this >> 'approach' (see attached) which works for my use cases, but I use [old] >> xhtml forms. Whether the OP's example is something to do with >> namespaces, >> or the document format I've no idea. >> >> The attached works on my setup. It is the OP example altered to fit the >> format I use. >> >> Cheers >> Habs >> >> >> >> >> >> > >> >> --- Sent using Alpine/Pine, probably the best MUA --- >> _______________________________________________ >> Xsltforms-support mailing list >> Xsl...@li... >> https://lists.sourceforge.net/lists/listinfo/xsltforms-support >> > |
From: Robert K. <ro...@er...> - 2023-01-13 14:16:33
|
Thanks a lot Habs, Indeed your version works with me in v1.6 Very tricky namespace mess, to be investigated. Cheers, Robert. On Fri, Jan 13, 2023 at 1:16 PM Habs <ge...@us...> wrote: > On Fri, 13 Jan 2023, Robert Kirkpatrick wrote: > > > Hello, > > > > The here-attached basic example is not working: setvalue not triggered. > > > > It is now clear to me that xf event handling is disabled in my > environment > > (Chrome / W10). > > > > Best regards, > > Robert. > > > > It took me ages to get to grips with namespaces and I ended up with this > 'approach' (see attached) which works for my use cases, but I use [old] > xhtml forms. Whether the OP's example is something to do with namespaces, > or the document format I've no idea. > > The attached works on my setup. It is the OP example altered to fit the > format I use. > > Cheers > Habs > > > > >> > > > > --- Sent using Alpine/Pine, probably the best MUA --- > _______________________________________________ > Xsltforms-support mailing list > Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > |
From: Habs <ge...@us...> - 2023-01-13 12:40:31
|
On Fri, 13 Jan 2023, Robert Kirkpatrick wrote: > Hello, > > The here-attached basic example is not working: setvalue not triggered. > > It is now clear to me that xf event handling is disabled in my environment > (Chrome / W10). > > Best regards, > Robert. > It took me ages to get to grips with namespaces and I ended up with this 'approach' (see attached) which works for my use cases, but I use [old] xhtml forms. Whether the OP's example is something to do with namespaces, or the document format I've no idea. The attached works on my setup. It is the OP example altered to fit the format I use. Cheers Habs >> > --- Sent using Alpine/Pine, probably the best MUA --- |
From: Robert K. <ro...@er...> - 2023-01-13 09:38:35
|
Hello, The here-attached basic example is not working: setvalue not triggered. It is now clear to me that xf event handling is disabled in my environment (Chrome / W10). Best regards, Robert. > |
From: Winona S. <wsa...@gm...> - 2023-01-10 14:30:18
|
Hi All, I have a form that dynamically groups elements into different repeat groups (client wants to group the elements in this way for UI purposes). The two groups of elements are all children of the same parent element, which can also repeat. I want to be able to move elements up and down within the repeat groups, this works for the first repeat group, but not for second group. This form is part of a larger more complex form, I have tried to simplify it is much as possible. If anyone has any ideas how this might work, or if it is even possible that would be so helpful, I have run out of ideas. Thanks so much! -Winona |