Add an option to support the automatic repetition of the video.
Hi,
This request is declined due to the lack of interest by the community.
Regards,
Vessy
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
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!