Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
214 views
How to I make the RadGrid popup editform non-draggable?
Shinu
Top achievements
Rank 2
 answered on 14 Mar 2011
7 answers
291 views
Hi all,

In the Media Manager config, I added the *.mov extension but when users add a mov file the player is Windows Media Player which can't play mov files.

How can I configure Telerik to use quicktime when the media is a .mov file ?

mhmoud
Top achievements
Rank 1
 answered on 13 Mar 2011
1 answer
122 views
Hello

I have a RadTextBox that after it get's populated with "Tuff Stuff™ Sky Blue Rectangular Carpet - 6` x 9`" value breaks future AJAX requests. The error is Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500. 

Obviously it's that certain value that causes the problem. Using HtmlEncode on it fixes the problem however I'd like to get the text displayed as-in. I also don't need it edited, it's just read-only.

Any tips?

Regards
Mihai
Mihai Dinculescu
Top achievements
Rank 1
 answered on 13 Mar 2011
4 answers
109 views
Hi guys.

I have a problem with Image and Document managers.

  1. If set ViewPaths property to not exists folder - see screenshot1
  2. If set ViewPaths property to exists folder but this folder is empty - see screenshot2

When copy some file to this folder - everything looks fine.

Thanks in advance. 

Regards,
Ernesto.
Robert Stordeur
Top achievements
Rank 1
 answered on 12 Mar 2011
2 answers
258 views
I have a radtreelist where I expose my webpage hierarchie. When I select a pageitem  in the tree i will be navigated to a webpage where I can edit this pageitem. After saving the changes I will be navigated back to my the with the radtreelist. What I want is to expand the treeitem I have just edited. So actually restoring the collapse-view like it was before I was navigated to the editpage.

How can I retrieve the dataitem in the treeview basewd on the DataKeyName.

Does anybody has an example how to accomplish this.

Thanks

Patrick
Patrick
Top achievements
Rank 1
 answered on 12 Mar 2011
1 answer
62 views
We have 2009-Q2 version.  The progress bar is not showing at all when using the upload control in IE9.  It works fine in IE8 and other browswers.  Any body else had this problem?  Thanks.
Mark
Top achievements
Rank 1
 answered on 12 Mar 2011
3 answers
101 views
I've been looking at the properties but I can't seem to figure out how to get the menu to behave as it does on Telerik's site, most likely the top of the page you're looking at now.  The menu with Products and Solutions.  When one is active the others don't show and they stay there until someone clicks out.  Is this custom code?  Any help would be greatly appreciated.

Thank you.
Kate
Telerik team
 answered on 12 Mar 2011
1 answer
174 views
Dear Expert,

Please i used ComboBox with services ,in my local machine its work fine also when i publish it to IIS7 .

now when i put the site one the server and access it the services not working and give me The Server Method " " Failed.

Please Help

Best Regards 
Ab Abulubbad
My code IS :
<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));
    }
}
Dimitar Terziev
Telerik team
 answered on 12 Mar 2011
1 answer
133 views

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

Kate
Telerik team
 answered on 12 Mar 2011
3 answers
91 views
Hi all,
it's possible to customize some labels or text on the reminder popup form. I'd like to translate some button text from english to italian.
Thank's
Danilo
Veronica
Telerik team
 answered on 12 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?