FeaturesReviewsThere are no reviews for this product.
Write a review
Please login or register to review // calculate vertical images height
(function () {
const $img = document.querySelector('.direction-vertical .main-image .swiper-slide img');
const $ad = document.querySelector('.direction-vertical .additional-images');
if ($img && $ad) {
$ad.style.height = $img.offsetHeight + 'px';
}
})(); $('select[name=\'recurring_id\'], input[name="quantity"]').change(function(){
$.ajax({
url: 'index.php?route=product/product/getRecurringDescription',
type: 'post',
data: $('input[name=\'product_id\'], input[name=\'quantity\'], select[name=\'recurring_id\']'),
dataType: 'json',
beforeSend: function() {
$('#recurring-description').html('');
},
success: function(json) {
$('.alert-dismissible, .text-danger').remove();
if (json['success']) {
$('#recurring-description').html(json['success']);
}
}
});
}); $('#button-cart, [data-quick-buy]').on('click', function () {
var $btn = $(this);
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: $(
'#product .button-group-page input[type=\'text\'], #product .button-group-page input[type=\'hidden\'], #product .button-group-page input[type=\'radio\']:checked, #product .button-group-page input[type=\'checkbox\']:checked, #product .button-group-page select, #product .button-group-page textarea, ' +
'#product .product-options input[type=\'text\'], #product .product-options input[type=\'hidden\'], #product .product-options input[type=\'radio\']:checked, #product .product-options input[type=\'checkbox\']:checked, #product .product-options select, #product .product-options textarea, ' +
'#product select[name="recurring_id"]'
),
dataType: 'json',
beforeSend: function() {
$('#button-cart').button('loading');
},
complete: function() {
$('#button-cart').button('reset');
},
success: function(json) {
$('.alert-dismissible, .text-danger').remove();
$('.form-group').removeClass('has-error');
if (json['error']) {
if (json['error']['option']) {
for (i in json['error']['option']) {
var element = $('#input-option' + i.replace('_', '-'));
if (element.parent().hasClass('input-group')) {
element.parent().after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
} else {
element.after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
}
}
}
if (json['error']['recurring']) {
$('select[name=\'recurring_id\']').after('<div class="text-danger">' + json['error']['recurring'] + '</div>');
}
// Highlight any found errors
$('.text-danger').parent().addClass('has-error');
try {
$('html, body').animate({ scrollTop: $('.form-group.has-error').offset().top - 50 }, 'slow');
} catch (e) {
}
}
if (json['success']) {
if ($('html').hasClass('popup-options')) {
parent.$(".popup-options .popup-close").trigger('click');
}
if (json['notification']) {
parent.show_notification(json['notification']);
} else {
parent.$('#content').parent().before('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
}
parent.$('#cart-total').html(json['total']);
parent.$('#cart-items,.cart-badge').html(json['items_count']);
if (json['items_count']) {
parent.$('#cart-items,.cart-badge').removeClass('count-zero');
} else {
parent.$('#cart-items,.cart-badge').addClass('count-zero');
}
if (Journal['scrollToTop']) {
parent.$('html, body').animate({ scrollTop: 0 }, 'slow');
}
parent.$('.cart-content ul').load('index.php?route=common/cart/info ul li');
if (window.location.href.indexOf('quick_buy=true') !== -1) {
parent.location.href = Journal['checkoutUrl'];
}
if ($btn.data('quick-buy') !== undefined) {
location = Journal['checkoutUrl'];
}
if (parent.window['_QuickCheckout']) {
parent.window['_QuickCheckout'].save();
}
if (json['redirect']) {
parent.location.href = json['redirect'];
}
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}); $('.date').datetimepicker({
language: 'en-gb',
pickTime: false
});
$('.datetime').datetimepicker({
language: 'en-gb',
pickDate: true,
pickTime: true
});
$('.time').datetimepicker({
language: 'en-gb',
pickDate: false
});
$('button[id^=\'button-upload\']').on('click', function() {
var node = this;
$('#form-upload').remove();
$('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" /></form>');
$('#form-upload input[name=\'file\']').trigger('click');
if (typeof timer != 'undefined') {
clearInterval(timer);
}
timer = setInterval(function() {
if ($('#form-upload input[name=\'file\']').val() != '') {
clearInterval(timer);
$.ajax({
url: 'index.php?route=tool/upload',
type: 'post',
dataType: 'json',
data: new FormData($('#form-upload')[0]),
cache: false,
contentType: false,
processData: false,
beforeSend: function() {
$(node).button('loading');
},
complete: function() {
$(node).button('reset');
},
success: function(json) {
$('.text-danger').remove();
if (json['error']) {
$(node).parent().find('input').after('<div class="text-danger">' + json['error'] + '</div>');
}
if (json['success']) {
alert(json['success']);
$(node).parent().find('input').val(json['code']);
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}
}, 500);
}); $('#review').delegate('.pagination a', 'click', function(e) {
e.preventDefault();
$('#review').fadeOut('slow');
$('#review').load(this.href);
$('#review').fadeIn('slow');
});
$('#review').load('index.php?route=product/product/review&product_id=3472');
$('#button-review').on('click', function() {
$.ajax({
url: 'index.php?route=product/product/write&product_id=3472',
type: 'post',
dataType: 'json',
data: $("#form-review").serialize(),
beforeSend: function() {
$('#button-review').button('loading');
},
complete: function() {
$('#button-review').button('reset');
},
success: function(json) {
$('.alert-dismissible').remove();
if (json['error']) {
$('#review').after('<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + '</div>');
}
if (json['success']) {
$('#review').after('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + '</div>');
$('input[name=\'name\']').val('');
$('textarea[name=\'text\']').val('');
$('input[name=\'rating\']:checked').prop('checked', false);
}
}
});
});
$(document).ready(function() {
$('.thumbnails').magnificPopup({
type:'image',
delegate: 'a',
gallery: {
enabled: true
}
});
});
$(document).ready(function () {
$('.review-links a').on('click', function () {
var $review = $('#review');
if ($review.length) {
$('a[href="#' + $review.closest('.module-item').attr('id') + '"]').trigger('click');
$('a[href="#' + $review.closest('.tab-pane').attr('id') + '"]').trigger('click');
$('a[href="#' + $review.closest('.panel-collapse').attr('id') + '"]').trigger('click');
$review.closest('.expand-block').find('.block-expand.btn').trigger('click');
$([document.documentElement, document.body]).animate({
scrollTop: $review.offset().top - 100
}, 200);
}
});
}); {"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/elbadrgroupeg.store\/","name":"\u0627\u0644\u0628\u062f\u0631 \u062c\u0631\u0648\u0628 - ELBADR GROUP STORES","description":"Computer Hardware Store","potentialAction":{"@type":"SearchAction","target":"https:\/\/elbadrgroupeg.store\/index.php?route=product\/search&search={search}","query-input":"required name=search"}} {"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/elbadrgroupeg.store\/","logo":"https:\/\/elbadrgroupeg.store\/image\/cache\/catalog\/271545670_3105337589732752_5774056479058230633_n-removebg-preview-500x500.png"} {"@context":"http:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https:\/\/elbadrgroupeg.store","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@id":"https:\/\/elbadrgroupeg.store\/asus-tuf-gaming-vg279qm-27-full-hd-1920-x-1080-1-ms-gtg-280hz-overclocking-2-x-hdmi-displayport-g-sync-elmb-sync-hdr-built-in-speakers-led-backlit-ips-gaming-monitor?limit=100","name":"ASUS TUF Gaming VG279QM 27" Full HD 1920 x 1080 1 ms (GTG) 280Hz (Overclocking) 2 x HDMI, DisplayPort G-SYNC ELMB SYNC HDR Built-in Speakers LED Backlit IPS Gaming Monitor"}}]} {"@context":"http:\/\/schema.org\/","@type":"Product","name":"ASUS TUF Gaming VG279QM 27" Full HD 1920 x 1080 1 ms (GTG) 280Hz (Overclocking) 2 x HDMI, DisplayPort G-SYNC ELMB SYNC HDR Built-in Speakers LED Backlit IPS Gaming Monitor","image":"https:\/\/elbadrgroupeg.store\/image\/cache\/catalog\/Asus\/7knEo5qSXPr8jZPpXjpJoAOy11Ehg2ywM50LEtl2YfySpqjDYSX0ODPpzYSgnsynRCz-1000x1000.png","description":"ModelBrandASUSSeriesTUF GamingModelVG279QMCabinet ColorBlackDisplayScreen Size 27\"Glare ScreenNon-glareLED Backlight YesWidescreen YesRecommended Resolution 1920 x 1080VESA Certified DisplayHDRDisplayHDR 400Refresh Rate 280 Hz (Overclocking)Viewing Angle 178\u00b0 (H) \/ 178\u00b0","sku":"","mpn":"","model":"VG279QM","offers":{"@type":"Offer","priceCurrency":"EGP","price":"9499.00","itemCondition":"http:\/\/schema.org\/NewCondition","availability":"http:\/\/schema.org\/InStock","seller":{"@type":"Organization","name":"\u0627\u0644\u0628\u062f\u0631 \u062c\u0631\u0648\u0628 - ELBADR GROUP STORES"},"priceValidUntil":"2027-06-29","url":"https:\/\/elbadrgroupeg.store\/asus-tuf-gaming-vg279qm-27-full-hd-1920-x-1080-1-ms-gtg-280hz-overclocking-2-x-hdmi-displayport-g-sync-elmb-sync-hdr-built-in-speakers-led-backlit-ips-gaming-monitor"},"brand":{"@type":"Thing","name":"Asus"}}
People Also Bought
Quickview
-18%Logitech C922 Pro Stream 1080p WebcamFULL HIGH-DEFINITION 1080P STREAMING: The Logitech C922 Pro Stream Webcam can stream and record vibrant, true-to-life videos. The glass lens and full ..
6,950 EGP 8,500 EGP
Ex Tax:6,950 EGP
Logitech C922 Pro Stream 1080p Webcam
Add to Cart
Quickview
XPG Battle Cruiser Mid-Tower RGB Glass Panel PC Case WHITE
4,200 EGP
Ex Tax:4,200 EGP
XPG Battle Cruiser Mid-Tower RGB Glass Panel PC Case WHITE
Add to Cart
Quickview
Hot
-13%Logitech G502 HERO High Performance Gaming Mouse (910-005469)BrandLogitechNameG502 HEROModel910-005469DetailsTypeWiredInterfaceUSBTracking MethodHEROMaximum dpi16000 dpiHand OrientationRight HandButtons11Mouse A..
2,050 EGP 2,350 EGP
Ex Tax:2,050 EGP
Logitech G502 HERO High Performance Gaming Mouse (910-005469)
Add to Cart
Quickview
Corsair iCUE 4000X RGB Tempered Glass Mid-Tower ATX Case — Black
6,900 EGP
Ex Tax:6,900 EGP
Corsair iCUE 4000X RGB Tempered Glass Mid-Tower ATX Case — Black
Add to Cart
Quickview
SAMSUNG 980 PRO M.2 2280 2TB PCIe Gen 4.0 x4, NVMe 1.3c Samsung V-NAND Internal SSDBrandSAMSUNGSeries980 PROModelMZ-V8P2T0B/AMDevice TypeInternal Solid State Drive (SSD)Used ForConsumerDetailsForm Factor M.2 2280Capacity2TBMemor..
15,300 EGP
Ex Tax:15,300 EGP
SAMSUNG 980 PRO M.2 2280 2TB PCIe Gen 4.0 x4, NVMe 1.3c Samsung V-NAND Internal SSD
Add to Cart
Recently Viewed
Most Viewed
QuickviewASUS TUF Gaming VG279QM 27" Full HD 1920 x 1080 1 ms (GTG) 280Hz (Overclocking) 2 x HDMI, DisplayPort G-SYNC ELMB SYNC HDR Built-in Speakers LED Backlit IPS Gaming Monitor
9,499 EGP 16,000 EGPEx Tax:9,499 EGP
Add to Cart
QuickviewPhilips Gaming 242E1GAJ - 24 inch FHD Monitor, 144 Hz, 1ms, VA, AMD FreeSync, Speakers, (1920 x 1080 , 350 cd/m², HDMI/DP)
6,900 EGPEx Tax:6,900 EGP
Add to Cart
QuickviewSAMSUNG T350 Series 27-Inch FHD 1080p Computer Monitor, 75Hz, IPS Panel, HDMI, VGA (D-Sub), 3-Sided Border-Less, FreeSync
5,000 EGPEx Tax:5,000 EGP
Add to Cart
QuickviewGIGABYTE M32U 32" 3840 x 2160 4K 144Hz Adaptive Sync Compatible, SS IPS, 1ms (MPRT), 1x Display Port 1.4, 2x HDMI 2.1, 2x USB 3.0, 1x USB Type C Height Adjust VESA Gaming Monitor
36,000 EGPEx Tax:36,000 EGP
Add to Cart
QuickviewIntel Core i5 12400F Alder Lake 6 Core 12 Thread Up To 4.4GHz LGA1700
7,300 EGPEx Tax:7,300 EGP
Add to Cart
QuickviewAMD Ryzen 5 5500 - Ryzen 5 5000 Series 6-Core Socket AM4 65W Desktop Processor
4,350 EGPEx Tax:4,350 EGP
Add to Cart
QuickviewLogitech G502 HERO High Performance Gaming Mouse (910-005469)
2,050 EGP 2,350 EGPEx Tax:2,050 EGP
Add to Cart
QuickviewRedragon K552 RED LED Backlit Mechanical Gaming Keyboard Small Compact 87 Key Metal Mechanical Computer Keyboard KUMARA USB Wired Cherry MX Blue Equivalent Switches for Windows PC Gamers - Black
1,450 EGPEx Tax:1,450 EGP
Add to Cart
Facebook
Instagram
YouTube
Google
About Us
About Us
Delivery
Privacy Policy
Terms & Conditions
Return and Refund Policy
Customer Service
Contact
Brands
My Account
My Account
Order History
Affiliates
Newsletter
Gift Certificates
Copyright © 2018, elbadrgroupeg.com.
(function () {
if (Journal['isPopup']) {
return;
}
Journal.tableScroll = function () {
document.querySelectorAll('.table-responsive').forEach(function (el) {
if (el.scrollWidth > el.clientWidth) {
el.classList.add('table-scroll');
} else {
el.classList.remove('table-scroll');
}
});
}
window.addEventListener('resize', Journal['tableScroll']);
document.addEventListener('DOMContentLoaded', Journal['tableScroll']);
})();