Search found 31 matches

by brudy
2023-05-16 09:59
Forum: AppGini Plugins
Topic: AdminLTE Plugin for AppGini
Replies: 122
Views: 11723

Re: AdminLTE Plugin for AppGini

Image
Image
by brudy
2023-05-15 08:17
Forum: AppGini Plugins
Topic: AdminLTE Plugin for AppGini
Replies: 122
Views: 11723

Re: AdminLTE Plugin for AppGini

Hi,

here is my DB, I still have to detail all the fields in the select query?

Rudy

Image
by brudy
2023-05-14 18:49
Forum: AppGini Plugins
Topic: AdminLTE Plugin for AppGini
Replies: 122
Views: 11723

Re: AdminLTE Plugin for AppGini

Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay. The "range" option does not work. Hello, kindly share your calendar code widget I have a quick look. Hi, I use the...
by brudy
2023-05-13 15:27
Forum: AppGini Plugins
Topic: AdminLTE Plugin for AppGini
Replies: 122
Views: 11723

Re: AdminLTE Plugin for AppGini

Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay.

The "range" option does not work.
by brudy
2023-05-13 12:17
Forum: AppGini Plugins
Topic: AdminLTE Plugin for AppGini
Replies: 122
Views: 11723

Re: AdminLTE Plugin for AppGini

Hi,

I think there is a problem with the calendar and the everyYear option, this option does not work

Rudy
by brudy
2023-04-07 09:53
Forum: Tips And Tricks
Topic: Import CSV default coma to point-coma
Replies: 9
Views: 454

Re: Import CSV default coma to point-coma

Hi,

thanks, in the meantime I've been snooping in the CSVimportUI file and I've made the change

Many thanks
by brudy
2023-04-05 10:55
Forum: Tips And Tricks
Topic: Import CSV default coma to point-coma
Replies: 9
Views: 454

Re: Import CSV default coma to point-coma

Hello,

Thanks for this tip but it doesn't work, I'm in version 23.10

Rudy
by brudy
2023-04-03 17:24
Forum: Advanced Customizations > Hooks
Topic: Add button to show/hide field column?
Replies: 2
Views: 169

Re: Add button to show/hide field column?

Hi,

Try this in your Appgini

Image
Image
by brudy
2023-04-03 17:13
Forum: Tips And Tricks
Topic: Import CSV default coma to point-coma
Replies: 9
Views: 454

Re: Import CSV default coma to point-coma

I understand, but I would like it to be a semicolon by default
by brudy
2023-04-03 14:52
Forum: Tips And Tricks
Topic: Import CSV default coma to point-coma
Replies: 9
Views: 454

Re: Import CSV default coma to point-coma

Good morning,

thank you, that's what I do, but I would have liked to have the default ; and not ,

Rudy
by brudy
2023-03-31 11:08
Forum: Tips And Tricks
Topic: Import CSV default coma to point-coma
Replies: 9
Views: 454

Import CSV default coma to point-coma

Hi,

how to change de default , to ; into import


Thanks

Rudy
by brudy
2023-03-16 18:30
Forum: Getting Started
Topic: Import a database into an existing project
Replies: 2
Views: 227

Re: Import a database into an existing project

Hello, Thank you for your feedback I started my project from scratch, but I have the database from my billing program (invoidceplane) and I would like to be able to retrieve the information (name, surname, address, etc.) of my customers to inject them into my project without disturbing the billing s...
by brudy
2023-03-16 07:40
Forum: Getting Started
Topic: Import a database into an existing project
Replies: 2
Views: 227

Import a database into an existing project

Hello,

I have a project in progress and I would like to add an existing database. Is it possible to import ?

Rudy
by brudy
2023-03-15 20:52
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

Many thanks Pböttcher, I had to change the request to this now I can put this code for my other fields good evening I was wrong with the SELECT FROM where in a normal query you select the fields in the table where it is located and here you select the fields in the other database SELECT `Produits`.`...
by brudy
2023-03-15 15:53
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

currently I have the id number in the test1 column instead of the text corresponding to the id

https://www.zen2cool.com/test6.png
by brudy
2023-03-15 15:40
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

Code: Select all

SELECT `bondecommande`.`bon_produit`
FROM `bondecommande`
INNER JOIN `Produits`
ON  `Produits`.`prod` = `bondecommande`.`bon_produit` 
WHERE `bondecommande`.`id_bon`='%ID%'
with this code it fills the field test1 but with the value of the id and not with the text
by brudy
2023-03-15 14:26
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

last essay because I think you didn't understand

top table : Produits
bottom table :bondecommande

https://www.zen2cool.com/lasttest.png

Code: Select all

SELECT * FROM `bondecommande`  INNER JOIN `Produits` ON `Produits`.`prod`=`bondecommande`.`bon_produit` WHERE `Produits`.`id_prod`='%ID%'
by brudy
2023-03-15 14:15
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

thank you for your time but I'm going to give up, it doesn't work, I'm going to continue my orders with my good old pen and paper, I've already wasted enough time and money with this; I have walls to build.
by brudy
2023-03-15 13:15
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

not to beat around the bush, I have to pay how much and to whom for a concrete example? I tried all the solutions with select and where and I have nothing in the field test1 .... while I don't want to see the product id but the content of the field prod SELECT `Produits`.`prod` `Produits`.`id_prod` ...
by brudy
2023-03-15 13:02
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

and do I have to use JOIN?
by brudy
2023-03-15 12:12
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

I have tried several configurations including this but it doesn't work

Code: Select all

UPDATE `bondecommande`
LEFT JOIN `Produits` ON `Produits`.`id_prod` = `bondecommande`.`bon_produit`
SET `bondecommande`.`test1` = `Produits`.`prod`
WHERE `bondecommande`.`bon_produit` = '%ID%';
by brudy
2023-03-15 07:49
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

I don't know how to put a picture I get this error message every time! : "It was not possible to determine the dimensions of the image. Please verify that the URL you entered is correct." I have a table "Produits" which contains 3 fields id_prod, fourni and prod I have a table "bondecommande" with a...
by brudy
2023-03-14 21:32
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

I just need one correct request and then I will understand the logic, I have posted two photos in the previous post

https://www.zen2cool.com/test3.png
https://www.zen2cool.com/test4.png
https://www.zen2cool.com/test5.png
thanks
by brudy
2023-03-14 21:08
Forum: Getting Started
Topic: Question about parent tables
Replies: 19
Views: 533

Re: Question about parent tables

yes I went on this page, the problem is precisely the SQL query ... I do not see how to build it to display the information I need