Add an option to support the automatic repetition of the video.
Hi Neelima,
The upcoming RadMediaPlayer release will include a new boolean property, Loop, which enables automatic video replay.
Regards,
Rumen
Progress Telerik
I just noticed that the method name is misspelled, it should be 'OnClientEnded'. Can you please check if you have it spelled correct or not. Thanks.
Hi I dont know why, but it seems that OnClinetEnded is not firing, is there any trick I should consider?
Was able to make it work in Asp.Net with the following javascript on 'OnClientEnded' event of RadMediaPlayer
1. Set the ClientIDMode of radmediaplayer to 'Static'
2. Call the javascript function OnClientEnded event by setting, OnClinetEnded="rdpVideo_Ended"
2. In the javascript function, find the radmediaplayer by its ID and call play() function on it.
function rdpVideo_Ended(sender, args) {
$find('rdpVideo').play();
}
It would be handy if there is an in-built property to automatically repeat the video.
Thanks!