Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
160 views
i want to add a new row either as a  second header or a new row at first position in the grid so that it remains at the top and the row remains at the first position even with paging (adding new row at databound event)
previously i was doing something like this with the gridview control

Table tbl = gvDownload.Rows[0].Parent as Table;
  GridViewRow gRow = new GridViewRow(-1, -1, DataControlRowType.DataRow, DataControlRowState.Insert);
then i was building the row by adding cell values individually and finally adding this row in the table.

i have also attached the screen shot of the grid implementing this functionality.

how i can do that with telerik grid?

Thanks,
Prashant
Prashant
Top achievements
Rank 1
 answered on 01 Dec 2010
3 answers
86 views
Hi,

I trying to make an function as set a "cut off point" i the RadEditor's content area.
The purpose is that only the content above that point will be display on the homepage.

I have se that function in wordpress <!--more--> tag.

Have sombody out there any good advice?

Best regards

Rune
Rune
Top achievements
Rank 1
 answered on 01 Dec 2010
2 answers
91 views
Hello
I have editable grid, with few RadComboBoxes. It is possible to set visibility or datasource of others RadComoboBoxes when one change selected index ? I'm asking because I don't see comboboxes in codebehind.
My Grid looks something like that:
<Grid>
     ......
     <MasterTableView>
           <EditFormSetting EditFormType="Template">
                 <FormTemplate>
                  //RadComboBoxes ....OnSelectedIndexChanged="...."
                 </FormTemplate>
         </EditFormSettings>
</MasterTableView>
</Grid>
Konrad
Top achievements
Rank 1
 answered on 01 Dec 2010
2 answers
194 views
Is it possible to delay the display of a RadAjaxLoadingPanel, something similar to the AjaxToolkit ModalPopupExtender's "DisplayAfter" property? I can't seem to find anything about such a thing.

Thanks.
Ivan Queiroz
Top achievements
Rank 1
 answered on 01 Dec 2010
1 answer
88 views
Hello. 

I need some suggestions/ideas...

I use a RadComboBox with "EnableLoadOnDemand=true" and a web service. With these settings I cannot change the value of the property "AllowCustomText": it cannot be different from true as explained here:  http://www.telerik.com/help/aspnet-ajax/cannot-disable-allowcustomtext-load-on-demand.html.

The problem that I have is that the combo box displays a closed list, which means that it should not allow the user to select a value which is not in that list. But with the "AllowCustomText = true", nothing prevents the user from doing this. 

What can I do to tell the user that he/she has entered something not allowed ? Has anybody some ideas to do something nice in that case ?

I like what is done here http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/autocompleteclientside/defaultcs.aspx when "AllowCustomText = false" : the user cannot enter letters when there is no match in the combo box. 

Note that I have tried what is proposed in the above link but this is not OK since there is no call to the web server when the user enter some text in the combo box. 

Thierry
Cori
Top achievements
Rank 2
 answered on 01 Dec 2010
6 answers
128 views
Hi,
I'm using Telerik Ajax Manager/RadAjaxPanel/RadAjaxLoadingPanel inside SharePoint 2010 Webparts.

The problem is that the AjaxLoadingPanel is displayed just after the second request.
In the first request the website loads normal without any LoadingPanel.

How can I fix this error ?

Thanx and regards
Stephan
USI
Top achievements
Rank 1
 answered on 01 Dec 2010
2 answers
113 views
HI,

I am facing a JavaScript error in my RadTabStrip and am not able to make head or tails of it. Help! This is what I am trying to achieve.

WebPage  (Has RadAjaxManagerProxy and no JavaScript)
RadTabStrip
---Tab 1
------User entry Input Boxes
------Next and Previous Navigation buttons
---Tab 2
------Custom User Control containing RadListView (This control has RadAjaxManagerProxy and no JavaScript)
------Next and Previous Navigation buttons

Idea is that User cannot directly go to Tab2 (Tab disabled) unless Tab1 is filled and validated. To go to Tab2 User will have to click on the Next button on Tab1. On the Tab1, Next button click I call the following code:

int selectedIndex = RadTabStrip1.SelectedIndex;
RadTabStrip1.Tabs[selectedIndex+1].Selected = true;
RadMultiPage1.SelectedIndex = selectedIndex + 1;

The problem is that I get a general JavaScript ("undefined is null or not an object") error when ever I click on the Tab1 Next button and the User Control does not render correctly.  However, If I just click on Tab2 then I can see the User control correctly without any error.

Not sure what I am doing wrong and where to look. Please advise.

TIA
Dimitar Terziev
Telerik team
 answered on 01 Dec 2010
6 answers
185 views
Hi There,

I am trying to display a tooltip when a dynamically generated RadMenuItem is hovered over.

I'm using RadToolTipManager and am successfully populating the TargetControls list for each MenuItem using its CliemtID.

However whilst I can display a tool tip when testing with a simple Button the Menu is not triggering the AjaxUpdate at all. I believe this is due to the way the menu items are rendered (without an acutal ID).

I am not currently using a template for my menu and would prefer not to if I can get away with it.

Please let me know if there's a way to do this without templating my menu.

Cheers,

Kate
smriti
Top achievements
Rank 1
 answered on 01 Dec 2010
4 answers
311 views
Hello,

I am trying to create a daily appointment into rad scheduler by using code. As i want to achieve 2 possible scenarios 

a)  create a daily appointment that appears on the rad scheduler on every Monday till the end date of the appointment.
b)  create daily appointment that shows on the scheduler based on the time interval of day for example:- recurrence of appointment after 1,10,15,20,30,100 etc 

although i partially manage to complete the first scenario to recur appointment every monday but it showing only 3 recurrence in month instead of 4 times during the dates between 2/1/1010 and 3/1/2010.  this is my code which i am using to create the appointment can you tell me is i am doing something wrong... 

 DateTime startTime = new DateTime(2010, 2, 1, 9, 0, 0)

   // Creates a recurrence range, that specifies a limit of 4 occurrences for the appointment.
        RecurrenceRange range = new RecurrenceRange();
        range.Start = startTime;
        range.EventDuration = new TimeSpan(1, 0, 0);
        range.MaxOccurrences = 4;
        range.RecursUntil = DateTime.MaxValue;

      // Creates a recurrence rule to repeat the appointment every Monday.
        DailyRecurrenceRule rrule = new DailyRecurrenceRule(RecurrenceDay.Monday, range);
        
        Appointment recurringAppointments = new Appointment("1", Convert.ToDateTime("2/1/2010"), Convert.ToDateTime("3/15/2010"), "Recurring appointment", rrule.ToString(), null, RecurrenceState.Occurrence);
        recurringAppointments.RecurrenceRule = rrule.ToString();

        RadScheduler1.InsertAppointment(recurringAppointments);
        RadScheduler1.DataBind();

Also enclosing the screen shots that shows on 3 recurrence appointment in a month.

For the second scenario i am  doing everything the same just changing the daily recurrence rule  based on days such as 
 DailyRecurrenceRule rrule = new DailyRecurrenceRule(20, range);

 but if i have interval with more than 17 days its not showing recurring appointment... enclosing the second screenshot with filename: RecurrenceByDay for  your reference

Can you also please show me how to create a reference rule for weekly & monthly !

I look forward to hear from you.

Thanks,
Imran 

Peter
Telerik team
 answered on 01 Dec 2010
1 answer
104 views
Dear Team,

I have a DataTable object containing 4 columns... I want to bind it to RadChart, and I need to display column no.1 that is date column on the x-axis. please tell me complete steps what i need to perform... when I bind datatable it displays series against 2,3,4 th columns but displays 1,2,3,4... on x-axis.
Thanks
Evgenia
Telerik team
 answered on 01 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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?