Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
116 views
Ive got a custom filter inside scrollable radgrid. this filter uses 2 buttons. when im moving the grids scrollbar, those buttons are not moving with the rest of the headers and filters. i tried the popular solution of position:relative of those buttons container (a table or a panel) without any luck. what can i do?

thanks, shay
Bozhidar
Telerik team
 answered on 17 May 2011
0 answers
77 views
I want to add the range of values in XAxis dynamically. For ex- if user selects range of date like start Date- 01/01/2011 and end Date- 5/14/2011 then in X-Axis it should display the month from 1-5 i.e Jan-May. But if the user selects Start Date-11/01/2010 and End Date-
5/14/2011 then x-axis should display the Nov,Dec,Jan,Feb,Mar,Apr and May.
So, here we need the two different range to be added in XAxis like:

 DateTime d1 =Convert.ToDateTime(txtStartDate.SelectedDate);
 DateTime d2 = Convert.ToDateTime(txtEndDate.SelectedDate);      
 if (d2.Month > d1.Month)
        {
            RadChart1.PlotArea.XAxis.AddRange(d1.Month, d2.Month , 1);
        }
        else
        {
            RadChart1.PlotArea.XAxis.AddRange(d1.Month, 12, 1);
            RadChart1.PlotArea.XAxis.AddRange(1, d2.Month, 1);
        }

By the above code it is displaying in XAxis as Jan,Feb,Mar,Apr and May. It is not displaying the first range i.e Nov,Dec.
Please help me out to solve this problem. It is very urgent.
annu
Top achievements
Rank 1
 asked on 17 May 2011
3 answers
139 views

I a newbie in telerik and I try to make a Menu / Mega Drop-Down.  But I have a problem with the Quickstart

I need install this it

Where I can download this Quickstart?

Shinu
Top achievements
Rank 2
 answered on 17 May 2011
1 answer
130 views
I see that by default the radscheduler will assume 1 hour appointment slot. Even when user  hovers over the control, the one hour slots are highlighted. How can i change this to say 30 min. appt slot?
Gimmik
Top achievements
Rank 1
 answered on 16 May 2011
7 answers
246 views
Hi,  I met a problem when using radgrid displaying a highlighted row. It is working fine if the height of the row is regular, however, it shows a blue section at the bottom when the height is exceeded the regular size. Please take a look at the attached image. The top screen shot shows the problem. Could anyone please give me some suggestions to solve the problem? Thanks a lot. 

Regards,
Meng  
Zafar
Top achievements
Rank 1
 answered on 16 May 2011
1 answer
138 views
Hi,

I am able to show text label outside the pie chart, but is it possible to write the text in the chart's bar itself?
Please see attached image.

Thanks
A
Gimmik
Top achievements
Rank 1
 answered on 16 May 2011
1 answer
64 views
Hello,

I'm working with a List View that includes an extensive set of controls including a RadUpload control.  I'm using javascript to disable the Ajax with the upload button is clicked.  This works fine on page load and pretty much all first pages of the list view when items are searched.  Once I select a new page in the RadDataPager, the javascript code is no longer executed.  Could you please provide some insight!! I've been looking into this for some time now with no consistent solution.

I also encountered pretty much the same problem with a textbox in the listview that also needs javascript to be resized, however I corrected this with changes to the  RadAjaxManager settings.  This change (to update the listview when the AjaxPanel is selected, may have triggered the issue above.  

I'm trying to get a solution as soon as possible.

Thanks!

Update...I've actually opened a support ticket to supmit this along with files.
Stephanie
Top achievements
Rank 1
 answered on 16 May 2011
1 answer
413 views
Hi,
I am working on application in which we are using Rad Controls.
When we open appliaction in two browser window, we got 'RadUpload Ajax callback erro.Source url returned invalid content' error.
Vijayaraj
Top achievements
Rank 1
 answered on 16 May 2011
8 answers
316 views
I want to remove one column and also selected rows for excel export. Remove rows worked but remove column doesn't work.

I used e.Worksheet.Table.Columns.RemoveAt(3) under ExcelMLExportRowCreated to remove column (TagID) but doesn't work.

I can't make the TagID column invisible on the grid display because I need to use this TagID for checking when remove selected rows. .

-----------------------------------------------------------------------------------

 

if (!list.Contains(e.Row.Cells.GetCellByName("TagID"

).Data.DataItem.ToString()))

 

{

 


if (e.RowType == GridExportExcelMLRowType

.DataRow)

 


{

 

 

 

Int32

i = e.Worksheet.Table.Rows.Count;

 

 

 

e.Worksheet.Table.Rows.Remove(e.Row);  // remove rows worked

 

}

 

}

 

 

 

 

else

 

 

 

{

e.Worksheet.Table.Columns.RemoveAt(3); // want to remove TagID column from excel display (index id is 3) but didn't work

}


Please help!

JJ
Top achievements
Rank 1
 answered on 16 May 2011
2 answers
52 views
Hi Team;

There is a case that I'm not quite clear how to grasp it and I hope you can explain it better to me. This question can relate to either Upload for ASP.Net Ajax or MVC. I have not finalize which route to go yet.

My understanding: When I write code for the Upload events to execute Before & After a file has been uploaded in the case that the file is uploaded to the same server and same domain, the code can create a directory on the server and then store the file and rename it if it needs to. Basically, the code would know about the root and directory of  the website.

Now, suppose the website is being hosted on some shared or dedicated hosting company. So, the actual code running is on the hosting server, however the files that are being uploaded will be stored on Amazon S3 server and not on the same server as the website is.
My question is, how will I be able to control the same logic on the Amazon server (location of file, File name and etc.) the same way as if the file was on the code server?

Any explanation or links would be appreciated.
Thank you in advance.
..Ben
Ben Hayat
Top achievements
Rank 2
 answered on 16 May 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?