Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
159 views
Hi,

Please help me to resolve the Bug.



Scenerio:

In My RadCombo following item are exist...
                             1234 - Client
                             12345 - Client 2

When I put '123' and enter 'TAB' then in the combo box it show both value above mention.
                          ~ same like this --->  1234 - Client12345 - Client 2




<telerik:RadComboBox ID="cboCustomer" runat="server" AllowCustomText="false" Filter="StartsWith" 
                                                                MarkFirstMatch="true" AutoCompleteSeparator="None" OnClientFocus="OnClientFocus"
                                                                <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                                            </telerik:RadComboBox> 
function OnClientFocus(combo, e)   
            {   
                combo.showDropDown(); 
            }  

Simon
Telerik team
 answered on 26 Mar 2009
3 answers
169 views
Instead of using a link with "Delete", how can I use a .gif instead or ImageUrl for AutoGenerateDeleteColumn?
derek
Top achievements
Rank 2
 answered on 26 Mar 2009
2 answers
232 views
We have a custom skin (currently being converted for q1) and we also use master pages.  To date, we have been placing all the css files in the master page head tag area so that everything is available skin-wise for the content pages. 

However, this definitely means we are pulling in a LOT of css files for every page, even if they don't use all those controls on the page.

If we move the css file includes out of the master page and into the content pages (just stick the link right inside the content section - seems to work even though vs complains about it), and if we only pull in the css files we need based on the controls being used on the current page, will this result in enough performance improvement that it's worth doing?  Or, do we stick with just linking all telerik css files in the master pages to centralize things?

Thx
Kevin
Top achievements
Rank 2
 answered on 26 Mar 2009
3 answers
197 views
I am using RAD combo box (2.8.5.0).  I have set AllowCustomText="True" & MarkFirstMatch="True", but our users are requesting the ability to click and place the cursor within the selected value of the text using their mouse, in the event that they need to change the text.  I can use the "End" key to go the end of the text and arrow back to navigate the text, but is there a way to place the cursor within the text itself by clicking?  When I click within the selected value, the entire text is highlighted.

Here is the sample code:

web.config

    <add assembly="RadComboBox.Net2, Version=2.8.5.0, Culture=neutral, PublicKeyToken=175E9829B585F1F6"/>

Default.aspx

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<%@ Register assembly="RadComboBox.Net2, Version=2.8.5.0, Culture=neutral, PublicKeyToken=175e9829b585f1f6" namespace="Telerik.WebControls" tagprefix="rad" %>

<!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>
    <form id="form1" runat="server">
    <div>
   
        <rad:RadComboBox ID="RadComboBox1" runat="server" AllowCustomText="True"
            MarkFirstMatch="True" SkinsPath="~/RadControls/ComboBox/Skins" Width="150px">
            <Items>
                <rad:RadComboBoxItem runat="server" Text="One" Value="One" />
                <rad:RadComboBoxItem runat="server" Text="Two" Value="Two" />
                <rad:RadComboBoxItem runat="server" Text="Three" Value="Three" />
                <rad:RadComboBoxItem runat="server" Text="Four" Value="Four" />
                <rad:RadComboBoxItem runat="server" Text="Five" Value="Five" />
            </Items>
        </rad:RadComboBox>
   
    </div>
    </form>
</body>
</html>

Yana
Telerik team
 answered on 26 Mar 2009
2 answers
140 views
Hi Telerik,
I have an application, sitting in the _layouts directory of SharePoint. After updating to 2009/1 I get an AJAX Error when opening Document/Image Manager. Did you changed something?
I tried to change the web.config to
<add name="Telerik_Web_UI_DialogHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" /> 
 
and
editor.DialogHandlerUrl="~/Telerik.Web.UI.DialogHandler.axd"

But no avail (IIS 7).

Thanks for answering,
Andreas
Andreas Kaech
Top achievements
Rank 1
 answered on 26 Mar 2009
4 answers
108 views
Hi there,

I've been facing this really crazy driving error with my 2007 Q3 prometheus Rad Upload Control. What i'm trying to do is simply adding a progress area control to show upload progress and details. However it does not run and keeps giving me below error? there is no special code or any thing else, I did all the required webconfig updates, I even followed the demo webconfig configuration that comes with the Prometheus suit. when I remove the RadProgressArea control it works fine

I really need help guys, below are both the error and webconfig configuration.

ERROR:
Error 1 Cannot create an object of type 'System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]' from its string representation '(Collection)' for the 'Localization' property. D:\SarayaCareers\website\jobApplication.aspx 1775 

WEBCONFIG

<configuration>
 
 <system.web>
      :
      :
      :
   
  <httpHandlers>
   <remove verb="*" path="*.asmx"/>
   <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
     
      <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/>
    </httpHandlers>
   
  <httpModules>
   <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
     
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"/>
    </httpModules>
   
  <httpRuntime executionTimeout="1200" maxRequestLength="2097151" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>
  <customErrors mode="Off"/>
 </system.web>
 <system.webServer>
  <validation validateIntegratedModeConfiguration="false"/>
  <modules>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/>
   <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
  </modules>
  <handlers>
   <remove name="WebServiceHandlerFactory-Integrated"/>
   <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

      <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/>

  </handlers>
 </system.webServer>
</configuration>


Thank you so much for help
loai taha
Top achievements
Rank 1
 answered on 26 Mar 2009
1 answer
118 views
Hi,
Is there any way to control the dispaly of my RadWindow around my screen ? . To be more specific I have a page and inside this page I call a popup window, then inside this Popup Window I call another Popup Window, the Popup Window moving will be limited inside the page call this Window, Is there any way that I make the Popup Window move over the main page or screen and not restricted within there parent window ? so I can make my Popup window appear on the center of my screen.
Can you advice with this issue please .
Thanks

Ban
Georgi Tunev
Telerik team
 answered on 26 Mar 2009
1 answer
255 views
I have opened a radwindow. Inside this window, there is a proxy manager to refresh the page when save button is click. I wish to close the window when delete button is click once the server code has removed the record from database. However, this does not work.

The Coding on clicking the delete button is as follows 

 

string JS = "<script type=text/javascript>";

 

JS +=

"function GetRadWindow1(){";

 

JS +=

"var oWindow = null;";

 

JS +=

"if (window.radWindow) oWindow = window.radWindow;";

 

JS +=

"else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;";

 

JS +=

"return oWindow;}";

 

JS +=

"var oWindow = GetRadWindow1();";

 

JS +=

"oWindow.Close();";

 

JS +=

"oWindow.BrowserWindow.refreshGrid();";

 

JS +=

"</script>";

 

RegisterStartupScript(

"CloseWindowStartupScript", JS);

I have tried this method and is still not working

 

lblClose.Text=

"<script type='text/javascript'>GetRadWindow().Close();GetRadWindow().BrowserWindow.refreshGrid();</script>";

 

 


BUT When I remove the proxy manager in this window. Everything works. Any resolution to this issue?

Georgi Tunev
Telerik team
 answered on 26 Mar 2009
1 answer
190 views
Hi,
I'm testing my webpages using IE6 XP.
And when I open 2 radwindows, the 2. inactive radwindow has opacity.
In my css I wrote:
 div.radwindow.inactivewindow, div.radwindow.radwindow_MidasBlue.normalwindow.transparentwindow td.corner, div.radwindow.radwindow_MidasBlue.normalwindow.transparentwindow td.titlebar, div.radwindow.radwindow_MidasBlue.transparentwindow td.footercenter  
        {  
      opacity: 1.0 !important;               /* CSS 3 , opera 9*/  
 
      filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important;   /* MSIE */  
 
      -moz-opacity: 1.0 !important;   
        } 
but it doesn't work under IE6.
How to fix this?
Georgi Tunev
Telerik team
 answered on 26 Mar 2009
1 answer
196 views

I am trying to selected the PanelBar item when user click on the button. I do not understand why I am not able to set the selecteditem. Thanks for any feedbacks.

RadPanelBar1.SelectedItem.Value =
"2";
RadPanelBar1.DataBind();
RadPanelItem test = (RadPanelItem)RadPanelBar1.SelectedItem;

 

 

RadPanelItem parent = (RadPanelItem) test.Parent;

 

 

Paul
Telerik team
 answered on 26 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?