Giter Club home page Giter Club logo

Comments (2)

berrnd avatar berrnd commented on July 19, 2024 2

I like to go through the /products (Manage master data > Products)

That page is about master data management (hence the name), so technically it's pretty much the wrong place for any stock / shopping list management stuff there. When that page is your primary source for managing what you want to have at home, maybe you don't need Grocy and rather a simple product / shopping list tool instead.

When each and every deepest detail of everyone will be implemented built-in, we'll end up with either a very cluttered UI, or a very cluttered settings page to configure all that details rather quickly. Due to that, custom JS/CSS was invented.

Here is a simple snippet (for data/custom_js.html) which makes what you probably want reality right now:

<script>
if (Grocy.View == "products")
{
	$(".product-delete-button").each(function()
	{
		$("<a href='" + U("/shoppinglistitem/new?embedded&updateexistingproduct&product=") + $(this).attr("data-product-id") + "' \
		class='btn btn-primary btn-sm ml-1 show-as-dialog-link'> \
		<i class='fa-solid fa-fw fa-shopping-cart'></i> \
	</a>").insertAfter($(this));
	});
}
</script>

Will look like that:

firefox_2024-06-17_17-20-04.mp4

 

and app interface

This here is Grocy, it only has a web frontend.

from grocy.

jalil-salame avatar jalil-salame commented on July 19, 2024

Thanks for the quick reply and the example code c:

from grocy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.