Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
41 views
Hi,
is the feature like Lines chart bubble ,point chart is not available in RadControls for ASP.NET Q3 2007?


Thanks
Ves
Telerik team
 answered on 03 Apr 2009
1 answer
134 views
Hi All,

We have purchased the latest version (version 5.3.2.0) of Rad Editor control for MOSS integration for our current project. In this project we are defining all contents in Sharepoint List and those contents are shown in the webpage by using List Itemview web part control. We have incorporated the Rad Editor control for modifying the content in the Sharepoint list.

As per the documentation we have added all the required styles to the file "CssEditor.css" present inside "C:\Program Files\Common Files\Microsoft Shared\web server extensions\wpresources\RadEditorSharePoint\5.3.2.0__1f131a624888eeed\Resources" folder. After that we have reset the IIS. But still those custom styles are not appearing in the Rad Editor control for selecting the styles when we open the list in edit mode to apply the styles to the content.

Could you please suggest if we are missing something. Appreciate your quick response.

Thanks,
Justin.

Stanimir
Telerik team
 answered on 03 Apr 2009
1 answer
93 views
Hi All,

I am having three Radscheduler controls on my form and a radgrid.

I am adding Drag-Drop facility from radgrid to any of the Radschedulers.

I have written a function on rowDropping of Radgrid.

 

function rowDropping(sender, eventArgs)

 

{

 

var htmlElement = eventArgs.get_destinationHtmlElement();

 

 

var scheduler = $find('<%= radScheduleCalender1.ClientID %>');

 

 

 

if (isPartOfSchedulerAppointmentArea(htmlElement))

 

{

 

// The row was dropped over the scheduler appointment area

 

 

// Find the exact time slot and save its unique index in the hidden field

 

 

var timeSlot = scheduler._activeModel.getTimeSlotFromDomElement(htmlElement);

 

 

//$get("TargetSlotHiddenField").value = timeSlot.get_index();

 

 

 

// The HTML needs to be set in order for the postback to execute normally

 

eventArgs.set_destinationHtmlElement(

"hFieldGridDropData");

 

}

 

else

 

{

 

// The node was dropped elsewhere on the document

 

eventArgs.set_cancel(

true);

 

}

}

 

 

function isPartOfSchedulerAppointmentArea(htmlElement)

 

{

 

// Determines if an html element is part of the scheduler appointment area

 

 

// This can be either the rsContent or the rsAllDay div (in day and week view)

 

 

return $telerik.$(htmlElement).parents().is("div.rsAllDay") ||

 

$telerik.$(htmlElement).parents().is(

"div.rsContent")

 

}


In the code currently, I am using object of first Radscheduler.
i.e. "var scheduler = $find('<%= radScheduleCalender1.ClientID %>'); "
Instead of hardcoding I want to get ID of the Radscheduler on which user will be dropping an item.

Can anyone help me out please ?

Also, the line

 

 

" $telerik.$(htmlElement).parents().is("div.rsAllDay") || $telerik.$(htmlElement).parents().is("div.rsContent")" is giving an error " Object does not supports this property".


Best Regards,
Hrushikesh.

 

Veselin Vasilev
Telerik team
 answered on 03 Apr 2009
9 answers
256 views
I got $0$0 in radeditor when i post back the page, i think the return simbol was transform to $0$0, but i don't know the reason.$0Appreciated for any response.$0$0$0$0
Tervel
Telerik team
 answered on 03 Apr 2009
10 answers
271 views
Hi,  Ive been trying to get the File Explorer to work for a while and it hasn't been showing any files at all,  just folders

I found that the Demo's online and on my local machine don't show any files in Firefox but they do show files in explorer.  In the demo's on my local machine the files are there.  The online demo and my implementation works in explorer.

Ive tried firefox 3.07 on vista and 3.07 on windows xp

The other demo's work except for the File Selector Dialog demo,  this is the one im using to use the file selector dialog with my rad grid to replace the old way of doing it.
Open in firefox

Any Thoughts?
Tervel
Telerik team
 answered on 03 Apr 2009
2 answers
107 views
Hi all
I've read in a post (http://www.telerik.com/community/forums/aspnet-ajax/editor/editor-changes-content-on-its-own.aspx) the following

We just made some additional improvements to the filters mechanism - you might have noticed that in FF the browser automatically converts colors in style tags from "#XXXXXX" syntax to "rgb(xx,xx,xx)". We have extended the ConvertToXhtml filter to run a regular expression to convert those colors back to the more traditional format.

This is causing us an issue because the content that is being sometimes entered with Copy/Paster in the editor HTML area and we must keep the initial rgb(xx,xx,xx) formats to avoid this.
Of course, we must keep the XHTML compliance ;)

Any ideas?
Regards
Philippe
Philippe GRACA
Top achievements
Rank 1
 answered on 03 Apr 2009
3 answers
125 views
Just an FYI for you nice folks at Telerik.
I think* there may be an issue with the Image, document and other managers, when using IE8. The dialogs open fine, but they do not get populated with the list of files and folders. At first I thought it was a web.config/httphander thing, but I am seeing the folders when using IE7 or FireFox.

This is probably something security related in IE8, but I don't know what it is...
Rumen
Telerik team
 answered on 03 Apr 2009
2 answers
71 views
Hello,

I had a stable version of RadControls Q3 2008, Framework 2.0 in DNN4.8.2.
I copied this project and I made many upgrades, so I'm using now RadControls Q1 2009, Framework 3.5 in DNN5.0.1

Since I did all these changes, the behavior of my raddocks is different for the two projects : docks are floating at the top left of my DNN site. However, I don't change anthing in my first project in Q3 2008. Other RAD components seems to be well displayed.

Have you got an idea please ?


luc bonenfant
Top achievements
Rank 1
 answered on 03 Apr 2009
5 answers
196 views
I am trying to disable the datepicker after a postback. 

For other objects I can use something like the following to hide a control:

nameofControl.Attributes.Add("STYLE", "Display: None")


Is there any code I can use to disable the radDatePicker after a post back?

I tried the following with no success.

nameOfDatePicker.Attributes.Add("dateInput", "disable")

Daniel
Telerik team
 answered on 03 Apr 2009
1 answer
77 views
I have RadGrid with GridTemplateColumns. In ItemTemplate it is label and in EditItemTemplate it is texbox. When grid goes in edit mode, I can't see prevoiusly inserted data (what was in label before I click on Edit button).
I tried with EditCommand, but when that event is fired -- that control is label ( I can put some data in it). But that control becomes texbox later -- and I dont know how to get that textbox: is there some other event for that? I can get that textbox in UpdateCommand but that's too late.
Shinu
Top achievements
Rank 2
 answered on 03 Apr 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?