Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
59 views
I am using a custom skin.  In order to make the calendar link not be a broken image, I am using the following code to manually force the scheduler to look in the right place.  That works great on the initial page load, but if there are any async postbacks on the page that reload the calendar, the image link is broken again until the page is reloaded.  Is there a better way to do this where the link won't get screwed up on async postbacks?
 

Protected Overloads Overrides Sub OnPreRender(ByVal e As System.EventArgs)
'Change the image path for the date popup icon
Try
MyBase.OnPreRender(e)
Dim selectedDatePicker As RadDatePicker = TryCast(RadScheduler1.FindControl("SelectedDatePicker"), RadDatePicker)
If selectedDatePicker.IsEmpty = False Then
selectedDatePicker.ImagesPath = "skins/LightGreen/Calendar"
selectedDatePicker.Calendar.ShowRowHeaders = False
End If
Catch ex As Exception
'Do nothing - supress the error
End Try
End Sub

Thanks,
- Brad

Peter
Telerik team
 answered on 23 Jul 2009
1 answer
104 views
Hi,

I have a very peculiar problem. Changing the width of a column works perfectly. Paging as well.
But, when I change the width of one column or a couple of columns and then change page, only the column(s) which width was changed are shown. The columns which width I didn't change disappear. (Obviously, when I change the width of all columns, all are retained when changing page.)
Just to be clear, the disappeared columns don't reappear when going back to the page where I changed their width in the first place, they're just gone until I refresh the page so that the grid is rebuild from scratch.

I hope someone can tell me what obvious I made.

Regards,

Mink

Mink
Top achievements
Rank 1
 answered on 23 Jul 2009
1 answer
125 views
Hi All,

         Iam using the RadChart with in the Grid.  If there are more items in for ex. 30 items, then the chart is not readble properly, all the values in the chart are getting overlap. i have given the width of the chart as 650. if i increase the width of the chart it is some reable but the legends are going out of the Grid. Some times if more values are there then the chart is not visible only the legends are visible.
if i increase the width then it is visible but it is not readble.

How can i fix this issue. Is there any property which i can set so that if there are more values also it is reable properly.

Its very urgent

pls reply to me ASSP.

Regards,
asra
Giuseppe
Telerik team
 answered on 23 Jul 2009
8 answers
823 views
Hi,

I'm not able to get the following working:
A RadGrid with columns which widths are explicitly set, that is only as wide as it need to be, but when it's columns are in total wider than the element that contains has place for it the grid should be exactely as wide as possible and start scrolling for the columns that won't fit.

I tried to achieve this by setting the widths of each column (except for a column with Visible = false), not setting the width of the grid itself and setting ClientSettings.Resizing.ResizeGridOnColumnResize = true.
The result is that the grid is 100% wide and the columns are stretched to fill it's width, which is not what I want. If the grid doesn't need to be 100% wide than I don't want it to be and I definitely doe not want the columns to be stretched.

Playing around with some settings I did get the columns to stay their intended width but the grid was 100% wide nonetheless, having an ugly sort of empty space to fill up the unoccupied width.

What am I missing? I have tried to find some hints for a solution and found something about style="table-layout:fixed;", but I haven't been able to do something with that to get what I want.

Regards,

Mink

Mink
Top achievements
Rank 1
 answered on 23 Jul 2009
2 answers
142 views
It seems several of my developers have to spend several days trying to get new versions of your controls to work. I tried myself tonight and experience the same problems as they have. It is a very frustrating experience.

I have a brand new 64 bit Vista machine. I installed version 2009.2.701.20 and when I drag ANY of the controls into the designer I get this error...

Could not load file or assembly 'Telerik.Web.UI, Version 2009.2.701.20, Culture=neutral.......' or one of its dependencies. The system cannot find the specified file.

Now, it installed without error and my brand new project have that version of the dll in the bin folder. I've spent hours Googling for solutions to this problem and nothing seems to work.

The controls themselves are great IF (big if) you can get them installed and working. When I download an update from you guys I should install it and be able to use it out of the box. I'm tired of wasting my time with crap like this.
Bill Noble
Top achievements
Rank 1
 answered on 23 Jul 2009
0 answers
99 views
Hi

http://demos.telerik.com/aspnet-ajax/scheduler/examples/timelineview/defaultcs.aspx

I want groupby in time line view like this .
I want to increase the left handside Title column width.
In the above link demo (Margaret morrison main room,Block Auditorium).The text is large its goint to the next to next line also.Just
I want to increase the width.Otherwise hide the text and show the tooltip.
How can i do this one?

Regards
Vairamuthu
vairam
Top achievements
Rank 1
 asked on 23 Jul 2009
2 answers
133 views
Hi.

I am having some problems with using mootools (latest version) with the latest version of Telerik Controls. We develop a purely web based application for tour operators, and mootools has been giving us a lot of errors lately.

I was just wondering if someone is having issues as well, and if someone from Telerik could jump in on the discussion and recommend either MooTools or jQuery for my application.
Ivo
Telerik team
 answered on 23 Jul 2009
0 answers
155 views
Hi
My problem is i want the grouping only in the timeline view not in the monthly,day,weekly view .But i want to disply all the views in view tab.
My datatable like this

  LinkTitle                     EventDate                   EndDate                     FieldID

company meeting        01/15/2009 08 AM     01/15/2009 09 AM        1
company meeting        01/22/2009 08 AM     01/22/2009 09 AM        2
company meeting        02/22/2009 08 AM     02/22/2009 09 AM        3
Status meeting            01/22/2009  10 AM     01/22/2009 11 AM        4
Status meeting            01/26/2009  10 AM     01/26/2009 11 AM        5

in monthview i want all the meeting(5) should display but in the timelineview i want only two row(company meeting,Status meeting).
But i am getting five rows.
I want like this .
http://demos.telerik.com/aspnet-ajax/scheduler/examples/timelineview/defaultcs.aspx
This is my code

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

                ResourceType resourcetype=new ResourceType();
                resourcetype.Name = "MPPScheduler";
                resourcetype.DataSource = dtFinalResult;
                resourcetype.KeyField = "FieldID";
                resourcetype.TextField = "LinkTitle";
                resourcetype.ForeignKeyField = "FieldID";
                radScheduler.Resourcetypes.Add(resourcetype);          
                _radScheduler.TimelineView.GroupBy = "MPPScheduler";
                _radScheduler.TimelineView.GroupingDirection = GroupingDirection.Vertical;
                _radScheduler.TimelineView.HeaderDateFormat = "MMM-dd";

What is the problem?

Regards
Vairam


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

I'm getting the sys.invalidoperationexception when selecting the time in this control

Is it possible to hide the clock and force users to type the time

a quick fix until I can spend some time on this
Ciaran
Top achievements
Rank 1
 answered on 23 Jul 2009
1 answer
308 views
I was wondering if Telerik had any controls capable of the following:
Requirements
1. I have a radiobutton list which has its Items source bound to a list of items.
2. The selected value of the list is also databound.
3. If no selection has been made for the item then I want no radio buttons to be checked.

Currently if I save a null value in the database, when the selected item is databound I get an error saying that I am trying to bind the selected value of the List to an item that is not in the list.

Thanks,

Billy Jacobs
Ivo
Telerik team
 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?