<%
@ Page Language="vb" AutoEventWireup="false" CodeBehind="prb1.aspx.vb" Inherits="ServisistemasAra.FoxisWeb.Web.prb1" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml" >
<
head runat="server">
<title></title>
</
head>
<
body style="padding:5px;">
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<telerik:RadComboBox ID="CboA¤o" Runat="server" Skin="Vista" Width="90px"
meta:resourcekey="RadComboBox2Resource1">
<Items>
<telerik:RadComboBoxItem runat="server" Text="1"
Value="1" />
<telerik:RadComboBoxItem runat="server" Text="2"
Value="2" />
<telerik:RadComboBoxItem runat="server" Text="3"
Value="3" />
<telerik:RadComboBoxItem runat="server" Text="4"
Value="4" />
<telerik:RadComboBoxItem runat="server" Text="5"
Value="5" />
<telerik:RadComboBoxItem runat="server" Text="6"
Value="6" />
<telerik:RadComboBoxItem runat="server" Text="7"
Value="7" />
<telerik:RadComboBoxItem runat="server" Text="8"
Value="8" />
<telerik:RadComboBoxItem runat="server" Text="9"
Value="9" />
</Items>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</telerik:RadComboBox>
</div>
</form>
</
body>
</
html>
Excuseme by the english
Alex
Today we installed the latest build of RadControls for ASP.NET AJAX 2008.31105 and came across an issue with the Editor’s tool images in IE 7.0. The images appear to be very fuzzy or stretched. The odd thing about this issue is it’s completely random which image has the problem. For example if there are four tool images only one might be fuzzy or sometimes two of four or they are all look good. We have tried deleting temporary internet files and changing the temporary internet files setting with no luck. Any ideas what might be causing it?
We have also tested it in Firefox 3.0.6 without a problem. The images are fine.
| <telerik:RadEditor ID="rerToolTip" runat="server" EditModes="Design" Height="120px" Width="400px" ToolbarMode="Default"> |
| <Tools> |
| <telerik:EditorToolGroup> |
| <telerik:EditorTool Name="AjaxSpellCheck" /> |
| </telerik:EditorToolGroup> |
| </Tools> |
| </telerik:RadEditor> |
radGridClientDetails_ItemCommand
{
// GridA is ItemCommand event, the event is getting fired properly and I am able to debug all the code blocks
if(e.CommandName == "RowClick")
{
// Gets the selected clientDbId from GridA's selected row
selectedClientDbId =
Convert.ToInt32(this.radGridClientDetails.SelectedValue.ToString());
// Generates the new datasource based on the dbId
_generateOutputDataFinderService.GetReportSpecDetails(clientDatabaseID);
// Assigining it to the GridB datasource
this.radGridReportDetails.DataSource = value;
}
}
.ASPX:
<
asp:Content>
<
telerik:RadAjaxPanel>
<telerik:radgrid id="radGridA">
</telerik:radgrid>
</telerik:RadAjaxPanel>
<telerik:RadAjaxPanel>
<telerik:radgrid id="radGridB">
</telerik:radgrid>
</telerik:RadAjaxPanel>
-- No <asp:ObjectDataSource>
</
asp:Content>
Please let me know where I am missing something in order to show the data in the GridB radGrid... Thanks a lot for your support..
Thanks,
Selva
| <PagerTemplate> |
| <div style="float: right"> |
| <asp:ImageButton ID="ibtnFirst" runat="server" CommandName="Page" ImageUrl="~/images/first.gif" CommandArgument="First" CssClass="FirstPage" /> |
| <asp:ImageButton ID="ibtnPrev" runat="server" CommandName="Page" ImageUrl="~/images/prev.gif" CommandArgument="Prev" CssClass="PrevPage" /> |
| <asp:ImageButton ID="ibtnNext" runat="server" CommandName="Page" ImageUrl="~/images/next.gif" CommandArgument="Next" CssClass="NextPage" /> |
| <asp:ImageButton ID="ibtnLast" runat="server" CommandName="Page" ImageUrl="~/images/last.gif" CommandArgument="Last" CssClass="LastPage" /> |
| </div> |
| </PagerTemplate> |