Questions tagged [callout]

Callout is a coding mechanism to modify the content of a display field in a Window of ADempiere.

A Callout is a java method which gets executed when the field in an ADempiere window tab gets focus and onChange activity.

116 questions
0
votes
1 answer

Oracle: BPEL->Java Callout->BPEL: how to make them belong to the same call tree in EM?

A BPEL process contains a Java callout to do a logic that would be impractical to do in BPEL. That Java callout in turn calls another BPEL workflow (with a DII WS call). BPEL1 -> (Java Embedding) -> Java code -> (SOAP call) -> BPEL2 All is working…
Vladimir Dyuzhev
  • 18,130
  • 10
  • 48
  • 62
0
votes
0 answers

Unity C# REST PUT request body is blank on server side

The Unity C# code below is sending a username and a new and old password to a server that should be using PUT to update the database. The body in the request is blank on the server. uriBase is the base domain for the endpoint. The only way I can get…
user3648673
  • 45
  • 1
  • 8
0
votes
1 answer

Mapkit callout to individual pages depending on annotation selected

I have 20 pins on my map and each one when clicked shows an annotation with the venues name and has a callout button on the right hand side. I have successfully linked this button to a single page using segue. The thing is all of the locations all…
0
votes
1 answer

Swift Custom Map Call Out Error

I've worked with custom map callouts before and have gotten them to work. Too bad this isn't those situations because I've been trying to figure out why I keep getting this error: "Could not cast value of type 'NSKVONotifying_MKPointAnnotation'…
Lukas Bimba
  • 817
  • 14
  • 35
0
votes
0 answers

Multiple sets of images to show on a single segue

I am having a bit of trouble deciding how to approach this. I have a map app, where the pin annotations show a custom callout which is a segueway to a single screen. I want to have a set of images assigned to each pin so that on the screen the…
Amy
  • 1
0
votes
0 answers

Swift Custom Map Callout - Resize for each device

This isn't a coding question, more of in need of which way to go. I created a custom call out but the problem is that it doesn't resize to the devices. Some devices it fits perfect and others it completely zoomed in on. Will using the stack view…
Lukas Bimba
  • 817
  • 14
  • 35
0
votes
1 answer

Each image for left callout view

I want leftCalloutAccessoryView have a location's own image, I know how to make a leftCalloutAccessoryView on callout bubble, however I couldn't get the image path location information is init form a SpotAnnotation class, like bellow - (id)…
Zoe
  • 121
  • 1
  • 2
  • 8
0
votes
2 answers

HTML - Removing an element's "presence" on the page but keeping its visibility?

I have an element that overlays another element. The main element is a canvas where elements constantly have mouse interactions and the element directly overtop of it just shows elements that act as little markers. Same position, same size and it's…
JackHasaKeyboard
  • 1,599
  • 1
  • 16
  • 29
0
votes
1 answer

Location Annotation Images

I am currently working on a function where the user can tap on a maps annotation and be taken to another screen which will hold an image of that location. I am using Mapbox and the tapOnCallout function to segue to another view controller…
Cal
  • 61
  • 8
0
votes
2 answers

Mapbox Annotation Callout

I have recently decided to change from Mapkit to Mapbox. I have my annotations implemented within my map but for some reason my annotation callouts are not appearing when I click on the annotation. I am quite confused and unsure as to why this is…
0
votes
1 answer

Custom SOAP envelope namespace in apex callout

I am creating a SOAP call to Siebel and getting below SOAP envelope headers by…
ankit agarwal
  • 21
  • 1
  • 2
0
votes
0 answers

Individual custom annotation callout swift

I am creating a map which contains both custom annotation pins as well as images in the annotation callouts. The only problem is that I cannot figure out a way to have different images for different annotations. More specifically, I'm after having…
imjonu
  • 515
  • 1
  • 6
  • 12
0
votes
0 answers

HTTPS REST call from salesforce returns error

I am trying to call a end point using following code, but it always returns the below error. Can you suggest what is the possible error? HttpRequest req = new…
0
votes
1 answer

How to make whole call out tappable?

I have added annotation on map and added title, leftCalloutAccessoryView (ImageView), and rightCalloutAccessoryView (UIButton), When tap on button it plays audio, I want instead of tapping on button when i will top on callout any area it starts…
Sudhanshu.B
  • 626
  • 9
  • 22
0
votes
1 answer

MapKit - Displaying image in detailCalloutAccessoryView - accessing mapView.selectedAnnotations not working

I have a subclass of MKPointAnnotation called CustomPointAnnotation: class CustomPointAnnotation: MKPointAnnotation { var imageName: String! var theItemObject: PFObject? var theImage: UIImage? } In the view controller dealing with the…
shadowmoses
  • 343
  • 3
  • 17