Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
603 views
Hey, I'm using the AJAX Control Toolkits Modal Popup Extender, and i'm having a problem with scrolling.  If i have the drop down open and scroll the page, or if i am using the mouse wheel to scroll through the drop down items ( i have upwards of 100 items in the dropdown) and the dropdown reaches the end of the list(either top or bottom) the page behind the modal will scroll automatically.

  In another post you mention hiding the dropdown section using javascript on the onscroll event to prevent it from moving with the page instead of staying where it started in the modal popup.   Something like
 
            var combo = $find("<%= radDropDown.ClientID %>");  
            combo.hideDropDown(); 
wired to the window.onscroll event.  That would work fine if i didnt have to scroll through the items in the list.  Is there a way to either reposition the dropdown items section manually or call a resize function, or even make it ignore the scroll event.  The latter solution would probably be the best, if possible.   If any of the above are possible please let me know, or if you have another solution I'd love to hear it.

Thanks

John
Cayetano Landeros
Top achievements
Rank 1
 answered on 30 Sep 2013
5 answers
186 views
After a lot of trial and error and few forum posts and emails, I was able to figure out a way to display multiple appointments for a same day without overlapping and also shows "more link" properly if its exceeds the visible limit.

Here is the code , You need to make sure you set this property for Monthview which was trying to display appointments.
<MonthView VisibleAppointmentsPerDay="4" />

Here is the CSS changes which is trickiest part of all,
.rsApt,.rsAptIn, .rsAptContent, .RadScheduler .rsMonthView .rsAptOut, .RadScheduler .rsMonthView .rsAptMid
       {
           min-height: 30px !important;
           height: auto !important;
       }
         
       .RadScheduler .rsMonthView .rsWrap
       {
           min-height: 34px !important;
           height: auto !important;
       }
 
.RadScheduler .rsApt
        {
            border: 1px solid black !important;
        }

First section sets Appointment area to proper height and second settings allows to separate them out. Last section is just making the appointment looks standout with borders.

Hope this helps others who are struggling with this issue. Attached the screenshot of my output.
Plamen
Telerik team
 answered on 30 Sep 2013
2 answers
139 views
Is it possible to set a radwindow ID?
I am attempting to get my radwindows to reopen after a postback by storing the radwindow properties in the session. To be able to do this I need to be able to get the ID of a window when it is resized or moved so that I can update the correct item in the session.

Thanks.
Louise
Top achievements
Rank 1
 answered on 30 Sep 2013
1 answer
43 views
I'm using batch edit and auto operation in my grid.  I need to get the previous values of the cells for the update command.
My update command is as follow:
UpdateCommand="BEGIN UPDATE &quot;WFM_CAT_RECURRENCE_DT&quot; SET &quot;FROM_YEAR&quot; = :FROM_YEAR, &quot;FROM_WEEK&quot; = :FROM_WEEK, &quot;TO_YEAR&quot; = :TO_YEAR, &quot;TO_WEEK&quot; = :TO_WEEK, &quot;USERID&quot; = :currUserID, &quot;USERNAME&quot; = :currUserName, &quot;CREATE_DATE&quot; = SYSDATE WHERE &quot;DIVISION&quot; = :DIVISION AND &quot;DISTRICT&quot; = :DISTRICT AND &quot;LOCATION&quot; = :LOCATION AND
&quot;FROM_YEAR&quot; = PREVIOUS_FROM_YEAR AND &quot;FROM_WEEK&quot; = PREVIOUS_FROM_WEEK AND &quot;TO_YEAR&quot; = PREVIOUS_TO_YEAR  AND &quot;TO_WEEK&quot; = PREVIOUS_TO_WEEK  
&quot;USERID&quot; = :USERID AND &quot;USERNAME&quot; = :USERNAME AND &quot;CREATE_DATE&quot; = :CREATE_DATE; exception when dup_val_on_index then null; End;">

I need to pass the previous cell value to PREVIOUS_FROM_YEAR,  PREVIOUS_FROM_WEEK,  PREVIOUS_TO_YEAR, PREVIOUS_TO_WEEK.  Can anyone tell me how to accomplish this?
Angel Petrov
Telerik team
 answered on 30 Sep 2013
3 answers
82 views
Hi Guys,
I am using AJAX toolkit Q2 2013 version of Telerik AJAX controls. I am using RadTabStrip control and I am facing problem of scrollbar in RadMultiPage. I've set ScrollBars="Vertical" property. It is working fine in IE10 but it is not working in Google Chrome. I am using latest Version "Version 29.0.1547.76 m"  of Google Chrome. Can anybody help me to solve this issue.Thanks in advance.

Regards,
Plamen
Telerik team
 answered on 30 Sep 2013
1 answer
112 views
Hi  ,
we are facing peformance issue with the Rad window.

We had a functionality on a page, with almost 4 text boxes and a grid with two columns , one with a checkbox column and another with a text column. The grid contains almost 1000 row. The page was loading pretty fast.
Based on our client requirement, he wanted to change the look and feel, and wanted the same functionality in model dialog in place of a page.
We put almost the same kind of look and feel inside a RadWindow with content template on a page, The Rad window takes nearly 20-25 sec to show up.

 

Version Details:Telerik.Web.UI
Runtime version :v4.0.30319
Version :2011.1.519.40


Please guide us regarding this.

Regards
Guhan.S

 
Marin Bratanov
Telerik team
 answered on 30 Sep 2013
1 answer
85 views
I am attempting to implement multi-level row layouts, where the second-level layouts reside in the ContentTemplate of the first level docks. This configurations would allow me to move the first level items around within a main zone, carrying with them the contained second-level docks. I then also need to be able to move second-level docks between the sub-layouts. My initial attempt doesn't appear to work correctly and I am now attempting to distill the code into an example to post to show how it doesn't work (I'll post it when finished). I am able to move the rows around in the Main zone and dynamically create row sub-docks, but the movement of rocks to other row zones doesn't save. I was wondering if anyone has implemented this type of configuration before and would be able to provide a suggested solution.
Thanks, Nate

Here's the hierarchy or controls, where the rows and rowdocks are dynamically created.
<mainlayout - RadDockLayout>
   <mainzone - RadDockZone>
       <row - RadDock>
           <ContentTemplate>
               <rowlayout - RadDockLayout>
                   <rowzone - RadDockZone>
                       <rowdock - RadDock />
                        ... other dynamically created docks that also need to move between rowlayout/rowzones...
                   </rowzone - RadDockZone>
               </rowlayout - RadDockLayout>
           </ContentTemplate>
       </row - RadDock>

       ... other dynamically created row - RadDocks...
   </mainzone - RadDockZone>
<mainlayout - RadDockLayout>

Slav
Telerik team
 answered on 30 Sep 2013
1 answer
77 views

   Hi,
       Can I export only selected rows from radgrid. If yes, how can I have this done. I was planning to export on external button click.

   Thanks
   Ryan
Princy
Top achievements
Rank 2
 answered on 30 Sep 2013
22 answers
654 views
Colleagues,

Who knows if it is possible to add to the RadScheduler for ASP.NET a horizontal line crossing the whole scheduler which would mark the actual time?

The idea is to move this line from top to bottom, as time passes, helping the user to notice which of the appointments are out of date or in progress. This might be very useful for all kinds of planner application where a busy manager must keep an eye on lots of appointments and re-schedule those which are not being started/finished on time. 

We have similar functionality in the Outlook’s calendar, for example.

Please, see the screen-shot that I attached. There a red line crosses the whole scheduler, expressing the current time (9:33).

Regards,

- Stepan.
Plamen
Telerik team
 answered on 30 Sep 2013
1 answer
67 views
Hi,

I have a requirement that the first item in the combobox be a link button that says "[Add New"] and which will do additional action. How can I have the first button as a link button but the rest of items as regular static items. I have tried for days now and can't figure it out. 

Thanks
Nencho
Telerik team
 answered on 30 Sep 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?