[QGIS-Developer] Drag and drop form function QdateEdit Widget init

PIERRE Sylvain sylvain.pierre at alsace.eu
Fri Mar 25 01:58:24 PDT 2022


Hi Andeas,

Good tip !
I have to keep init script for good reason ;-). But I was not aware (not enough yet) of such possibilities. So for setting current date it’s pretty cool.
QGIS will still be amazing !

Thanks again

[cid:image009.jpg at 01D8402E.DD9E9320]
Sylvain PIERRE
Chef de projet système d’information
Direction des Systèmes d’Information et du Développement Numérique
Service Projets et Ingénierie Numérique
Collectivité européenne d’Alsace
Tél : 03 88 76 68 88
sylvain.pierre at alsace.eu<mailto:sylvain.pierre at alsace.eu>
www.alsace.eu<http://www.alsace.eu>
[facebook]<http://www.facebook.com/toutelalsace> [twitter] <http://www.twitter.com/toutelalsace>  [insta] <http://www.instagram.com/toutelalsace>

De : Andreas Neumann <a.neumann at carto.net>
Envoyé : vendredi 25 mars 2022 09:28
À : Denis Rouzaud <denis.rouzaud at gmail.com>
Cc : PIERRE Sylvain <sylvain.pierre at alsace.eu>; qgis-developer at lists.osgeo.org
Objet : Re: [QGIS-Developer] Drag and drop form function QdateEdit Widget init

Soyez vigilant : ce courriel provient d'une organisation externe à la CeA.
• Assurez-vous d’abord qu’il ne s’agit pas d’un email malveillant avant de cliquer sur tout lien ou pièce jointe.
Apprendre à reconnaître un email de phishing.<https://intranet.alsace.eu/actualites/apprenez-a-reconnaitre-un-email-phishing/>

Hi Pierre,

Not sure if you are aware that recent QGIS releases also have very good "default" value support without having to use Python. You can simply set default values with QGIS expressions. No need for Python code (unless you do something really special).

You can even set date values dependent on other widgets without having to use Python scripting - and do updates whenever something changes on the record, without having to fall back to Python scripting.

Just wanted to make sure you are aware of this alternative mechanism. There might still be good reasons for using Python scripting though - but theses cases are now rarer.

Greetings,

Andreas

On 2022-03-25 09:17, Denis Rouzaud via QGIS-Developer wrote:
QgsDateTimeEdit implements setDateTime, which is not virtual in QDateTimeEdit.
It's probably that you have to find a QDateTimeEdit rather than the Qt native one.

Not 100% sure this is the issue though, but it won't hurt.

Le ven. 25 mars 2022 à 09:11, PIERRE Sylvain via QGIS-Developer <qgis-developer at lists.osgeo.org<mailto:qgis-developer at lists.osgeo.org>> a écrit :

Thanks for tip Richard, but I've tried with
            today = QtCore.QDateTime.currentDateTime()
But it's not working




-----Message d'origine-----
De : Richard Duivenvoorde <rdmailings at duif.net<mailto:rdmailings at duif.net>>
Envoyé : vendredi 25 mars 2022 08:50
À : PIERRE Sylvain <sylvain.pierre at alsace.eu<mailto:sylvain.pierre at alsace.eu>>; qgis-developer at lists.osgeo.org<mailto:qgis-developer at lists.osgeo.org>
Objet : Re: [QGIS-Developer] Drag and drop form function QdateEdit Widget init

Soyez vigilant : ce courriel provient d'une organisation externe à la CeA.
• Assurez-vous d'abord qu'il ne s'agit pas d'un email malveillant avant de cliquer sur tout lien ou pièce jointe.
==================================================

On 3/25/22 08:33, PIERRE Sylvain via QGIS-Developer wrote:

> But this is not working with QDateEdit widget :
>
> today=date.today()
>
> control=dialog.findChild(QDateEdit,"date_insert")
>
> control.setDateTime(today)
>
> What is the right syntax to init the date widget ? It's impossible to debug init script (or may be I'm missing something...)

Hi,

Which module is 'date.today()' from, not Qt is it?

You probably have to use the QDatetime: https://doc.qt.io/qt-5/qdatetime.html#currentDateTime

>>> QDateTime.currentDateTime()
PyQt5.QtCore.QDateTime(2022, 3, 25, 8, 44, 19, 963)

And set THAT with the widget?

See: https://doc.qt.io/qt-5/qdatetimeedit.html#dateTime-prop

(it always a little hassle to juggle with date/time etc in Python/Qt)

Regards,

Richard Duivenvoorde
_______________________________________________
QGIS-Developer mailing list
QGIS-Developer at lists.osgeo.org<mailto:QGIS-Developer at lists.osgeo.org>
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

_______________________________________________
QGIS-Developer mailing list
QGIS-Developer at lists.osgeo.org<mailto:QGIS-Developer at lists.osgeo.org>
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20220325/3d92b257/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image009.jpg
Type: image/jpeg
Size: 8103 bytes
Desc: image009.jpg
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20220325/3d92b257/attachment-0001.jpg>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image010.png
Type: image/png
Size: 827 bytes
Desc: image010.png
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20220325/3d92b257/attachment-0003.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image011.png
Type: image/png
Size: 853 bytes
Desc: image011.png
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20220325/3d92b257/attachment-0004.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image012.png
Type: image/png
Size: 1038 bytes
Desc: image012.png
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20220325/3d92b257/attachment-0005.png>


More information about the QGIS-Developer mailing list