Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
75 views
After updating to the newest version of telerik I am getting the javascript error - 'offsetLeft' is null or not an object.  This was not occurring before the update and it doesn't happen in Firefox.  Yea IE.  :)  Also, this is being done dynamically.  Thanks for your help.
Kamen Bundev
Telerik team
 answered on 23 Jul 2009
1 answer
56 views
Hey,

Sorry, this is a noob question.  I have a drop down menu which uses divs, right below it I'm using the Calendar control; the calendar icon shows on top of my menu when it drops down.

Another instance where I'm having problems is between two rad controls...  I'm using a combobox above a splitter, the combobox, when expanded, shows behind the splitter and subsequent pane. 

Thank you,
Kasia
Sebastian
Telerik team
 answered on 23 Jul 2009
2 answers
109 views
Hi there,

In some of the chart demo examples you show a stacked chart made from two different colours that would represent 2 differing values.

Is it possible to have more than two stacked values? We have an application that requires the possiblity of including maybe 20-30 differnt results in one column.

Many thanks

Stephen
MakeMedia
Top achievements
Rank 1
 answered on 23 Jul 2009
1 answer
130 views
Hello, I am new to this community and telerik controls. Just want to see if we can use rad editor to customize and use the control for what we need.


 currently, we send out emails to clients with a fixed format message ( from database , which is stored in html format ( text field at database level ).  we substitue some values in the html format loaded from database in our business layer and generate the body and subjects from it and send an html email

question is, is it possible to use rad editor to have the user customize the subject and body of their emails on asp.net pages ( especially , the format, styles ), insert some additional database values ( may be like a dropdown of a set of values in specific places, which can later be substitued in business layer , dynamically) , take a preview of the message before sending an email and deliver it as an email?

any ideas, please let me know.
Rumen
Telerik team
 answered on 23 Jul 2009
1 answer
118 views
How can I have the initial font size dropdown display value show as 10pt.  It currently defaults to 8.5pt after initial load of the editor's toolbar. Also I would like to do the same for the fontname dropdown value to read Ariel.

Thanks
Princy
Top achievements
Rank 2
 answered on 23 Jul 2009
1 answer
161 views
Hi
"sys.webforms.pagerequestmanagerserverexception: An unknown error occurred while processing the request on server. The status code returned from server was: 12029"
I get this error sometimes when my site is running in production i have searched on google for this error which says it occurrs when internet is disconnected and request from web site is sent and they tell the following script to add to show the custom error
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
   if (args.get_error() != undefined)
   {
       if ((args.get_response().get_statusCode() == '12007') || (args.get_response().get_statusCode() == '12029'))
       {
        //Show a Message like 'Please make sure you are connected to internet';
        alert('Please make sure you are connected to internet');
        args.set_errorHandled(true); 
       }
   }
}
I want to do this rad ajax because i am using rad ajax please let me know how can i use it in rad ajax
Any help would be appreciated.

Regards
Muzaffar Ali
Rosen
Telerik team
 answered on 23 Jul 2009
1 answer
130 views
Hi ,

I've radtreeview. How do i bind it my database data.
I'm using LINQ to generate data.
So, how do i dynamically bind the data  to a treeview in c# web forms.

How do i have expand and collapse treeview items.

Princy
Top achievements
Rank 2
 answered on 23 Jul 2009
1 answer
128 views
I'm having a few problems with the media manager, I'm using the Q2 version and my code looks like this:
<telerik:RadEditor 
height="500px" 
width="700px" 
ID="PageEditor"  
Runat="server" 
HasPermission="True"                     
DocumentManager-DeletePaths="~/uploads/documents/"  
DocumentManager-UploadPaths="~/uploads/documents/"  
DocumentManager-ViewPaths="~/uploads/documents/"  
DocumentManager-MaxUploadFileSize="10485760"  
FlashManager-DeletePaths="~/uploads/flash/"  
FlashManager-UploadPaths="~/uploads/flash/"  
FlashManager-ViewPaths="~/uploads/flash/"  
FlashManager-MaxUploadFileSize="20971520" 
ImageManager-DeletePaths="~/uploads/images/"  
ImageManager-UploadPaths="~/uploads/images/"  
ImageManager-ViewPaths="~/uploads/images/"  
MediaManager-DeletePaths="~/uploads/media/"  
MediaManager-UploadPaths="~/uploads/media/"  
MediaManager-ViewPaths="~/uploads/media/"  
MediaManager-SearchPatterns="*.mov,*.avi" 
TemplateManager-DeletePaths="~/uploads/templates/"  
TemplateManager-UploadPaths="~/uploads/templates/"  
TemplateManager-ViewPaths="~/uploads/templates/"                     
MediaManager-MaxUploadFileSize="20971520" 
ShowHtmlMode="True"  
OnSubmitClicked="PageEditor_SubmitClicked" 
ConvertToXhtml="True"  
CssFiles="~/editor.css"   
TemplateFilters="*.html"      
ContentAreaCssFile="editorStyles.css"
<Content> 
</Content> 
</telerik:RadEditor> 

Image manager and Document manager work fine but when I try to upload .mov or .avi files I get a message saying "The extension of the uploaded file is not valid" even though it is and is listed under file extenions allowed on the upload window. Any ideas? this is driving me mad and I really need to get it fixed asap



Rumen
Telerik team
 answered on 23 Jul 2009
0 answers
106 views
Hi
I want look like this in demo
http://demos.telerik.com/aspnet-ajax/scheduler/examples/timelineview/defaultcs.aspx but my problem is my control is dynamic control.
This is my code

_radScheduler.DataSource = dtFinalResult;
                _radScheduler.DataKeyField = "FieldID";
                _radScheduler.DataSubjectField = "LinkTitle";
                _radScheduler.DataStartField = "EventDate";
                _radScheduler.DataEndField = "EndDate";
                _radScheduler.DataBind();

                _radScheduler.TimelineView.GroupBy = "LinkTitle";
                _radScheduler.TimelineView.GroupingDirection = GroupingDirection.Vertical;
                _radScheduler.TimelineView.HeaderDateFormat = "MMM-dd";
                _radScheduler.TimelineView.SlotDuration = TimeSpan.Parse("1.00:00:00");


But in timeline mode i did not get any records. with out the bold lines in the above code i got the records in timeline mode what is the problem i have>

Regards
Vairamuthu

vairam
Top achievements
Rank 1
 asked on 23 Jul 2009
1 answer
83 views
Hi,

I want to implement microsoft porject plan type of feature in rad gid(Dynamic indent and outdent feature). I am able to create hierarical grid but in case of runtime indentation i am not able to find same level parent in the grid.

Can you please help me out how to achieve indentation functionality in grid.

Regards
Amit Sharma
BaiH
Top achievements
Rank 1
 answered on 23 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?