I know this is an old thread. However, I found it when searching online when I had the same problem. I did quite a bit of other searching before I finally realized what was happening.
Yes, I see the same behavior where the 'submit.x' and 'submit.y' values were in the request.POST dictionary, but there was no 'submit' key. I am not certain if this is expected behavior for either normal HTTP communication or Django, but the 'submit' (or whatever name you gave the submit button) key is not in the dictionary if the associated value in HTML is ''. In my particular case, I was doing something like this: <input id='employee_services4_cancel_button' class='employee_services4_buttons' type='image' src='{{MEDIA_URL}}images/cancel_button.gif' value='{{cancel_button}}' alt='[{% trans "Cancel" %}]' name='submit' /> What's relevant is the 'value'. I had forgotten to send the 'cancel_button' variable, and therefore the value was ''. This means the key does not show in the dictionary. Although I don't know expected behavior, I would personally had expected to see the 'submit' entry present in the request.POST, but the value would have been ''. It may be a bug, but without knowing expected behavior for both browsers and Django, I cannot say for certain. On Oct 4, 11:44 am, ydjango <[EMAIL PROTECTED]> wrote: > I do not see the name of submit button in request.POST. it has all > other form fields > > if request.POST.has_key('save'): > does not work too > > Where can I find which button was pressed. > > <form> > various fields... > <input type="submit" id="submit" name="save" value="Save Case"/> > other input buttons > </form> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---