Hi Everyone,
Good day..! I would like to ask some assistance on how to isolate the issue in Rad Window..
here's our code..
<table class="gridheader" cellpadding="0" cellspacing="0">
This code works fine for most of our users, except for 2 users.. For a temporary solutions, they've tried a different browser and it works fine.. I just want to know, how i can isolate kind this of issue..? Is this a browser issue..?
Hope you can share some ideas on how to resolve this issue..
Thanks,
Nestea
Good day..! I would like to ask some assistance on how to isolate the issue in Rad Window..
here's our code..
<
script language="javascript" type="text/javascript">
function AddCountry() {
var radWindow = window.radopen("CountryAddEdit.aspx?Action=Add&CountryID=0&CountryCode=", "radWindowAdd");
radWindow.SetTitle(
"<% Response.Write(GetResource("AddCountry", false)); %>");
return false;
}
</script>
<
telerik:RadWindowManager ID="radWindowManager"
runat="server"
AutoSize="false"
Behaviors="Close,Move"
DestroyOnClose="true"
EnableAjaxSkinRendering="false"
EnableViewState="true"
Height="175px"
Modal="true"
ReloadOnShow="true"
ShowContentDuringLoad="false"
VisibleOnPageLoad="false"
VisibleStatusbar="false"
Width="500px">
<Windows>
<telerik:RadWindow ID="radWindow" runat="server" />
</Windows>
</telerik:RadWindowManager>
<table class="gridheader" cellpadding="0" cellspacing="0">
<tr>
<th class="Tcenter">
<asp:LinkButton ID="lnkAddCountry" runat="server" CssClass="fugue fugue-plus clicklink" OnClientClick="javascript:AddCountry();return false;" ToolTip="<%$ Resources: AddNewCountry %>" Text="<%$ Resources: GlobalAppResources, AddNew %>" />
</th>
</tr>
</table>
This code works fine for most of our users, except for 2 users.. For a temporary solutions, they've tried a different browser and it works fine.. I just want to know, how i can isolate kind this of issue..? Is this a browser issue..?
Hope you can share some ideas on how to resolve this issue..
Thanks,
Nestea