Pogledajte određenu poruku
Staro 24. 02. 2007.   #3
kaizen
old school
Professional
 
Avatar kaizen
 
Datum učlanjenja: 07.02.2006
Poruke: 340
Hvala: 32
44 "Hvala" u 20 poruka
kaizen će postati "faca" uskoro
Default

Implementacija iz Railsa:

HTML kôd:
<a href="/something" onclick="if (confirm('Are you sure that you want to change status?')) { var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href;f.submit(); };return false;">Change status</a>
Naravno, koristi se helper metoda koja generise sve ovo, pa programer kuca

Kôd:
<%= link_to 'Change status', { :action => 'something'}, :confirm => 'Are you sure that you want to change status?', :post => true %>

Poslednja izmena od kaizen : 24. 02. 2007. u 15:34.
kaizen je offline   Odgovorite uz citat