fast fertig
This commit is contained in:
@ -11,10 +11,10 @@ function select(category, mode) {
|
||||
}
|
||||
else
|
||||
{
|
||||
if(mode == 0){
|
||||
if(mode == 0) {
|
||||
window.location.href = '/detail/?cat=' + category + '&id=' + id;
|
||||
}
|
||||
else {
|
||||
if(mode == 1) {
|
||||
var result = confirm("Sind Sie sicher, dass der Eintrag gelöscht werden soll?");
|
||||
if(result) {
|
||||
window.location.href = '/delete/?cat=' + category + '&id=' + id;
|
||||
@ -24,6 +24,16 @@ function select(category, mode) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if(mode == 2) {
|
||||
var result = confirm("Sind Sie sicher, dass das Angebot angenommen werden soll?");
|
||||
if(result) {
|
||||
window.location.href = '/detailchoice/?id=' + id;
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -188,4 +188,11 @@ body {
|
||||
left: 250px;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.clFormRow select {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 250px;
|
||||
width: 250px;
|
||||
}
|
||||
/* EOF */
|
Reference in New Issue
Block a user