callouts

Microsoft Dynamics CRM 4.0 using 3.0 Callouts and Workflows

We are migrating to CRM 4.0 from 3.0. In this process, we have had our data migrated from our existing CRM 3.0 instance to a new CRM 4.0 instance. This has been going all well and good until I got to the point of installing our existing callouts and workflow DLLs. I know that I need to rewrite them, but our migration schedule does not ...

xVal Client side Validation with validation Callout

Im using MVC data annotation with xVal Client Validation on a form. How do I implement something like the a asp.net validation callout extender instead of display red error messages. ...

CRM 3.0 Callouts Running in CRM 4.0 Causing Infinite Loop

I recompiled a library of CRM 3.0 callouts and deployed them to my CRM 4.0 instance. One of my PostUpdate callout calls service.Update(). This is causing the update method to fire many times. It eventually stops due to timeout errors. This does not happen when these callouts are used with CRM 3.0. The method signature is as follows for ...

How to open call out MKAnnotationView programmatically? (iPhone, MapKit)

I want to open up the callout for an MKPinAnnotationView programmatically. Eg I drop 10 pins on the map, and want to open up the one closest to me. How would I go about doing this? Apple has specified the 'selected' parameter for MKAnnotationView's, but discourages setting it directly (this doesn't work, tried it). For the rest MKAnnot...

I don't know to work with calloutAccessoryControlTapped:(UIControl *)control

Hello user, in my project are two classes (mapViewcontroller and listViewcontroller) and on the mapView are a lot of pins that the user can pull. If he pulled one i have to save the data of the pins and manage it to the other class. so my question what i have to implement in the following method to save the title and subtitle of the pin...

iPhone MKMapView force callout bubble

Is it possible to force the call out bubble to be open all the time? I tried putting the following code in didAddAnnotionViews: for (id<MKAnnotation> currentAnnotation in mapView.annotations) { [mapView selectAnnotation:currentAnnotation animated:NO]; } Which works, however, when I single tap the MKMapView the bubble dis...

How to Hide MKAnnotationView Callout?

Hello, i'm trying to hide an AnnotationView without touching the pin, is the possible? Thanks! for (id currentAnnotation in self.mapView.annotations) { if ([currentAnnotation isKindOfClass:[MyAnnotation class]]) { } } ...

Linking CallOut Button to DetailView in other Tab

Hi, I have a Tab-based iPhone Application. One tab is a UITableView + DetailView, the second is a MKMapView. In the MapView I have Callouts with buttons. Those buttons, I want to link to its DetailView at the first tab. How can I do that? The Detail View has its own Controller and xib file. My MKMapView Annotation code is following: -(...

MKMapView Annotation Callout Button to DetailView?

Hi, I have annotations in a MKMapView with Callouts. In this Callouts there's a "Right-Arrow" Button. When clicking on it, I want to open a Detail View, an extra UIViewController with its own nib file etc. I use following code: In my MapViewController: - (void)showDetails:(id)sender { // the detail view does not want a toolbar so...

CRM 3.0 Callout not working: event: postcreate, exception: System.InvalidCastException: Specified cast is not valid.

Just trying to do a (I thought) simple callout to read a number from a text file stored on the CRM server, use it as one of the values on the CRM form, and increment the number and then rewrite it to the text file. When I load the form, the callout ostensibly does nothing and Event Viewer on the server gives me this unhelpful invalid cas...

Can a CRM 3.0 PreCreate callout fill form fields in advance?

I just finished my first CRM callout, and it's working great, but it doesn't actually seem to take effect until the form that calls it is saved. It's a PreCreate deal that assigns a value to one of the attributes present on the form. Is there any way to get it to assign the new value and display it on the form as soon as you load it, or ...

How can I append to a field on a form in a CRM Callout?

I can't find any information about this. I've got a CRM callout that fires from a form, and I need append to one of the fields; for example, the field might have something like "BH" in it, and I need the callout to do some calculations and alter the field so that it reads "BH002129" or whatever, but no matter how I try it, it ends up jus...

iPhone Callout Pin resize view for detail display

Hi, When the user click on a annotation, I display the default callout view with a title, subtitle and a right info button. When the user click on the info button, I would like the callout view to resize itself and display a detail view controller. Basically, I would like the same effect with an animation as the Google Maps applicatio...

How to resize callout bubble after resetting title/subtitle

Hi all, I created an MKAnnotation name PushPin which has a title and subtitle. I want to be able to dynamically change the title at a later time. I'm close so I'd rather not have to make a whole new AnnotationView, but if I have to I guess that's ok too. My problem is that, once I change the text for the title, the window does not re...