This is a migrated thread and some comments may be shown as answers.

Anyone else have advanced form css layout problems when updating DLL versions?

3 Answers 40 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Roatin Marth
Top achievements
Rank 1
Roatin Marth asked on 22 Aug 2011, 09:21 PM
Greeting folks,

I'm using the custom advance form approach in my scheduler project,.

I've just been trying to update to a newer telerik DLL verison and this is yet another update that has been plagued with advanced form layout problems.

I simply update the DLL and suddenly the controls that make up the recurrence div section are a layout mess.

Can anyone comment on why this might be happening?

I'm updating from the retro 2009.3.1314.35 to 2011.1.413.

regards,

3 Answers, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 24 Aug 2011, 02:21 PM
Hello Roatin,

I recommend you also update the Advanced Form user controls (AdvancedForm.ascx, ResourceControl.ascx, etc. )

Kind regards, Peter
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

0
Roatin Marth
Top achievements
Rank 1
answered on 24 Aug 2011, 05:54 PM
Hey, thanks Peter/
I'll be working on updating the templates.

With the new  <telerik:RadSchedulerRecurrenceEditor
is there a way to omit the yearly option?

0
Plamen
Telerik team
answered on 26 Aug 2011, 01:18 PM
Hello Roatin,

Here is one way to achieve this functionality that worked at my side:
function OnClientFormCreated(sender, args) {
          var $ = $telerik.$;
          var mode = args.get_mode();
          if(mode == Telerik.Web.UI.SchedulerFormMode.AdvancedInsert ||
              mode == Telerik.Web.UI.SchedulerFormMode.AdvancedEdit) {
              $(".rsRecurrenceOptionList li:eq(4)").hide();             
          }
      }

Hope this will help.

Best wishes,
Plamen Zdravkov
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

Tags
Scheduler
Asked by
Roatin Marth
Top achievements
Rank 1
Answers by
Peter
Telerik team
Roatin Marth
Top achievements
Rank 1
Plamen
Telerik team
Share this question
or