or
<img src="picture.jpg" height="250" width="250" /><img src="picture.jpg?height=250&width=250" height="250" width="250" />currentGrid.ClientSettings.ClientEvents.OnScroll =
"Scroll";
currentGrid.ClientSettings.Scrolling.UseStaticHeaders =
true;
currentGrid.ClientSettings.Scrolling.FrozenColumnsCount = 2;
Thanks,
Sean
function onClientFileUploaded(radAsyncUpload, args) { var row = args.get_row(), inputName = radAsyncUpload.getAdditionalFieldID("objName"), inputID = inputName, input = createSelect(inputID, inputName), label = createLabel(inputID), br = document.createElement( "br" ); row.appendChild( br ); row.appendChild( label ); row.appendChild( input );}function createSelect(inputID, inputName) { var input = "<select id='" + inputID + "' name='" + inputName + "'><option value='Volvo'>Volvo</option><option value='Ford'>Ford</option><option value='SAAB'>SAAB</option><option value='Toyota'>Toyota</option><option value='BMW'>BMW</option><option value='OTHERS'>OTHERS</option></select>"; return input;} function createLabel(forArrt) { var label = document.createElement( "label" ); label.setAttribute( "for", forArrt ); label.innerHTML = "Select a value: "; return label;}'Do not workPublic class XYZ Public Property Status as StatusEnumEnd ClassPublic Enum StatusEnum as Integer Enabled = 0 Disabled = 1End Enum'WorkPublic class XYZ Public Property Status as IntegerEnd ClassWe have multiple RadComboBoxes within a Microsoft AJAX UpdatePanel that lies within another Microsoft AJAX UpdatePanel.
Only with this configuration, we are seeing some javascript exceptions.
I’ve attached a screenshot of the exact exception and a clip of the stack trace.
This only occurs when one of the RadComboBoxes has their selected index changed and that causes a PostBack.
Also, this only seems to occur in IE10.
Can you possibly help shed some light on what may be the problem here? We are using Telerik version 2013.1.417.40.

function AmountCalculation(Grid, Quantity, PricePerUnit, Amount, subtoal) { debugger; var Grid = $find(Grid); var Quantity = $find(Quantity).get_value(); var PricePerUnit = $find(PricePerUnit).get_value(); var Amount = $find(Amount); var subtotal = $find(subtoal); Amount.set_value(Quantity * PricePerUnit); for (j = 1; j <= Grid.MasterTableView.length; j++) { if (Quantity.value != "") { subtotal.set_value = Amount; } } }