Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
123 views

If creating a vertical chart seems to follow the SQL order by clause but when
changed to a horizontal chart ordering goes out the door.

The requirements I have is to have items listed in a particular order, ie
Total Amount
Second Amount, etc, etc

Didn't see anything in the source of the object or in the community.


Thanks!
Velin
Telerik team
 answered on 20 Feb 2009
1 answer
87 views
Did you guys remove TrackChanges button in the latest release update? I've removed my <tools> to allow all the buttons to show but it seems that one is missing.

Does the new editor still have the the methods for setting initial content as I read in here http://www.telerik.com/community/forums/aspnet-ajax/editor/track-changes-in-rad-editor.aspx  ???


Fred
Top achievements
Rank 1
 answered on 20 Feb 2009
5 answers
160 views
Hello,

I've been having a little formatting problem with exporting the appointments to Outlook. What I am trying to do is get some custom attributes of the appointment and insert them in the Description field. What I want is something like this

Description of the event
Contact Person: bla bla
Contact Email: bla@bla.com
Event Link: http://www.bla.com

I wasn't able to insert new line characters in between. If I don't insert anything, all above info appears in one line (which I don't want). I've tried the solution from another forum post by replacing "\n" and "\r\n" with "\\n" but that didn't work either. I am sure there's a very simple solution to this but I wasn't able to find it.

Thanks
Goksun
Clyde
Top achievements
Rank 1
 answered on 20 Feb 2009
1 answer
84 views
Hi,
  I am using self referential grid. I have pagination in the grid. pagination appears at the bottom of grid.

Problem: When I expand the grid items I am seeing scroll bar, but this scroll bar scrolls along the headers and pagination control. Can some body say me if I want scroll only to items in grid and not to headers and pagination control(pager template), what could be the fix.

Any help regarding above would be great favour.
Nikolay Rusev
Telerik team
 answered on 20 Feb 2009
4 answers
196 views

Hi,
  As per Current requirement I am using pager template which displays numeric pager at the bottom. I am displaying 10 records in grid and numericPagerControl with page button count 10 .

 

Problem: Whenever number of records to be displayed in grid is less than 10, Grid data is occuyping less hieght and pagination is moving to top. To elaborate, Suppose Grid displays 2 records, immediately after 2 records pagination bar is appearing. Instead I want 8 empty records to be shown and then display the pagination bar. appendong cod efor your convinence.

    
            <Rad:RadGrid ID="UserGridCE" AllowPaging="true" OnPageIndexChanged="UserGridCE_PageIndexChanged" 
                EnableViewState="true" AllowMultiRowEdit="true" Skin="Vista" EnableEmbeddedSkins="false" 
                ShowHeader="true" runat="server" AllowSorting="true" OnSortCommand="UserGridCE_SortCommand" 
                OnPreRender="UserGridCE_PreRender" 
                Width="100%" GridLines="None" OnColumnCreated="UserGridCE_ColumnCreated" OnItemCreated="UserGridCE_ItemCreated" 
                AutoGenerateColumns="false" OnItemCommand="UserGridCE_ItemCommand" OnItemDataBound="UserGridCE_ItemDataBound">  
                <PagerStyle Visible="true" AlwaysVisible="true"/>  
                <MasterTableView AllowPaging="true" AllowCustomPaging="true" AllowCustomSorting="true" 
                    AllowNaturalSort="false" AllowSorting="true" DataKeyNames="Activity_PK" Width="100%">  
                    <SortExpressions> 
                        <rad:GridSortExpression FieldName="0" SortOrder="Ascending" /> 
                    </SortExpressions> 
                    <Columns> 
                        <Rad:GridTemplateColumn SortExpression="0" HeaderText="<%$ Resources:L_LMS_User_ExceptionDetail, Info_Name%>" 
                            UniqueName="ActivityName">  
                            <ItemStyle/> 
                            <ItemTemplate> 
                                <asp:Label ID="Label3" runat="server" ToolTip='<%# GetActName(Eval("ActivityName"),Eval("Activity_PK"))%>' 
                                    Text='<%# GetActName(Eval("ActivityName"),Eval("Activity_PK"))%>'></asp:Label> 
                            </ItemTemplate> 
                        </Rad:GridTemplateColumn> 
                        <Rad:GridTemplateColumn HeaderText="<%$ Resources:L_LMS_User_ExceptionDetail, Info_RequiredCredits%>" 
                            UniqueName="RequiredCredits">  
                            <ItemStyle/> 
                            <ItemTemplate> 
                                <%# Eval("RequiredCredits")  %> 
                            </ItemTemplate> 
                        </Rad:GridTemplateColumn> 
                        <Rad:GridTemplateColumn HeaderText="<%$ Resources:L_LMS_User_ExceptionDetail, Info_AcquiredCredits%>" 
                            UniqueName="AcquiredCredits">  
                            <ItemStyle/> 
                            <ItemTemplate> 
                                <%# Eval("AcquiredCredits")%> 
                            </ItemTemplate> 
                        </Rad:GridTemplateColumn> 
                        <Rad:GridTemplateColumn HeaderText="<%$ Resources:L_LMS_User_ExceptionDetail, Info_Progress%>" 
                            UniqueName="Progress">  
                            <ItemStyle /> 
                            <ItemTemplate> 
                                <%# GetProgressBarX(Eval("Activity_PK"), GetProgress(Eval("RequiredCredits"), Eval("AcquiredCredits")), "small")%> 
                            </ItemTemplate> 
                        </Rad:GridTemplateColumn> 
                    </Columns> 
                              <PagerTemplate> 
                                    <table class="pagerTable">  
                                        <tr class="pagerTable">  
                                            <td class="pagerCountCell">  
                                            </td> 
                                            <td class="pagerNumbersCell">  
                                                <div> 
                                                    <table class="pagerCellBorder">  
                                                        <tr class="pagerCellBorder">  
                                                            <td class="pagerCellBorder">  
                                                                <div class="GridPageChangerDiv">  
                                                                    <asp:LinkButton ID="previous" runat="server" Text="Previous" CommandName="Page" 
                                                                    CausesValidation="false" CssClass="GridPageChangerText" 
                                                                    CommandArgument="Prev"/>  
                                                                </div> 
                                                            </td> 
                                                            <td class="pagerCellBorder">  
                                                                <asp:ImageButton ID="previousImage" runat="server" CommandName="Page" 
                                                                    ImageUrl="~/client/media/images/_common/pagination-left.gif" ImageAlign="Bottom" 
                                                                    CausesValidation="false" 
                                                                    CommandArgument="Prev"/>  
                                                            </td> 
                                                            <td class="pagerCellBorder">  
                                                                <asp:Panel runat="server" ID="NumericPagerPlaceHolder"/>  
                                                            </td> 
                                                            <td class="pagerCellBorder">  
                                                                <asp:ImageButton ID="nextImage" runat="server" CommandName="Page" 
                                                                    ImageUrl="~/client/media/images/_common/pagination-right.gif" ImageAlign="Bottom" 
                                                                    CausesValidation="false" 
                                                                    CommandArgument="Next"/>  
                                                            </td> 
                                                            <td class="pagerCellBorder">  
                                                                    <div class="GridPageChangerDiv">  
                                                                        <asp:LinkButton ID="next" runat="server" Text="Next" CommandName="Page" 
                                                                        CausesValidation="false" CssClass="GridPageChangerText" 
                                                                        CommandArgument="Next"/>  
                                                                    </div> 
                                                            </td> 
                                                       </tr> 
                                                    </table> 
                                                 </div> 
                                            </td> 
                                            <td class="pagerCountCell comboIntroTextLineRight">  
                                                <div class="pagerDiv">  
                                                    <asp:Label ID="lblRecCount" runat="server" Text=""></asp:Label> 
                                                </div> 
                                            </td> 
                                        </tr> 
                                   </table> 
                              </PagerTemplate> 
                          </MasterTableView> 
                          <PagerStyle Mode="numericPages" PageButtonCount="10" Position="Bottom" /> 
                <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="true">  
                    <Selecting AllowRowSelect="True"></Selecting> 
                    <Resizing AllowColumnResize="true" /> 
                    <ClientEvents OnColumnResizing="ColumnResizing_UserGridCE" />    
                </ClientSettings> 
            </Rad:RadGrid> 

Any solution to the problem would be a great favour.
Nikolay Rusev
Telerik team
 answered on 20 Feb 2009
3 answers
159 views
Hi,

I am using radDateInput for the date control, but when I enter 00002008 and tab out its displaying 12/31/2006 and if I enter 0000 and tab out its displaying 06/26/2000. Why is it showing such a weird behaviour, am I doing something worng?

Thanks
Vinay
Dimo
Telerik team
 answered on 20 Feb 2009
1 answer
141 views
Hi,

I'd like to use RADControls for ASP.NET AJAX with Dreamweaver CS3 on my local machine.  I'll do the HTML and javascripting and then pass the files on to our development team.

What do I need to do to make this happen?

Thanks Much,

Susan
Paul
Telerik team
 answered on 20 Feb 2009
22 answers
487 views
First off, awesome control!  We are currently using another scheduling control, but are evaluating your new RadScheduler as a replacement.  We have used and abused your controls in the past and plan on doing the same with RadScheduler.   The HTML for this control is very clean, especially compared to our old control, so hats off to you. 

We have the following issues with our old control, and it appears that your control has the same issues.

1.  Horizontal Scrolling
Our application can have over 20 resources.  We must have horizontal scrolling, and horizontal scrolling while dragging must be supported.  (Yes I know we could break up the number of resources on put them on seperate pages, but our clients want to see them all at once.  They need to be able to move an appointment from the first resource to the last by dragging.  )

2.  Statically positioned time column.
The header is already static, we need the time column to be static.  I have done this before in IE, but don't know how it would work in other browsers, so I know it is possible.  If you can't do this one, then maybe number 3 below?

3. Repeating Time Column
Repeating the time colum on both sides of the control, and at a set interval (every 5 resoures).  This is for horizontal scrolling, so you can still see the time. 

4.  Expose Dragging (move) Event Hooks Client Side
If you can't implement scroll on drag logic, then I will implement my own, but I need an OnClientDragStart event and an OnClientDragEnd event. 

5.  You current scroll on drag logic for vertical scrolling while good, has some issues.
If you drag 'too fast' then the cursor gradually gets further and further away from the floating appointment that you are moving.  I have been able to reproduce this behavior on your demo page using IE6.  We can live with this issue, but just thought you would want to know. 

6.  Watchlist concept
Our current control has the ability to show the scheduler, and then have a 'watch list' visible next to it.  Basically the watch list is a list of unscheduled events that can be added to the schedule.  You can drag them from the 'watch list' to the schedule where they will be added.  It would be cool if your scheduler had this functionality. 

If your control already does some of these things, I apologize ahead of time because I have only spent a hour or so evaluating your control.  I look foward to your reply. 

-Mike
KingPrawn
Top achievements
Rank 1
 answered on 20 Feb 2009
2 answers
1.4K+ views
Hi,

Is it possible to hide the delete button on some rows in the grid?

I'm hiding the button in the ItemDataBound function, but when a row is clicked in the grid, the delete image is shown again.

Can anybody give me a sollution?

The RadGrid ClientSettings are:
<ClientSettings EnablePostBackOnRowClick="True" EnableRowHoverStyle="True">  
   <Selecting AllowRowSelect="True" /> 
   <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
</ClientSettings> 

Thanks
Leon Ham
Top achievements
Rank 1
 answered on 20 Feb 2009
3 answers
142 views
Hi,

How do I create an html < label > control for the RadInput that is embedded in a RadTimePicker?

When using a RadInput directly, I just set the "Label" and "LabelCssClass" properties. But these properties do not appear to be exposed on the RadTimePicker (at least not that I can see).

(I'm creating the RadTimePicker at runtime.)

Thanks!

Jake.
Dimo
Telerik team
 answered on 20 Feb 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?