You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hola estoy intentando hacer un sistema de boletaje para buses utlize su librería para los asientos de los buses enserio es genial
funciona bien pero no puedo generar dos mapas de asientos separados para los buses de 2 pisos similar a esta imagen https://i.stack.imgur.com/jF1Uv.jpg
quisiera generar dos mapas de asientos sin inicializar 2 veces la funcion seatCharts()
var sc = $('#seat-map').seatCharts({
map: [
'aaaaaaaaaaaa',
'aaaaaaaaaaaa',
'bbbbbbbbbb__',
'bbbbbbbbbb__',
'bbbbbbbbbbbb',
'cccccccccccc'
],
seats: {
a: {
price : 99.99,
classes : 'front-seat' //your custom CSS class
}
},
click: function () {
if (this.status() == 'available') {
//do some stuff, i.e. add to the cart
return 'selected';
} else if (this.status() == 'selected') {
//seat has been vacated
return 'available';
} else if (this.status() == 'unavailable') {
//seat has been already booked
return 'unavailable';
} else {
return this.style();
}
}
});
espero su ayuda y de antemano gracias!!
The text was updated successfully, but these errors were encountered:
hola estoy intentando hacer un sistema de boletaje para buses utlize su librería para los asientos de los buses enserio es genial
funciona bien pero no puedo generar dos mapas de asientos separados para los buses de 2 pisos similar a esta imagen
https://i.stack.imgur.com/jF1Uv.jpg
quisiera generar dos mapas de asientos sin inicializar 2 veces la funcion seatCharts()
espero su ayuda y de antemano gracias!!
The text was updated successfully, but these errors were encountered: