Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

articles.js 923B

12345678910111213141516171819202122232425262728293031323334353637
  1. let listManager;
  2. $(document).ready(function () {
  3. listManager = new ListManager($("#dataList"), 'article',
  4. [
  5. {
  6. name: 'image',
  7. description: 'Image',
  8. type: 'image'
  9. },
  10. {
  11. name: 'name',
  12. description: 'Nom',
  13. type: 'text'
  14. },
  15. {
  16. name: 'description',
  17. description: 'Description',
  18. type: 'text'
  19. },
  20. {
  21. name: 'price',
  22. description: 'Prix',
  23. type: 'number'
  24. },
  25. {
  26. name: 'code',
  27. description: 'Code',
  28. type: 'text'
  29. },
  30. {
  31. name: 'category',
  32. description: 'Catégories',
  33. type: 'checkboxes'
  34. },
  35. ]);
  36. });