function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ray KaushikRay Kaushik 

Create a modal with angular and VF

I want to create a modal window where I can use input fields etc but all these should be in a modal like https://angular-ui.github.io/bootstrap/#/modal

I am currently facing issue same as http://salesforce.stackexchange.com/questions/97907/error-parsesyntax-syntax-error-token-is-an-unexpected-token-at-column

Is there a way by which we can use standard angular modal with SF input fields and then how can I control the pop up completion.

Thanks,

Ray
Andy BoettcherAndy Boettcher
Mixing Angular (and other like-libraries) do not like the <apex:whatever> components in a Visualforce page, as they render with colons (:) in the component Id attributes.  If you're going to use angular, you will want to go full-on.  You can read up on Kevin Poorman's AngularJS / ngForce framework here:  https://developer.salesforce.com/blogs/developer-relations/2013/05/angularjs-and-ngforce-more-fun-in-the-javascript-playground.html
Ray KaushikRay Kaushik
Hi @Andy, I agree that I may need to go full on with angular, but what about mixing look up fields or other input fields with angular ? how can I achieve same in that case.?
Andy BoettcherAndy Boettcher
I've never heard of a good success rate going a mixed method - here is another post you can read through to get some more information:  http://www.oyecode.com/2013/06/getting-started-with-angularjs-on.html