Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
83 views
Hi ,

I have written a code as :

 <telerik:RadTextBox ID="txtCustomerName" runat="server" EmptyMessage="Please enter customer name"
                            CssClass="SetText" ToolTip="Please enter customer name" EnableSingleInputRendering="True"
                            MaxLength="20" Width="130" TabIndex="2">

So when i click on submit button in Opera browser a popup message shows as " The entered text is too large! You used 26 letters and the limit is 20."

How to resolve this issue.
Vasil
Telerik team
 answered on 07 Dec 2012
11 answers
514 views
Hi,
I have a Tree View with node template column.Inside of template column I have Image Button.

Problem:
I need to open a radwindow on click of Image button and it will open fine except for one scenario.

This issue is happening for only in page load.
When Initial page load if we have a subnode for  a particular node.When we expand and click on image button in subnode radwindow is not opening.
Only for the first click Radwindow is not opening from second time onwards it works fine.

Please help me.

Thanks,
A2H

Slav
Telerik team
 answered on 07 Dec 2012
2 answers
140 views
Hi;

I just upgraded from Q3 to Q3 SP1 via Telerik Control Panel and in VS10 when I build & run, I get error in browsers with different errors. I'm attaching screen shots.
If I revert back to my backup as of last night, it works with no problem. Something in the new built causes the runtime to crash.
I'm running on Vista32 and VS10

If I can provide more info, I'll be happy to.
Please let me know.

Thanks!
..Ben
Ben Hayat
Top achievements
Rank 2
 answered on 07 Dec 2012
1 answer
102 views
Hi,

How to install Asp.net Ajax software. can you please tell me where can i find trial version of it.
And the procedure to install the software .

Thanks,
Vimal
Dyanko
Telerik team
 answered on 07 Dec 2012
1 answer
75 views
Hi Everyone,

    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    
 
Marin Bratanov
Telerik team
 answered on 07 Dec 2012
0 answers
62 views
HI,
I'm using this version (Telerik.Web.UI_2012_2_724_Dev_hotfix),

I have a problem with RadmaskedTextbox.



July
Top achievements
Rank 2
 asked on 07 Dec 2012
6 answers
511 views
What I want is to use the user decimal separator but even if I defined no specific value in the declaration of my RadNumericTextBox, it always use the "," even if my Windows is set with a ".". I also checked the decimal separator of my current culture using "Thread.CurrentThread.CurrentUICulture.NumberFormat.NumberDecimalSeparator", and the value is ".". The only way It don't have the "," is to defined a specific value.

Here is my code:
<telerik:RadNumericTextBox ID="RadNumericTextBox1" Runat="server" MaxValue="5" MinValue="-5" ShowSpinButtons="True"> 
    <
NumberFormat ZeroPattern="n" DecimalDigits="1" />

</telerik:RadNumericTextBox>

Also, if It's required to force a decimal separator, is there a way to define it in a CSS or somewhere else to every RadNumericTextBox will use the same settings so I will not forgot one.

Anybody can help me?

Thanks

 

Marc
Top achievements
Rank 1
 answered on 07 Dec 2012
18 answers
1.4K+ views
All,

Here's my scenario:

I have multiple RadAjaxPanels on a page (for simplification i'll say 2)  Panel A and Panel B.  Panel A contains a PanelBar for navigation of the site and Panel B is essentially a content area that dynamically loads User Controls.  When a user clicks on an item in the PanelBar in Panel A, it fires a server-side event which handles loading of the user control.  After the event fires I need the AjaxPanel (Panel B) to refresh and re-render it's content thus displaying the newly loaded user control to the user. 

I've tried several ways of accomplishing this to no avail.  Here's what I've tried:

1) Assigning a forced __doPostBack() to one of the client side OnItemClick events.  This does force the refresh but since it is assigned to the client side event it fires Before the server side event which is before the new user control is even loaded.

2) Using the following syntax from the online help and making this call after the event loads the user control RadAjaxPanel.ResponseScripts.Add(String.Format("$find('{0}').ajaxRequest();", RadAjaxPanel.ClientID))

Where RadAjaxPanel is replaced by the name of the AjaxPanel i'm trying to update in the application. 

If I use .ClientID I've been getting back an JScript error of 'Object does not support this method or property', whereas conversely if I use .UniqueID i get an 'Object is undefined or null' error.

3) Tried using a Page.RegisterStartupScript which registers a .js that forces the refresh through a __doPostBack();  Also tried ClientScripts.RegisterStartupScript.

All of this has been to no avail so far.  I've traced through the code and the new user control is being loaded properly and being added to the control tree.  If I do a f5 refresh on the page, the control shows up just fine because i'm using the LatestLoadedControl mechanism defined in the telerik help for loading user controls.  However, this is unacceptable as Panel B doesn't refresh it's content until f5 is hit for a page refresh. 

Can anyone please point me in the right direction?? I would Really appreciate any help anyone can give on this.  So close, yet so far!

Thanks,
SK

Maria Ilieva
Telerik team
 answered on 07 Dec 2012
3 answers
135 views
Hi,
    I have a Rad DateTimePicker in my Application and when i add one item to database  along with Rad DateTimePicker value showing error like this

 System.InvalidOperationException: Nullable object must have a value.   at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)   at System.Nullable`1.get_Value()  

Actually  Rad DateTimePicker control has Value
Please help me to solve this issue
Thanks in Advance
Jesmon Joseph

Martin
Telerik team
 answered on 07 Dec 2012
5 answers
205 views
The title pretty much says it all. My server was giving me the following error "Could not load file or assembly 'Telerik.Web.UI, Version=2012.2.724.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The system cannot find the file specified."

Looking in my Windows Assembly folder I noticed that I had the 2012.2.724.35 assemblies installed, but not the 2012.2.724.40 version. When dragging and dropping the DLLs files to the C:\Windows\assembly folder for version 2012.2.724.35 they installed just fine. However, when I try to do the same thing for 2012.2.724.40 nothing happens and they do not install. I even tried repairing the .NET 4.0 framework and restarting but nothing works.

I am logged in to the Machine's local Administrator account so there is no reason I can think of why this shouldn't work.


EDIT: I also want to be clear, that I'm perfectly aware that I can get around the issue by adding the DLL to my application bin folder, however these DLLs are not small, and when I have dozens of applications using them the burden can get quite large. At any rate, it completely defeats the purpose of the GAC (i.e. GLOBAL Assembly Cache).

EDIT2: Is this true? Did they really remove the ability to add GACs this way in .NET 4.0? I'd really rather not use the Telerik installer as it does not allow any flexibility as to what to install. I just used the 2012.3.1016 installer and I only got the Design binaries which I don't even need. Where are UI and Skins? Ugh!
Marin Bratanov
Telerik team
 answered on 07 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?