Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFE about UIFragment #2743

Closed
jsfan3 opened this issue Mar 20, 2019 · 2 comments
Closed

RFE about UIFragment #2743

jsfan3 opened this issue Mar 20, 2019 · 2 comments
Assignees
Milestone

Comments

@jsfan3
Copy link
Contributor

jsfan3 commented Mar 20, 2019

I've just read your blog post: https://www.codenameone.com/blog/introduction-to-uifragment.html

Yes, you're right: sometimes the amount of work to creare an UI is frustrating and reading the Java code is not intuitive when the UI is not trivial. Your new approch seems very interesting.

I would like to ask you to evaluate this RFE: is it possible to automatically set the name of each Component equal to its placeholder name?

This is your first example in the blog post:

Form f = new Form("Test Form", new BorderLayout());
f.add(
    BorderLayout.CENTER,
    UIFragment.parseJSON("{s:{n:{flow:[$myTextField], align:right}, s:$submitButton}}")
        .set("myTextField", new TextField())
        .set("submitButton", new Button("Submit"))
        .getView()
);
f.show();

I mean that this code could do .setName("myTextField") and .setName("submitButton") automatically. In this case, the name of the Components will be different from the placeholders only if .setName() is added manually.

The advantage of this RFE is the use of the "Component Inspector" of the Simulator, that sometimes is very hard to use when there are a lot of unnamed Components.

@codenameone codenameone added this to the Version 7.0 milestone Mar 20, 2019
shannah added a commit that referenced this issue Mar 20, 2019
…s to the Component name to make it easier to inspect the UIs in the Simulator's component inspector.

Also changed so that UIFragment.set(name, cmp) will set the name on cmp if it doesn't already have a name set.  This will also assist in UI inspection in the simulator.
#2743
@shannah
Copy link
Collaborator

shannah commented Mar 20, 2019

Good idea. I have added this feature as you have described it. I.e. set("submitButton", new Button("Submit")) will call setName("submitButton") on the button if the button doesn't already have a name set.

I have also added support for the name attribute in the JSON and XML notation so that you can set the name on containers in the fragment also.

e.g.

UIFragment.parseJSON("{name: 'OuterBorder', s:{n:{flow:[$myTextField], align:right, name:TextWrapper}, s:$submitButton}}")
        .set("myTextField", new TextField())
        .set("submitButton", new Button("Submit"))
        .getView()

In that example, the root view will have name "OuterBorder", and the nested FlowLayout container will have name "TextWrapper". The new TextField() will have name "myTextField", and new Button("Submit") will have name "submitButton".

@shannah shannah closed this as completed Mar 20, 2019
@jsfan3
Copy link
Contributor Author

jsfan3 commented Mar 20, 2019

Thank you very much!

Can I suggest to update the blog article? :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants