Hello Bibhu,You would have got all the countries returned in your submit data because the data connection contained all the countries in my sample. If you only wanted the values selected then there are a number of ways you can do this. Possibly the easiest for a relatively static set of data like ...
Hi Bibhu,You could change the sample to work in this way by replacing the line populating the list in the Search text fields change event fromlist = xfa.resolveNodes('$record.country.[Lower(Left(name,' + (xfa.event.newText.length) + ')) == "' + xfa.event.newText.toLowerCase() + '"]');tolist = xfa.re...
Hi Bibhu,I am not seeing this behavior, if I type the space after "New" then the two countries stay in the list. I have tested this code in versions of Reader 7.0.9 to X so I'm not sure what to suggest. What version are you using.Bruce
Hi Bibhu,I'm not sure I understand, there are a number of countries with spaces in their names New Zealand and New Caledonia for example. They seem to work as I would expect and as I think you are discribing.Bruce
Hi Bibhu,It sounds like you want one of Adobe's Server side products, maybe LiveCycle Forms, something to take the form template and some xml and render a PDF form. I don't know much about server side processing as I have never worked with any LiveCycle product except Designer. I think the server p...
Hi Bibhu,There's some code in the change event of the Search textbox that each time a character is entered (or changed) just matches all the values in the its list and populates a listbox with the matching values.I can't help with you othe question, I've used a webservice for this sort of thing but ...
I see what you mean, very annoying. I can only guess you could try something really hacky like;Replace(Replace(Replace(Replace(WordNum(x,2), "Dollars ",""), "Dollar ",""), "Cents", ""), "Cent", "")SorryBruce