SANDIP ROY

Results 2 comments of SANDIP ROY

Hey folks, I just found a trick, the rows you need to skip just add "data-tabledit-done" attribute on these rows. For example: ```html ID Name ``` I got it from...

You can do that by creating multiple item instances. ```php $item_1 = new Item(); $item_1->setName('Item 1') /** item name **/ ->setCurrency('USD') ->setQuantity(1) ->setPrice(6.5); /** unit price **/ $item_list = new...