Hi
Picture included
I am using the version 2010.3.1304.1040 ( can't use the newest version 2010.3.1314.1040 because there is a bug with the RadDomainDataSource which i am going to report soon).
if i run with IE 8, then i always get the problem "out boundary of the radwindow as u can see on the picture". But the no problem when i run on firefox or chrome. However, most of my clients will use IE so i need to find a way to fix this problem
Note: about the bug of the newest version for the RadDomainDataSource. It failed basic scene about loading. I want to have a radcombobox & radgridview. Basically, when the selection changed event of the radcombobox fired , the radgridview will use the radcombobox.selectedValue as a parameter for its query parameter to call a domainService to retrieve the new data for the radgridview. It works fine in the old version but not for the official release one
this is the code of my default.html ( i did follow ur instruction on the help website)
<
head
>
<
title
>SilverFinancials</
title
>
<
style
type
=
"text/css"
>
html, body
{
height: 100%;
}
body
{
overflow:auto;
padding: 0;
margin: 0;
}
#silverlightControlHost
{
height: 100%;
text-align: center;
}
</
style
>
<
script
type
=
"text/javascript"
src
=
"Silverlight.js"
></
script
>
<
script
type
=
"text/javascript"
>
function onSilverlightError(sender, args) {
var appSource = "";
if (sender != null && sender != 0) {
appSource = sender.getHost().Source;
}
var errorType = args.ErrorType;
var iErrorCode = args.ErrorCode;
if (errorType == "ImageError" || errorType == "MediaError") {
return;
}
var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n";
errMsg += "Code: " + iErrorCode + " \n";
errMsg += "Category: " + errorType + " \n";
errMsg += "Message: " + args.ErrorMessage + " \n";
if (errorType == "ParserError") {
errMsg += "File: " + args.xamlFile + " \n";
errMsg += "Line: " + args.lineNumber + " \n";
errMsg += "Position: " + args.charPosition + " \n";
}
else if (errorType == "RuntimeError") {
if (args.lineNumber != 0) {
errMsg += "Line: " + args.lineNumber + " \n";
errMsg += "Position: " + args.charPosition + " \n";
}
errMsg += "MethodName: " + args.methodName + " \n";
}
throw new Error(errMsg);
}
</
script
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
style
=
"height: 100%"
>
<
div
id
=
"silverlightControlHost"
>
<
object
data
=
"data:application/x-silverlight-2,"
type
=
"application/x-silverlight-2"
width
=
"100%"
height
=
"100%"
>
<
param
name
=
"source"
value
=
"ClientBin/SilverFinancials.xap"
/>
<
param
name
=
"onError"
value
=
"onSilverlightError"
/>
<
param
name
=
"background"
value
=
"white"
/>
<
param
name
=
"windowless"
value
=
"true"
/>
<
param
name
=
"minRuntimeVersion"
value
=
"4.0.50401.0"
/>
<
param
name
=
"autoUpgrade"
value
=
"true"
/>
style
=
"border-style: none"
/>
</
a
>
</
object
>
<
iframe
id
=
"_sl_historyFrame"
style="visibility: hidden; height: 0px; width: 0px;
border: 0px"></
iframe
>
</
div
>
</
form
>
</
body
>
</
html
>
this is the code for my RadHTMLPlaceHolder
This is my code behind
Finally, this is the code to show the radwindow which contains the placeholder