Highlight the command in side menu a/c to the current screen opened
There's a side menu in the app. How can I hightlight the command in the side menu as per the current screen? For example if the home screen is opened, when I open the drawer or side menu, the home command should be highlighted. If the user is in home2 screen, the home2 command should be highlighted when the drawer is opened.
Home screen
public final class Home extends Form {
public Home(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
Home2 screen
public final class HomeNew extends Form {
public HomeNew(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home2");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
SideMenu class
public class SideMenu {
public SideMenu(Form f, Resources res) {
FontImage homeIcon = FontImage.createMaterial(FontImage.MATERIAL_HOME, style, 3);
Command home = new Command(" Home", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new Home(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home);
Command home1 = new Command(" Home1", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new HomeNew(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home1);
Command home2 = new Command(" Home2", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
}
};
f.getToolbar().addCommandToSideMenu(home2);
}
}
codenameone
add a comment |
There's a side menu in the app. How can I hightlight the command in the side menu as per the current screen? For example if the home screen is opened, when I open the drawer or side menu, the home command should be highlighted. If the user is in home2 screen, the home2 command should be highlighted when the drawer is opened.
Home screen
public final class Home extends Form {
public Home(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
Home2 screen
public final class HomeNew extends Form {
public HomeNew(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home2");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
SideMenu class
public class SideMenu {
public SideMenu(Form f, Resources res) {
FontImage homeIcon = FontImage.createMaterial(FontImage.MATERIAL_HOME, style, 3);
Command home = new Command(" Home", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new Home(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home);
Command home1 = new Command(" Home1", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new HomeNew(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home1);
Command home2 = new Command(" Home2", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
}
};
f.getToolbar().addCommandToSideMenu(home2);
}
}
codenameone
add a comment |
There's a side menu in the app. How can I hightlight the command in the side menu as per the current screen? For example if the home screen is opened, when I open the drawer or side menu, the home command should be highlighted. If the user is in home2 screen, the home2 command should be highlighted when the drawer is opened.
Home screen
public final class Home extends Form {
public Home(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
Home2 screen
public final class HomeNew extends Form {
public HomeNew(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home2");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
SideMenu class
public class SideMenu {
public SideMenu(Form f, Resources res) {
FontImage homeIcon = FontImage.createMaterial(FontImage.MATERIAL_HOME, style, 3);
Command home = new Command(" Home", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new Home(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home);
Command home1 = new Command(" Home1", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new HomeNew(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home1);
Command home2 = new Command(" Home2", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
}
};
f.getToolbar().addCommandToSideMenu(home2);
}
}
codenameone
There's a side menu in the app. How can I hightlight the command in the side menu as per the current screen? For example if the home screen is opened, when I open the drawer or side menu, the home command should be highlighted. If the user is in home2 screen, the home2 command should be highlighted when the drawer is opened.
Home screen
public final class Home extends Form {
public Home(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
Home2 screen
public final class HomeNew extends Form {
public HomeNew(Resources res) {
super(new BorderLayout());
getToolbar().setTitle("Home2");
SideMenu sm = new SideMenu(HomeNew.this, res);
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
}
}
SideMenu class
public class SideMenu {
public SideMenu(Form f, Resources res) {
FontImage homeIcon = FontImage.createMaterial(FontImage.MATERIAL_HOME, style, 3);
Command home = new Command(" Home", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new Home(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home);
Command home1 = new Command(" Home1", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
new HomeNew(res).show();
}
};
f.getToolbar().addCommandToSideMenu(home1);
Command home2 = new Command(" Home2", homeIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
}
};
f.getToolbar().addCommandToSideMenu(home2);
}
}
codenameone
codenameone
edited Nov 19 '18 at 5:16
beck
asked Nov 19 '18 at 5:09
beckbeck
1,2871612
1,2871612
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I would recommend using padding in the styling instead of spaces in-front of the command names. It's unrelated to the question, just good practice.
The easy way is to do something like this:
if(home1IsTheCurrentCommand) {
home1.putClientProperty("uiid", "SideCommandSelected");
}
Then style SideCommandSelected
appropriately.
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
I see a potential issue insetIconGapMM
we'll push a fix for it in todays release
– Shai Almog
Nov 23 '18 at 5:00
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53368638%2fhighlight-the-command-in-side-menu-a-c-to-the-current-screen-opened%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would recommend using padding in the styling instead of spaces in-front of the command names. It's unrelated to the question, just good practice.
The easy way is to do something like this:
if(home1IsTheCurrentCommand) {
home1.putClientProperty("uiid", "SideCommandSelected");
}
Then style SideCommandSelected
appropriately.
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
I see a potential issue insetIconGapMM
we'll push a fix for it in todays release
– Shai Almog
Nov 23 '18 at 5:00
add a comment |
I would recommend using padding in the styling instead of spaces in-front of the command names. It's unrelated to the question, just good practice.
The easy way is to do something like this:
if(home1IsTheCurrentCommand) {
home1.putClientProperty("uiid", "SideCommandSelected");
}
Then style SideCommandSelected
appropriately.
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
I see a potential issue insetIconGapMM
we'll push a fix for it in todays release
– Shai Almog
Nov 23 '18 at 5:00
add a comment |
I would recommend using padding in the styling instead of spaces in-front of the command names. It's unrelated to the question, just good practice.
The easy way is to do something like this:
if(home1IsTheCurrentCommand) {
home1.putClientProperty("uiid", "SideCommandSelected");
}
Then style SideCommandSelected
appropriately.
I would recommend using padding in the styling instead of spaces in-front of the command names. It's unrelated to the question, just good practice.
The easy way is to do something like this:
if(home1IsTheCurrentCommand) {
home1.putClientProperty("uiid", "SideCommandSelected");
}
Then style SideCommandSelected
appropriately.
answered Nov 20 '18 at 5:20


Shai AlmogShai Almog
40.2k52555
40.2k52555
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
I see a potential issue insetIconGapMM
we'll push a fix for it in todays release
– Shai Almog
Nov 23 '18 at 5:00
add a comment |
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
I see a potential issue insetIconGapMM
we'll push a fix for it in todays release
– Shai Almog
Nov 23 '18 at 5:00
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
thanks I'll set the padding in real project.. This is just a test. It seems that command has no isTheCurrentCommand method. How can I apply it??
– beck
Nov 20 '18 at 9:26
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
That's something your application logic needs to determine. Say you invoke that method for every form you have. Then you would know that this is the current form and would be able to implement a boolean rule that indicates if this is the current form.
– Shai Almog
Nov 21 '18 at 5:18
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
Regarding the use of padding/margin intead of spaces of command names, how can I do that? home1.setIconGapMM(5) doesn't work. style.setMarginRight(5) or style.setPaddingRight(5) has no effect as well.
– beck
Nov 22 '18 at 11:50
1
1
I see a potential issue in
setIconGapMM
we'll push a fix for it in todays release– Shai Almog
Nov 23 '18 at 5:00
I see a potential issue in
setIconGapMM
we'll push a fix for it in todays release– Shai Almog
Nov 23 '18 at 5:00
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53368638%2fhighlight-the-command-in-side-menu-a-c-to-the-current-screen-opened%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown