Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
71 views
I can't get custom css-styles to work, so that I can add a cssfile and then use the styles from that stylesheet.

I have tried to follow the example on the website but still it doesnt work.

I have the following code:

 

<telerik:RadEditor ID="RDHtmlEditor" EditModes="All" runat="server" Width="750px"

 

 

Height="700px" EnableResize="False">

 

 

<ImageManager ViewPaths="~/Attachment/Editor" UploadPaths="~/Attachment/Editor" DeletePaths="~/Attachment/Editor"

 

 

MaxUploadFileSize="104857600" />

 

 

<DocumentManager ViewPaths="~/Attachment/Editor" UploadPaths="~/Attachment/Editor"

 

 

DeletePaths="~/Attachment/Editor" MaxUploadFileSize="104857600" />

 

 

<FlashManager ViewPaths="~/Attachment/Editor" UploadPaths="~/Attachment/Editor" DeletePaths="~/Attachment/Editor"

 

 

MaxUploadFileSize="104857600" />

 

 

<MediaManager ViewPaths="~/Attachment/Editor" UploadPaths="~/Attachment/Editor" DeletePaths="~/Attachment/Editor"

 

 

MaxUploadFileSize="104857600" />

 

 

<TemplateManager ViewPaths="~/Attachment/Editor" UploadPaths="~/Attachment/Editor"

 

 

DeletePaths="~/Attachment/Editor" MaxUploadFileSize="104857600" />

 

 

<CssFiles>

 

 

<telerik:EditorCssFile Value="~/App_Themes/RabatstedetPublicTheme/StyleSheetPublic.css" />

 

 

</CssFiles>

 

 

<Content>

 

 

 

</

 

Content>

 

 

</telerik:RadEditor>

 

Rumen
Telerik team
 answered on 14 Apr 2010
3 answers
132 views
We have been using grid column filtering with the RadGrid control for some time. We have been requested to change the date format throughout the application to  dd/MMM/yy

Setting the DataFormatString="{0:d}" (shown below) breaks the filtering with version 2009.3.1208.35. No filtering occurs. When a date with this format is entered and "Equal To" is selected for the filter, the results are an empty grid. The system date format has been set to "dd MMM yy".



<telerik:GridBoundColumn UniqueName="DateAdded" DataField="DateAdded" SortExpression="DateAdded"
                                HeaderText="Created" DataFormatString="{0:d}" Groupable="false"
                                ItemStyle-HorizontalAlign="Right" FilterControlWidth="65px">
                                <HeaderStyle Width="85px" />
                            </telerik:GridBoundColumn>

How do we get the grid filters to work with this date format?

Thanks in advance,

Keith E.
Yavor
Telerik team
 answered on 14 Apr 2010
1 answer
49 views
When I'm editing a tree node (renaming it) and the edit textbox streches beyond the width of the tree view, it will automatically end the editing.  This only happens in IE8 for me.  I've tried it in FF and I get a horizontal scroll bar in the tree view and the textbox stays as is (which is expected).  I've set the width of my Tree View to 220px so that I do get a horizontal scroll bar when I have folder names or child folders that extend beyond the 220px.

Here is the interesting thing.  If I add enough child folders so that I do get the horizontal scroll bar in IE8, then when I rename a folder that extends beyond the scroll width, it just adjusts to that and works as it should.  I'm thinking that his is an issue with IE8 and was wondering if there was way to make the horizontal scroll bar always visible for the Tree View, in hopes that by doing so would solve this issue.

- Kai Thao
Dimitar Milushev
Telerik team
 answered on 14 Apr 2010
1 answer
99 views
Hi,

I am facing a strange situation in my application. I have a rad text box in ajax update panel. When an event is fired say button click(Button is within the panel), the text in the rad text box completely vanishes.But if i replace this text box with the asp: text box ,it works fine. This happens only for one particular text box among 5 other text boxes



Regards,
Saravanan
Maria Ilieva
Telerik team
 answered on 14 Apr 2010
1 answer
90 views

Hi,

My Page has 3 RadTab and each tab page has a user conttol in it. This page was working fine with 2009 Q3. But we have updated to 2010 Q1 and now this page is giving javascript error on postbac calls.
It gives error document.getelementbyid() is not an object in some resource file and line number is in billions and when i do click on debug the IE 8 shows message "Source Code is not available for this location".
This page is working fine in Mozila Firefox. Further more this page works fine when i remove AjaxManager and AjaxProxyManager from User Controls.
Is there some issue in RAD AJAX with RadAjaxManager, RadAjaxManagerProxy, RADTab, RadMultiPage, And RadSplitter?
Thanks & Regards
Imran Javed Zia

Lenny_shp
Top achievements
Rank 2
 answered on 14 Apr 2010
1 answer
101 views
I have a hierarchial grid with a single detail table. Allowautomaticupdates = True.   I click on the update link to put the grid in edit mode and change the values.  The stored procedure is called that is defined on the Sqldatasource and the values are passed to the stored proc.  But the values passed are the original values not the updated values.  How do I get the updated values from the grid?  I'm assuming there is a simple trick I am missing but not sure what it is.

Thanks
Pavlina
Telerik team
 answered on 14 Apr 2010
1 answer
236 views
I have a database that contains may appointments.  I have written a search page that allows a user to specifiy dates and other parameters.  Once the user initiates the search, I retrieve the appointments from the database and bind them to the radScheduler.  That part is is working fine.

However, whenever the user hits the search button, I need to clear all the previously bound appointments from the scheduler so I can put the new results from the database into the scheduler.  So, I called the Appointments.Clear() method but after a couple of seconds, it causes a javascript error.  I thought that maybe I need to set some other properties like AllowDelete=true but nothing seems to help.

Here's is the offending line (I think):

rsScheduler.AllowDelete = true;
rsScheduler.Appointments.Clear();

rsScheduler.AllowDelete = true;  
rsScheduler.Appointments.Clear(); 
If this is NOT the correct way to remove all the appointments from the scheduler, please provide me with alternatives.

Thanks,

Dexter
Dexter McCloud
Top achievements
Rank 1
 answered on 14 Apr 2010
4 answers
308 views
hi,
i want to get appointment referance means some properties of Appointment like width, top,left of that appointment ON MOUSE HOVER and ONMOUSE OUT event,so that i can handle that appointment form Clientside.like u have given click event of appointment

thanks
regarded As:
Muhammad Ali.
Peter
Telerik team
 answered on 14 Apr 2010
3 answers
76 views
quick question (can't seem to find an answer by searching)


I have a raddatepicker inside an AJAX panel everything on the form works fine, but I can't seem to set focus to it from the server side.

I can set focus to a radtextbox sitting directly beside the datepicker.

on the server side

This works
RadAjaxManaer.FocusControl(txtMyRadTextbox)

this does not work
RadAjaxManaer.FocusControl(rdpMyRadDatePicker)

any suggestions???

Maria Ilieva
Telerik team
 answered on 14 Apr 2010
1 answer
47 views
hello all
i m facing problem to display ajax calender on internet explorer it is blinking not showing on button click
Maria Ilieva
Telerik team
 answered on 14 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
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?