Azzera filtri
Azzera filtri

Uidatepicker in app designer

5 visualizzazioni (ultimi 30 giorni)
Ricardo Pedó
Ricardo Pedó il 20 Apr 2018
Commentato: Arshad Ilahi il 3 Dic 2019
Is there any way to place a uidatepicker element inside an existing app designer panel? The samples I've seen only show how to do that creating a new figure...
  7 Commenti
Ricardo Pedó
Ricardo Pedó il 13 Ago 2018
Great :)
Arshad Ilahi
Arshad Ilahi il 3 Dic 2019
Hello Eker,
Can you share what you did for placeing a uidatepicker element inside an existing app designer panel?

Accedi per commentare.

Risposte (5)

Chris Portal
Chris Portal il 21 Apr 2018
Modificato: per isakson il 21 Apr 2018

You can pass the panel’s handle as the parent for the uidatepicker. The syntax is described here:

https://www.mathworks.com/help/matlab/ref/uidatepicker.html


Ricardo Pedó
Ricardo Pedó il 21 Apr 2018
Modificato: per isakson il 21 Apr 2018

Thank you Chris. I've already read that link, but I couldn't undestand how to use panel as an object. May you show me an example? In my code I have app.Panel inside a TabGroup. I tried something like the example below, but it didn't work:

uidatepicker(app.Panel,'DisplayFormat','dd-MM-yyyy');
  1 Commento
Chris Portal
Chris Portal il 21 Apr 2018
Hmm, that’s what you need to do. What is the error you’re getting?

Accedi per commentare.


Ricardo Pedó
Ricardo Pedó il 21 Apr 2018
Doing that way I don't get error message, but datapicker element don't show up in the panel...
  1 Commento
Chris Portal
Chris Portal il 21 Apr 2018
If you instead parent a button to the panel at the same line of code, does the button show up?

Accedi per commentare.


Ricardo Pedó
Ricardo Pedó il 21 Apr 2018
No, now I got this error: Error using uidatepicker (line 44) Button cannot be a parent.
  1 Commento
Chris Portal
Chris Portal il 21 Apr 2018
Modificato: per isakson il 21 Apr 2018

Sorry, I meant comment out your date picker line of code, and add this line of code:

b = uibutton(app.Panel);

Does the button show up in the panel? This will determine whether the issue is with date picker specifically or something else.

Accedi per commentare.


Ricardo Pedó
Ricardo Pedó il 21 Apr 2018
Ahh now I got your idea. Yes, the button shows up. Seems to be something related to the date picker...
  2 Commenti
Chris Portal
Chris Portal il 21 Apr 2018
Modificato: per isakson il 21 Apr 2018

Thanks. It looks to be a positioning bug specific to date picker. You can work around it by doing the following:

p = uidatepicker(app.Panel, ‘DisplayFormat’, ‘dd-MM-yyyy’);
p.Position(1:2) = [0 0];

I’ll report the bug for you. Thank you!

Ricardo Pedó
Ricardo Pedó il 21 Apr 2018
Yeah, that's the bug! It worked... Thank you Chris!!

Accedi per commentare.

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by