Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
136 views

Apparently the tools have hard-coded background colors…  I have a visual disability that limits my sight to white text on a black background.  I can also see other high contrast colors, as long as they are on a dark background.  I just recently purchased and started using the RadControls for WinForms.  My computer’s Display Properties are set for an appearance and color scheme of “High Contrast Black”.  This setting work fine in Visual Studio 2008, all the views and property pages show with high contrast white text on a black background with white grid lines when present – I can see everything just fine.  My problem if with the Telerik extensions to Visual Studio where property / design pages open-up with a “Vista” like color theme of a white background and white text – even if the text was black I still could not see it on the bright white background.  Is there any way to re-color the Telerik design pages to follow the windows color scheme?  Or maybe force them to other colors?  My OS is Windows 2003 server.

 

Jan 5 2009 Nick responded

 

Hi Steve,

 

I have checked the current state and you are correct. VSB, Edit UI Elements, and grid Property Builder all override the default settings by using a custom theme. I have logged the issue in our bug system and we are going to address it.

Nick

-----

Have you fixed this yet?  Your product costs a lot of money not to be able to see it is disappointing.

Nick
Telerik team
 answered on 25 May 2009
1 answer
136 views

I'm not sure why I'm being so dense about this, but I'm having trouble deploying my website to my server. I'm new to AJAX and working on the server side to get sites deployed.

I'm using VS 2005 and the AJAX controls for UPLOAD and Progress Manager, etc. (.NET 2.0)  I'm hoping that I can include everything in the BIN and not have to alter the GAC. So I upload everything and I get this immediate error on the site. I also have tried to install the DLLs on the server but I don't have the utility that comes with the .net sdk and doing it manually didn't work.

Parser Error Message: Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 85:     </httpHandlers>
Line 86:     <httpModules>
Line 87:       <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
Line 88:     </httpModules>
Line 89:   </system.web>


My full Web.config is as follows:

<?xml version="1.0"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    \Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
  <appSettings>
    <add key=".xls_connection" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties='Excel 8.0;HDR={1};IMEX=1;'" />
    <add key=".xlsx_connection" value="Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 12.0 Xml;HDR={1};'" />
  </appSettings>
  <connectionStrings />
  <system.web>
    <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.

            Visual Basic options:
            Set strict="true" to disallow all data type conversions
            where data loss can occur.
            Set explicit="true" to force declaration of all variables.
        -->
    <compilation debug="true" strict="false" explicit="true">
      <assemblies>
        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
      </assemblies>
    </compilation>
    <pages validateRequest="false">
      <namespaces>
        <clear />
        <add namespace="System" />
        <add namespace="System.Collections" />
        <add namespace="System.Collections.Specialized" />
        <add namespace="System.Configuration" />
        <add namespace="System.Text" />
        <add namespace="System.Text.RegularExpressions" />
        <add namespace="System.Web" />
        <add namespace="System.Web.Caching" />
        <add namespace="System.Web.SessionState" />
        <add namespace="System.Web.Security" />
        <add namespace="System.Web.Profile" />
        <add namespace="System.Web.UI" />
        <add namespace="System.Web.UI.WebControls" />
        <add namespace="System.Web.UI.WebControls.WebParts" />
        <add namespace="System.Web.UI.HtmlControls" />
        <add namespace="System.Data" />
        <add namespace="System.Data.Sql" />
        <add namespace="System.Data.SqlClient" />
        <add namespace="System.Web.Extensions" />
        <add namespace="pixelMarsala.BBDS.BO.Validation" />
        <add namespace="pixelMarsala.BBDS.BO.SubmissionFile" />
        <add namespace="pixelMarsala.BBDS.BO.Case" />
        <add namespace="pixelMarsala.BBDS.BO.Security" />
      </namespaces>
    </pages>
    <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
    <authentication mode="Windows" />
    <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    <httpHandlers>
      <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
    </httpHandlers>
    <httpModules>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
    </httpModules>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      <add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" />
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
    </handlers>
    <modules>
      <add name="RadUploadModule" preCondition="integratedMode" type="Telerik.Web.UI.RadUploadHttpModule" />
    </modules>
  </system.webServer>
</configuration>

Pavlina
Telerik team
 answered on 25 May 2009
1 answer
111 views
How can I export multiple rad grids on a page into separated pdf files??
Daniel
Telerik team
 answered on 25 May 2009
1 answer
127 views
Hello,

I have 2 questions about the radScheduler :

- First, I would like to disable the link to the dayView in the number of the day (in the month view). How can I do that ?
I tried <DayView UserSelectable="False" /> and <telerik:RadScheduler DayView-UserSelectable="false"... but there are no effects.

- Then, I use InlineInsertTemplate to customize the template to add an appointment.
I add some RadComboBox and I would like to change some properties of the second RadComboBox when I select a value in the first RadComboBox.
I tried this code but my RadComboBox is null.

protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
  String code = e.Value;
  RadComboBox RadComboBox2 = (RadComboBox)RadScheduler1.FindControl("RadComboBox2"); // return null
}

Can you help me ?
thanks
Veselin Vasilev
Telerik team
 answered on 25 May 2009
2 answers
98 views
Hi,

I am currently in the process of implementing the FormatBlock in my RadEditors. I've come across a problem that I have confirmed using the following sample: http://demos.telerik.com/aspnet-ajax/editor/examples/formatblock/defaultcs.aspx

Steps to reproduce
1. If you delete all of the content in editor
2. Enter new text on the first line (one or two words)
3. Select the new text
4. Choose "Heading 1" from the FormatBlock drop down.

The editor goes blank and you are unable to enter any additional text.  In some cases a javascript error is displayed.

Does anyone have a workaround for this?

Thanks,
Jeff
Jeff Van Dyk
Top achievements
Rank 2
 answered on 25 May 2009
3 answers
118 views
Hello,

I would like to customize the radscheduler.
My question is simple : I want to get after a click on a cell of the scheduler, the datetime of the day which was clicked.

how can I do that ?

thanks
Peter
Telerik team
 answered on 25 May 2009
1 answer
71 views

  The sample/demo for having multiple-valued resources works well, however, I'm stumped by part of the implementation for my own version.  Specifically the call to GetResources within the MultipleValuesResourceControl.ascx shows:

IEnumerable<Resource> resources = Owner.Resources.GetResourcesByType(resType);

  This makes perfect sense, but it returns 0 objects.  However, when I replace that line with:

IEnumerable<Resource> resources = Owner.Provider.GetResourcesByType(Owner, resType);

  I receive the proper resources.  Is it possible that Owners.Resources is not the same as Owner.Provider?  If so, how do I get Owner.Resources to point to the right place?  I'm guessing that the change I made will work for here, but not for the actual saving and returning of the values for events.
T. Tsonev
Telerik team
 answered on 25 May 2009
2 answers
82 views
Hi Telerik Team,

 We are using AutoSuggest control in RadDock launched from the Scheduler control. It is our custom AutoSuggest derived from microsoft's which allows user to type values in the textfield and immediately searching values come up.
My RadDock has 2 AutoSuggest controls and other controls which cause RaDDock to have scrollbars. Now when I browse through AutoSuggest, the values in the AutoSuggest layer are rendered at above the textfield of the autosuggest, instead at the correct postion. This happens when I scroll the RadDock and my Autosuggest is a little below the center of the RadDock

Otherwise the same AutoSuggest works properly in our pages and also in our popups.
Please advice what I may be missing.

Regards,
Abhishek
Abhishek Dixit
Top achievements
Rank 1
 answered on 25 May 2009
3 answers
100 views
I am wondering if it is possible to have a button on a RadEditor that will generate a unordered list of letters like:

A)
B)
C)

Very much like the button for "Numbered List" that generates:

1)
2)
3)

I understand that I can write my own custom tool buttons that could accomplish this, but I wanted to see if someone had already done this, or if a way to do this through the built in editor exists.

Thanks!
Rumen
Telerik team
 answered on 25 May 2009
1 answer
80 views
Hello,

I am using  web service for search, that returns me total no. of results found and search results with in given limit (say 10 records per request),

Is it possible to set total no. records for grid, so paging will done automatically ?

(web service is not developed in .net)


 Thanks,
Amol




Iana Tsolova
Telerik team
 answered on 25 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?