or
<tel:RadComboBox ID="rcbFileNo" runat="server" Skin="Web20" Width="80px" AutoPostBack="True" AllowCustomText="True" MarkFirstMatch="True" EnableLoadOnDemand="True" EnableItemCaching="True" ShowMoreResultsBox="True" OnClientItemsRequesting="OnClientItemsRequesting" EmptyMessage="رقم الملف" OnSelectedIndexChanged="rcbFileNo_SelectedIndexChanged" meta:resourcekey="rcbFileNoResource1"> <WebServiceSettings Method="SearchFileNo" Path="~/Services/asmx/Search.asmx" /> </tel:RadComboBox> <asp:ObjectDataSource ID="odsGetFileNosList" runat="server" SelectMethod="GetFileNosList" TypeName="SMASIP.DataAccess.DBA.SMASServicesOldDB.LookupsServices"></asp:ObjectDataSource>using System.Collections;using System.Web.Services;using System.Data.SqlClient;using SMASIP.WebApplication.Base;using SMASIP.DataAccess.DAL;using Telerik.Web.UI;using System.Web.Script.Services;[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)][ScriptService]public class WebService : System.Web.Services.WebService{ SqlParameterCollection par = null; public WebService() { //Uncomment the following line if using designed components //InitializeComponent(); } [WebMethod(EnableSession = true)] public IEnumerable SearchFileNo(RadComboBoxContext context) { par = new SqlCommand().Parameters; par.AddWithValue("@SearchPar", context.Text); par.AddWithValue("@cmd", "GetFileNosList"); return DataProcess.GetIEnumerableList(Abstract.getDataTable("p_OldSMASIPServicesProcedure", par)); } [WebMethod(EnableSession = true)] public IEnumerable SearchClassNo(RadComboBoxContext context) { par = new SqlCommand().Parameters; par.AddWithValue("@SearchPar", context.Text); par.AddWithValue("@cmd", "SearchClassNo"); return DataProcess.GetIEnumerableList(Abstract.getDataTable("p_OldSMASIPServicesProcedure", par)); }}Hello.
I’m trying to use a radTabStrip in a webpage but I’m having a problem with the css sprites.
I used the Vista skin as my baseline and I edited in Photoshop the file TabStripStates.png.
All works fine in IE8, Firefox and Chrome, but I can’t make the sprites appear in IE6 and 7, only the text remains visible.
In my webpage I have the following code:
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" SkinID="tabStripStandard" MultiPageID="multiPageFiltroUtilizadores" SelectedIndex="0"> <Tabs> <telerik:RadTab runat="server" Text="Pesquisa Simples" ID="tabFiltroUtilizadoresTabSimples" PageViewID="PageViewPesquisaSimples" meta:resourcekey="txt_pesquisa_simples" Selected="True"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Pesquisa Avançada" ID="tabFiltroUtilizadoresTabAvancada" PageViewID="PageViewPesquisaAvancada" meta:resourcekey="txt_pesquisa_avancada"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> And in the skin file i have th following:
<telerik:RadTabStrip runat="server" EnableEmbeddedSkins="false" Skin="customTabStrip" SkinID="tabStripStandard"/>I didn’t altered the skin file, I only edited the TabStripeStates.png.
Could you provide me some help?
Thanks in advance