Subversion Repositories SmartDukaan

Rev

Rev 18007 | Rev 18435 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18007 Rev 18323
Line 23... Line 23...
23
			  $brand = $name[0];
23
			  $brand = $name[0];
24
		?>
24
		?>
25
		<div class="col-xs-2 cartdetailsadd">
25
		<div class="col-xs-2 cartdetailsadd">
26
				<div class="input-group number-spinner">
26
				<div class="input-group number-spinner">
27
					<span class="input-group-btn data-up">
27
					<span class="input-group-btn data-up">
28
						<button class="btn btn-default plusqtybutton" data-id="<?php echo $cartitem['itemId'];?>" data-price="<?php echo $cartitem['sellingPrice'];?>" data-dir="up" data-name="<?php echo $cartitem['title'];?>" data-brand="<?php echo $brand;?>" data-estimate="<?php echo $cartitem['estimate'];?>" data-identifier="<?php echo $cartitem['catalogItemId']; ?>"><span class="glyphicon glyphicon-plus plusqty"></span></button>
28
						<button class="btn btn-default plusqtybutton" data-id="<?php echo $cartitem['itemId'];?>" data-price="<?php echo $cartitem['sellingPrice'];?>" data-dir="up" data-name="<?php echo $cartitem['title'];?>" data-brand="<?php echo $brand;?>" data-estimate="<?php echo $cartitem['estimate'];?>" data-identifier="<?php echo $cartitem['catalogItemId']; ?>" <?php if(isset($disablePage) && $disablePage): ?> disabled="disabled"<?php endif;?>><span class="glyphicon glyphicon-plus plusqty"></span></button>
29
					</span>
29
					</span>
30
					<input type="text" class="itemquantity" value="<?php echo $cartitem['quantity'];?>" min="0" max="<?php echo $cartitem['maxQuantity'];?>" autocomplete="off" readonly>
30
					<input type="text" class="itemquantity" value="<?php echo $cartitem['quantity'];?>" min="0" max="<?php echo $cartitem['maxQuantity'];?>" autocomplete="off" readonly>
31
					<span class="input-group-btn data-dwn">
31
					<span class="input-group-btn data-dwn">
32
						<button class="btn btn-default minusqtybutton" data-id="<?php echo $cartitem['itemId'];?>" data-price="<?php echo $cartitem['sellingPrice'];?>" data-dir="dwn" data-name="<?php echo $cartitem['title'];?>" data-brand="<?php echo $brand;?>" data-estimate="<?php echo $cartitem['estimate'];?>" data-identifier="<?php echo $cartitem['catalogItemId']; ?>"><span class="glyphicon glyphicon-minus minusqty"></span></button>
32
						<button class="btn btn-default minusqtybutton" data-id="<?php echo $cartitem['itemId'];?>" data-price="<?php echo $cartitem['sellingPrice'];?>" data-dir="dwn" data-name="<?php echo $cartitem['title'];?>" data-brand="<?php echo $brand;?>" data-estimate="<?php echo $cartitem['estimate'];?>" data-identifier="<?php echo $cartitem['catalogItemId']; ?>" <?php if(isset($disablePage) && $disablePage): ?> disabled="disabled"<?php endif;?>><span class="glyphicon glyphicon-minus minusqty"></span></button>
33
					</span>
33
					</span>
34
				</div>
34
				</div>
35
			</div>
35
			</div>
36
			
36
			
37
		
37