Expand my Community achievements bar.

_Bruce_Robertson
_Bruce_Robertson
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi,Getting an XML response would mean changing url bit from    https://maps.googleapis.com/maps/api/place/autocomplete/jsonto    https://maps.googleapis.com/maps/api/place/autocomplete/xmlAnd then using the usual resolveNode methods; if (googlePlacesResult !== "") { // probably not a trusted documen...

    Type

    Questions

    Views

    5.4K

    Likes

    0

    Replies

    0
  • Hi,Here is a sample using the Google Places web service, seem to work ok once you do the "trust document" thing on the yellow message bar that is displayed at the top of the form.https://sites.google.com/site/livecycledesignercookbooks/home/GooglePlaces.pdf?attredirects=0&d=1 You will need to get a ...

    Type

    Questions

    Views

    5.5K

    Likes

    2

    Replies

    0
  • This webserive does not seem to offer a partial match search, I assume you want people to be able to type something like "new" and get all the countries that contain "new" in their name?  Still I can see this being useful, I might try the google places API, Google Places API  |  Google Developers , ...

    Type

    Questions

    Views

    5.4K

    Likes

    0

    Replies

    0
  • Hi,Maybe this post by John Brinkman will help, Transpromo: the sequel .It explains how to position some content (in his case an advertisement) at a particular place in the form.

    Type

    Questions

    Views

    3.6K

    Likes

    0

    Replies

    0
  • Hi,I have not had a need to try this, though you see this more and more.  Do you have a public web service available that I integrate my "searchable drop down" control with?RegardsBruce

    Type

    Questions

    Views

    5.4K

    Likes

    0

    Replies

    0
  • Hi,I think your approach is ok, but maybe you just have an error in your code.  In Acrobat under Edit ... Preferences ... JavaScript, set "when exception is thrown" to break and the JavaScript console will display if there is an exception.In the script editor you can generate the reference to your f...

    Type

    Questions

    Views

    3.6K

    Likes

    0

    Replies

    0
  • Hi,Adobe Reader uses SpiderMonkey JavaScript, so you could start with RegExp.prototype.test() - JavaScript | MDN  There will be some things on that website that don't apply as Adobe Reader is still using a fairly old version 1.7 or 1.8RegardsBruce

    Type

    Discussions

    Views

    5.5K

    Likes

    0

    Replies

    0
  • Hi,Try a display pattern of;num{'000'9}|num{'00'99}|num{'0'999}|num{9999}One digit will match the first pattern and add the '000' string, etcRegardsBruce

    Type

    Discussions

    Views

    5.5K

    Likes

    0

    Replies

    2
  • Hi,If you are getting formatting options for time then you are using the Date/Time Field, try a Date Field with a display pattern of date{EEEE, D MMMM YYYY}.This isn't exactly what you are after as it wont give you the ordinal (st, nd, th).  If you want that you have to write you own formatting (or ...

    Type

    Questions

    Views

    7.8K

    Likes

    2

    Replies

    0
  • Hi Tarek,You can use something like;function copyItems(dropDownList, listBox) {    var itemList = [];    for (var i = 0; i < dropDownList.length; i++) {        itemList.push(dropDownList.getDisplayItem(i));        itemList.push(dropDownList.getSaveItem(i));    }    listBox.setItems(itemList.join(),2...

    Type

    Questions

    Views

    5.4K

    Likes

    0

    Replies

    0