custom property event input() value not displaying
Below is my parent component code. I am trying to get the data from
the customebinding component to app component. But i am unable to get
the values from the parent component. My parent component is
customebinding and child component is appcomponent.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-customebinding',
templateUrl: './customebinding.component.html',
styleUrls: ['./customebinding.component.scss']
})
export class CustomebindingComponent implements OnInit {
name="ramu";
constructor() { }
ngOnInit() {
}
}
html code is
<app-root [recieveName]="name"></app-root>
and below is my child component.
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
@Input() recieveName:string;
}
html code is
recieve name is {{ recieveName }}
Can any body tell me where is the mistake.
angular
add a comment |
Below is my parent component code. I am trying to get the data from
the customebinding component to app component. But i am unable to get
the values from the parent component. My parent component is
customebinding and child component is appcomponent.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-customebinding',
templateUrl: './customebinding.component.html',
styleUrls: ['./customebinding.component.scss']
})
export class CustomebindingComponent implements OnInit {
name="ramu";
constructor() { }
ngOnInit() {
}
}
html code is
<app-root [recieveName]="name"></app-root>
and below is my child component.
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
@Input() recieveName:string;
}
html code is
recieve name is {{ recieveName }}
Can any body tell me where is the mistake.
angular
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
not getting any error in console
– ramu
Nov 12 at 12:35
add a comment |
Below is my parent component code. I am trying to get the data from
the customebinding component to app component. But i am unable to get
the values from the parent component. My parent component is
customebinding and child component is appcomponent.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-customebinding',
templateUrl: './customebinding.component.html',
styleUrls: ['./customebinding.component.scss']
})
export class CustomebindingComponent implements OnInit {
name="ramu";
constructor() { }
ngOnInit() {
}
}
html code is
<app-root [recieveName]="name"></app-root>
and below is my child component.
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
@Input() recieveName:string;
}
html code is
recieve name is {{ recieveName }}
Can any body tell me where is the mistake.
angular
Below is my parent component code. I am trying to get the data from
the customebinding component to app component. But i am unable to get
the values from the parent component. My parent component is
customebinding and child component is appcomponent.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-customebinding',
templateUrl: './customebinding.component.html',
styleUrls: ['./customebinding.component.scss']
})
export class CustomebindingComponent implements OnInit {
name="ramu";
constructor() { }
ngOnInit() {
}
}
html code is
<app-root [recieveName]="name"></app-root>
and below is my child component.
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
@Input() recieveName:string;
}
html code is
recieve name is {{ recieveName }}
Can any body tell me where is the mistake.
angular
angular
asked Nov 12 at 12:27
ramu
328114
328114
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
not getting any error in console
– ramu
Nov 12 at 12:35
add a comment |
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
not getting any error in console
– ramu
Nov 12 at 12:35
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
not getting any error in console
– ramu
Nov 12 at 12:35
not getting any error in console
– ramu
Nov 12 at 12:35
add a comment |
2 Answers
2
active
oldest
votes
Your AppComponent
cannot be you child component if you are bootstrapping your AppComponent
try to swap the child and parent relationships and bind the @Input()
property
Hope this helps - Happy coding :)
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
add a comment |
App-root component needs to be root as it says. So this should be top level component. Everything goes inside that component and not the other way around.
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
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%2f53262209%2fcustom-property-event-input-value-not-displaying%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your AppComponent
cannot be you child component if you are bootstrapping your AppComponent
try to swap the child and parent relationships and bind the @Input()
property
Hope this helps - Happy coding :)
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
add a comment |
Your AppComponent
cannot be you child component if you are bootstrapping your AppComponent
try to swap the child and parent relationships and bind the @Input()
property
Hope this helps - Happy coding :)
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
add a comment |
Your AppComponent
cannot be you child component if you are bootstrapping your AppComponent
try to swap the child and parent relationships and bind the @Input()
property
Hope this helps - Happy coding :)
Your AppComponent
cannot be you child component if you are bootstrapping your AppComponent
try to swap the child and parent relationships and bind the @Input()
property
Hope this helps - Happy coding :)
answered Nov 12 at 12:31
Rahul
9631315
9631315
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
add a comment |
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Yes i have swap the components, its working fine.
– ramu
Nov 12 at 13:25
Good - happy coding :)
– Rahul
Nov 12 at 13:34
Good - happy coding :)
– Rahul
Nov 12 at 13:34
add a comment |
App-root component needs to be root as it says. So this should be top level component. Everything goes inside that component and not the other way around.
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
add a comment |
App-root component needs to be root as it says. So this should be top level component. Everything goes inside that component and not the other way around.
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
add a comment |
App-root component needs to be root as it says. So this should be top level component. Everything goes inside that component and not the other way around.
App-root component needs to be root as it says. So this should be top level component. Everything goes inside that component and not the other way around.
answered Nov 12 at 13:16
Slobodan Gajić
104110
104110
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
add a comment |
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
Exactly, i understand the issue thanku
– ramu
Nov 12 at 13:25
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53262209%2fcustom-property-event-input-value-not-displaying%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
is there any error in console?
– Sarthak Aggarwal
Nov 12 at 12:31
not getting any error in console
– ramu
Nov 12 at 12:35