Results 1 to 2 of 2

Thread: SWF Example?

  1. #1
    Join Date
    Mar 2012
    Posts
    12

    Cool SWF Example?

    Hi ,

    Could any body provide me Spring Web Flow example for Login and sign up web Flow.

  2. #2
    Join Date
    Mar 2012
    Posts
    12

    Default

    how to use java script with Spring web flow.actually i want to integrate google map with spring web flow,so for dat purpose i need java script,following is my code ,plz check where am wrong?????????????????




    <html>
    <head>
    <script type="text/javascript"
    src="//maps.googleapis.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript">
    var map;
    function initialize() {
    var myOptions = {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644),
    mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById('map_canva s'),
    myOptions);
    }

    google.maps.event.addDomListener(window, 'load', initialize);
    </script>
    </head>
    <body onload="initialize()" >

    </body>
    </html>

    In above Code,its not working?may i need to implement any another controller or some thing?
    help me plzzzzzzzz??????????

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •