};
RadMenu.prototype.RenderInProgress=function(){
return this.DomElement.offsetWidth==0&&RadControlsNamespace.Browser.IsIE;
};
a similar error in RadSplitter.js, line 27
_7.style.width=_8+"px";
var _9=_7.offsetWidth-_8;
var _a=_8-_9;
You can see my trial site live and the errors for yourself on
http://trial.fitnessmentor.co.nz
to replicate, go to the join tab, create yourself an account. it's free so ignore the credit card bit and just click join.
then go to the 'weekly schedule' option in the menu, and create then edit some workouts.
regards
ewart

| //walks over all elements with the specified tag name inside our grid |
| //does not require registration, but is a bit more complex |
| function GetGridServerElement(serverID, tagName) |
| { |
| if (!tagName) |
| tagName = "*"; //* means all elements |
| var grid = $get("<%=RadGrid1.ClientID %>"); |
| var elements = grid.getElementsByTagName(tagName); |
| for (var i = 0; i < elements.length; i++) |
| { |
| var element = elements[i]; |
| if (element.id.indexOf(serverID) >= 0) |
| return element; |
| } |
| } |
Having a problem dragging controls from the toolbox to either the design or source view. Dragging a control and dropping it on the page produces nothing but xml.
Here's a sample from pasting a textbox control:
<
soap-env:envelope soap-env:encodingstyle=http://schemas.xmlsoap.org/soap/encoding/
xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap-env:body>
How do I fix this?
Thanks
Jacques