src/cm/templates/test_inner.html
author reno
Fri, 11 Dec 2009 12:03:51 +0100
changeset 59 8a2d933209aa
parent 0 40c8f766c9b8
permissions -rw-r--r--
BUG FIX : in text history tab text view frame now expands to maximum

<form  id="test" class="wizard-form" action="." method="post">
{{ form }}

<input id="sub" name="continue" type="button" value="finish  →"/>

<script type="text/javascript">
    $(function() {
        $("#sub").click(function () {
        	var str = $("#test").serialize();
        	$.post("{% url test_inner %}", str,
        			  function(data, textStatus){
        		$(".ui-tabs-panel").not('.ui-tabs-hide').html(data);
        			  }, "html");
        });
    });
    </script>
</form>