Hi - I am trying to set the width of a radpane from javascript;
var splitter = $find("RadSplitter1");
var pane = splitter.GetPaneById("RadPane1");
var w = pane.GetWidth();
... but GetWidth() does not work as shown in the example above. Neither does SetWidth(200).
pane.Resize(400) works fine, as does pane.Collapse() and pane.Expand(pane).
But resize just adds to the current width. So to resize to exactly the width I need, I either need GetWidth() to work, or SetWidth() to work.
It must be simple right? What do you think?