You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a ns angular application in which I show a RadListView of cards with a player.
When I insert the VideoId by hand I have no problems ... it loads all cards and players. <GridLayout id="VideoContainer" rows="230" columns="*" > <YoutubePlayer row="0" videoId="FCgxn8CuKb0" heigth="230" showinfo="0"></YoutubePlayer> </GridLayout>
But if I try to bind the value of VideoId it loads the player but with the error An error occurred. Please try again later. (Playback ID: xxxxxxxxxxxx) <GridLayout id="VideoContainer" rows="230" columns="*" > <YoutubePlayer row="0" videoId="{{item.url_video}}" heigth="230" showinfo="0"></YoutubePlayer> </GridLayout>
With a quick check I noticed that the html structure correctly reports the videoId values.
Did I miss something?
The text was updated successfully, but these errors were encountered:
I have a ns angular application in which I show a RadListView of cards with a player.
When I insert the VideoId by hand I have no problems ... it loads all cards and players.
<GridLayout id="VideoContainer" rows="230" columns="*" > <YoutubePlayer row="0" videoId="FCgxn8CuKb0" heigth="230" showinfo="0"></YoutubePlayer> </GridLayout>
But if I try to bind the value of VideoId it loads the player but with the error An error occurred. Please try again later. (Playback ID: xxxxxxxxxxxx)
<GridLayout id="VideoContainer" rows="230" columns="*" > <YoutubePlayer row="0" videoId="{{item.url_video}}" heigth="230" showinfo="0"></YoutubePlayer> </GridLayout>
With a quick check I noticed that the html structure correctly reports the videoId values.
Did I miss something?
The text was updated successfully, but these errors were encountered: