SKU: GL0010
A manual screen with a matte white display offers a straightforward yet effective solution for projecting images and videos. The manual aspect means you can easily retract and extend the screen as needed, making it suitable for various spaces and presentation requirements.
The matte white surface is ideal for displaying content without distracting glare or reflections, ensuring clear and crisp visuals from different viewing angles. This type of display is commonly used in classrooms, conference rooms, home theaters, and other settings where visual presentations are key.
Overall, a manual screen with a matte white display provides a reliable and versatile option for showcasing multimedia content in a professional and visually pleasing manner.
Delivery
Eastern, Ampara, Damana Change
Standard Delivery 16 August - 17 August
3-4 day(s) Rs.235
Cash on Delivery Available
Services
'); // Clear city dropdown
$('#area').html(''); // Clear area dropdown
$('.addressData').empty(); // Clear addressData
});
$('#province').on('change', function() {
var provinceValue = $(this).val();
$('.addressData').text(provinceValue);
$.ajax({
url: 'ajax/provinceDet.php',
data: {
'provinceName': provinceValue
},
dataType: 'json',
type: 'POST',
success: function(data) {
$('#provinceSelect').hide();
$('#districtSelect').show();
$('#citySelect').hide();
$('#city').html(''); // Clear city dropdown
data.forEach(function(arrayval) {
$('#city').append('');
});
$('#city').trigger('change'); // Trigger change event for city dropdown
}
});
});
$('#city').on('change', function() {
var cityValue = $(this).val();
var cityName = $('#city option:selected').text(); // Get the selected city name
$('.addressData').text($('#province').val() + ', ' + cityName); // Set addressData with province and city
$.ajax({
url: 'ajax/areaDet.php',
data: {
'cityName': cityValue
},
dataType: 'json',
type: 'POST',
success: function(data) {
$('#provinceSelect').hide();
$('#districtSelect').show();
$('#citySelect').show();
$('#area').html(''); // Clear area dropdown
data.forEach(function(arrayval) {
$('#area').append('');
});
}
});
});
$('#area').on('change', function() {
var areaName = $('#area option:selected').text(); // Get the selected area name
$('.addressData').text($('#province').val() + ', ' + $('#city option:selected').text() + ', ' + areaName); // Set addressData with province, city, and area
$('#provinceSelect').hide();
$('#districtSelect').hide();
$('#citySelect').hide();
});
});
$(document).ready(function() {
$(document).on('click', '.area', function(e) {
var districtID = $('#city').val();
DistrictRate(districtID);
});
});
function DistrictRate(districtID) {
var district_id = districtID;
$.ajax({
url: 'ajax/saveCart.php',
data: {
'districtID': district_id
},
dataType: 'json',
type: 'POST',
success: function(data) {
if (!isNaN(parseFloat(data.deliveryFee))) {
console.log('Delivery Fee:', data.deliveryFee);
var deliveryFee = parseFloat(data.deliveryFee);
/*var subtotal = parseFloat($('.cartTotProducts').text().replace('Rs.', '').replace(',', '').trim());
var grandTotal = subtotal + deliveryFee;*/
$('#deliveryRate').text('Rs. ' + deliveryFee + '.00');
//$('.grandTotal').text('Rs.' + grandTotal + '.00');
} else {
console.error("Invalid delivery fee:", data.deliveryFee);
}
},
error: function(xhr, status, error) {
console.error("Error fetching delivery fee:", error);
}
});
}