Przemek Gawronski wrote:
> 
> What I'm looking for now is, how to redirect to a different page with
> the button, and sending to the page (django view) the id number.
> 
> Przemek

If you don't want to use ajax you can either use a form as normal to 
submit it and then issue a redirect at the server side to the new page 
or call a javascript function to issue a window.Location to fetch a new 
page or use image buttons that are inside a HTML link etc. It's really 
up to you how you want to "load" the new page.

If you just want to fetch more data using ajax then you could use 
something like: (this is just a simple test example from my code)

$("#newfeaturesave").click(function() {
   var newfeat = $("#id_name").val();
   var newval  = $("#id_value").val();
   var staffid = $("#id_staffid").val();
   $.ajax({
           url:"/stafffeature/add/"+staffid+"/",
           type: "POST",
           datatype: "html",
           data: {name:newfeat,value:newval},
           success: function(row){
               $("#featuretable tbody tr:last").after(row);
               $("#featuretable tbody tr:last").prev().remove();
               $("#featuretable tfoot").show();
               $("#featuretable tbody tr:last 
.griddelbtn").click(function(){
                   dofeaturedelete(this);
               });
               $("#featuretable tbody tr:last 
.grideditbtn").click(function(){
                   dofeatureedit(this);
                });
               stripetable("#featuretable");
               },
           error: function(XReq, errs, errobj){
               alert(XReq.statusText+'\r\n'+XReq.responseText);
               }
         });
});

Of course you will want to read the JQuery docs to find all the 
possibilites for your situation.

Regards,
Gary.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to