Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
Is there a new trick to change the Text hover color?  

I cannot get the Hover text color to be anything other than RED.   Also, no matter which skin I choose the Hover Color is always RED. 

Even Using a custom skin with No Red in the CSS the Hover color is still red.

 
Brete
Top achievements
Rank 1
 answered on 16 Mar 2009
2 answers
114 views

Hello,

I am relatively new to RAD controls and our company is evaluating them.

I am using the scheduler to display some DB table entities( lab tests to be exact)

I have set it up and it displays everything OK and I am able to change the properties of a test(such as it's status for example) and save them back to the DB.
my question is:

 I want to be able to change the color of the appointment depending on the status of the test. For example - completed ones to be green and pending ones to be orange. How can I do that? Which property determines the color of an appointment in the calendar?

Thanks very much in advance

Susan


Susan
Top achievements
Rank 1
 answered on 16 Mar 2009
2 answers
153 views
Hi,

We noticed this in our application while testing the beta of Q1 2009. Now that we plugged in the release of Q1 2009, the issue remained.

First thing I did before diving into the depths of our code, I checked your web mail demo, which (fortunately for us), displays the same issue.

See the attached image for a 'view' of the issue (screen shots made from the notes part of the web mail demo, but is visible within the entire application):

Example Image

Basically, when one sets a control to occupy a width of 100% of a RadPane that borders the right side of the browser window, the control is drawn 1px too wide, causing borders to fall outside the visible area, without scroll bars appearing. Interestingly enough, when I selected the shown entry in DebugBar, the issue vanished and the border became visible. When I wanted to take the screen shot for the DebugBar entry, I had to re-size the DebugBar side-bar and, like magic, the border went missing again. The issue was observed in IE7 and FireFox 3.

This is a pressing issue for us, since I have to demo our application framework next week to a very large customer.

Regards,

Mike
PureCode
Top achievements
Rank 2
 answered on 16 Mar 2009
2 answers
74 views
I cant set view path like http://www.sample.com/images to rad editor image manager,
Please any one help me.....
gopi
Top achievements
Rank 1
 answered on 16 Mar 2009
1 answer
219 views
I'm using the RadEditor widget to edit HTML, XML and other text types.  When I set the Content property, I verify that the tags look correct - lowercase.  When the widget is rendered in Firefox, this is maintained but when it's rendered in IE, the tags are all converted to uppercase, making my XML and XHTML invalid.

I've seen this thread but I'm not getting this to work quite right.

Basically, I need for RadEditor to not molest any of the content, no matter what the type of text is.  I want it to display exactly what I set the Content property to be and when I post back, I want the Content property to reflect exactly what is in the RadEditor.

This behavior seems to boil down to the value of the ContentFilters property.  When this property is set to Telerik.Web.UI.EditorFilters.None, IE changes the tags to uppercase.  When this property is set to Telerik.Web.UI.EditorFilters.ConvertToXhtml, both browsers convert the real values to lowercase.  How do I get the control to not interfere with the Content value?

Thanks,
-C

Rumen
Telerik team
 answered on 16 Mar 2009
1 answer
117 views
Hey,
I want to let the user to select the buttons that he need to the editor, therefore i want to view all the icons as list or something like that,
How can i view the icons/Buttons?
All what i can do ,  remove buttons/custom buttons.
Rumen
Telerik team
 answered on 16 Mar 2009
13 answers
325 views
I'm using the RadAJAXManager on a web user control and the FocusControl() method to set focus on an AJAX callback to a RadComboBox.  The focus operation is working properly however the cursor is at the END of the displayed text.  If I tab to the next control and back, the entire text is highlighted allowing me to begin typing and have the ComboBox find the element I'm looking for (this is the desired effect).

Is there a way to highlight the entire text AND execute the FocusControl() method at the same time?

Thanks,
-Ted
Bernardo
Top achievements
Rank 2
 answered on 16 Mar 2009
1 answer
80 views
Hi,

I have just installed IE8 to test some apps before its launch. When I insert an image in RadEditor it is always inserted at the top left of the content, no matter where the cursor was when the dialog was involked. Like I said its only in IE8, IE7 and Firefox insert at the cursor. I was wondering if there was a fix for this.

Cheers,
Matt
Rumen
Telerik team
 answered on 16 Mar 2009
1 answer
119 views
I have some Custom editor tools like below, that no longer show the text in the button in Q1 2009.  The text and shortcut do show in the tooltip though.  Any ideas on how to fix this?

           EditorTool editorTool;  
 
            editorTool = new EditorTool  
                             {  
                                 Name = "InsertCustomAND",  
                                 Text = "AND",  
                                 ShortCut = "CTRL+1"   
                             };  
            editorTool.Attributes["text-align"] = "center";  
            editorTool.Attributes["width"] = "20px";  
            txtFormula.Tools[0].Tools.Add(editorTool);  
 
Jason
Tervel
Telerik team
 answered on 16 Mar 2009
1 answer
238 views
Hello,

I've been working on a project where I need to present a two tier data structure in a grid ("Line Items" with "Charge Items" under them). I purchased the Telerik suite to help with this project. Requirements include.

- Pull data together from several tables in different databases
- Use this data for the grid and for other controls
- Write changes to a Changes table, rather than the source tables

Because of these requirements I decided to populate data into a DataSet instead of using a static SqlDataSource or something similar. Going through all the online examples and scenarios I decided that this one was closes to the one I want:
http://www.telerik.com/help/aspnet-ajax/grdprogrammaticcreation.html
I chose this "Dynamically defining the structure of a statically-declared grid" scenario because the I can't declaratively bind to a staticly defined data source like a SqlDataSource.

The main difference is I need to bind to DataViews in a DataSet that was created during PageLoad and is persisted in the Session, rather than a declarative source such as a SqlDataSource, but I found that this changes / breaks many things compared to the Telerik example, including:

1. I have set EnableColumnsViewState = false, otherwise things fall apart. Is this bad? Does it hurt performance?
2. I had to implement the NeedDataSource and DetailTableDataBind events, automatic heirarchy does not work whether I do it in the ASPX or in code during Page_Load. This required me to back out all the code used to set the DataKeys and create the relationships as this does not appear to be used in a DetailTableDataBind scenario. Why?
3. I can only get it to work if I set it to AutoGenerateColumns! This is a serious problem, as I need to add some columns via code (I'd actually like to add all the columns programatically, as in the example, but this makes the example break down as soon as I expand the details)

Getting it to work at all required a lot of figuring out, and it's still not working the way I want it to. I also had to figure out the EnableColumnsViewState and the necessity of implementing NeedDataSource and  DetailTableDataBind. This information is scattered through many different articles and examples and some of it is just trial and error to discover.

My Questions are:

1. Is there a comprehensive example that covers dynamically defining the structure of a statically-declared grid, using a DataSet?
2. Is there a solution for item #3 above with using the Page_Load scenario, or do I need to move to the Page_Init scenario?

Georgi Krustev
Telerik team
 answered on 16 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?