<OBJECT codeBase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000 width=512> <param name='flashvars' value='file=http://122.165.16.58:91/CourseBuilder/Video/sample.flv' /><param name='movie' value='http://122.165.16.58:91/CourseBuilder/Video/player.swf' /><embed src='http://122.165.16.58:91/CourseBuilder/Video/player.swf' originalAttribute="src" originalPath='http://122.165.16.58:91/CourseBuilder/Video/player.swf' width='512' height='300' bgcolor='#FFFFFF' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' flashvars='file=http://122.165.16.58:91/CourseBuilder/Video/sample.flv' ></OBJECT>

Hi,
We are facing problem for column sorting in RadGrid. We are adding columns dynamically to grid. and values are set in Itemdata bound event.
can anyone help and provide suggestion on this? so that grid column sorting works on these dynamic generated columns once the data is loaded or bound in Itemdatabound.
Thanks
Hello Telerik!
I need your help urgently. I am stuck in this problem since 2 days. I have a Rad Window which is opened in javascript. This window is opened as maximized using oWnd.maximize();
This window's content .aspx page is having a RadTabStrip with RadMultiPageView. The width of RadMultiPage is set in Pixels.
When I restore the window and resize it , It should be showing the scroll bars as now the content of the window is beyond the size of the window. And this is what happens in FF and IE.. which is correct but I don't see any scrolls in the Chrome.
I have spent a lot of time in this issue and still not able to figure it out... Kindly help me with this problem... or is this a known Chrome issue as it works fine in FF and IE.
Regards,
Nick.
I have set the TargetFolder e.g.
TargetFolder="~/content"and it works fine except that i want the file names to be kind od hashed e.g. myfile.jpg to be saved as 8unfsKjfjskskdjf^7i.jpg
I have the HashFileName(string file) function but not quite sure where to apply it.
Thank you
Hi, I have a RadImageGallery with DisplayAreaMode="LightBox".
It's possible remove from LightBox the button "Maximize Image"?
Thanks in advanced.

I'm modernizing some really old code that used the old Rad toolkit. I found that the "argument" property is not persisting. I was able to change the window's close code around to pass the element in the close() function, but can't find a way to do this when opening the form. I'm using VS2013 with ASP.NET AJAX and Telerik.Web.UI v2015.3.930.45.
Please take a look and advise. I don't want to make a round-trip to the server for this. I also found that javascript globals do not persist between postbacks. So I can't use that sloppy method either. FYI - I keep the window open and the user may initiate a number of postbacks with an runat=server asp:button before I close it from the client side.
Javascript being called from a client-side radmenu click on the main page. "notesExist" is a string value.
function ShowNotesForm(id, notesExist) {
var oWnd = window.radopen("Dialogs/Notes.aspx?DocID=" + id, "NotesDialog");
oWnd.argument = notesExist;
}
Javascript within my Notes.aspx:
<telerik:RadScriptBlock runat="server">
<script type="text/javascript">
$(document).ready(function () {
alert(GetRadWindow().Argument);
});
</script>
</telerik:RadScriptBlock>
I've tried reading GetRadWindow().Argument in other sections like after a button-click on the client-side, but put it here to make it easy to replicate on your end.