Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
172 views
The pager appears fine in all browsers (Opera, Google Chrome, Firefox and Safari) except in Internet Explorer where it's displayed very strange e.g. next/prev buttons are invisible without background etc. etc.

Is it known bug or i am missing something. This is the code:

<telerik:RadListView ID="RadListView1" runat="server"
            ItemPlaceholderID="itemPlaceholder" GroupPlaceholderID="groupPlaceholder" DataKeyNames="product_ID"
            onneeddatasource="RadListView1_NeedDataSource" AllowPaging="true" GroupItemCount="3"
            AllowCustomPaging="true" Skin="Telerik">
             
            <LayoutTemplate>
                    <table  cellpadding="0" cellspacing="0" width="97%" style="clear: both; margin-top: 10px; margin-bottom: 10px;">
                        <tr>
                            <td align="center">
                                <telerik:RadDataPager ID="RadDataPager2" runat="server" PagedControlID="RadListView1"
                                    PageSize="30" Skin="Telerik">
                                    <Fields>
                                        <telerik:RadDataPagerButtonField FieldType="FirstPrev" />
                                        <telerik:RadDataPagerButtonField FieldType="Numeric" />
                                        <telerik:RadDataPagerButtonField FieldType="NextLast" />
                                         
                                        <telerik:RadDataPagerTemplatePageField>
                                            <PagerTemplate>
                                                <div style="float: right">
                                                    <b>Items
                                                        <asp:Label runat="server" ID="CurrentPageLabel" Text="<%# Container.Owner.StartRowIndex+1%>" />
                                                        to
                                                        <asp:Label runat="server" ID="TotalPagesLabel" Text="<%# IIF(Container.Owner.TotalRowCount > (Container.Owner.StartRowIndex+Container.Owner.PageSize), Container.Owner.StartRowIndex+Container.Owner.PageSize, Container.Owner.TotalRowCount) %>" />
                                                        of
                                                        <asp:Label runat="server" ID="TotalItemsLabel" Text="<%# Container.Owner.TotalRowCount%>" />
                                                        <br />
                                                    </b>
                                                </div>
                                            </PagerTemplate>
                                        </telerik:RadDataPagerTemplatePageField>
                                    </Fields>
                                </telerik:RadDataPager>
                            </td>
                        </tr>
                    </table>
                     
            <table cellpadding="0" cellspacing="0" width="100%" style="padding-left: 40px;">
                <asp:PlaceHolder ID="groupPlaceholder" runat="server" />
            </table>               
                 
                    <table  cellpadding="0" cellspacing="0" width="95%" style="clear: both; margin-top: 10px;">
                        <tr>
                            <td align="center">
                                <telerik:RadDataPager ID="RadDataPager1" runat="server" PagedControlID="RadListView1"
                                    PageSize="30" Skin="Telerik">
                                    <Fields>
                                        <telerik:RadDataPagerButtonField FieldType="FirstPrev" />
                                        <telerik:RadDataPagerButtonField FieldType="Numeric" />
                                        <telerik:RadDataPagerButtonField FieldType="NextLast" />
                                         
                                        <telerik:RadDataPagerTemplatePageField>
                                            <PagerTemplate>
                                                <div style="float: right">
                                                    <b>Items
                                                        <asp:Label runat="server" ID="CurrentPageLabel" Text="<%# Container.Owner.StartRowIndex+1%>" />
                                                        to
                                                        <asp:Label runat="server" ID="TotalPagesLabel" Text="<%# IIF(Container.Owner.TotalRowCount > (Container.Owner.StartRowIndex+Container.Owner.PageSize), Container.Owner.StartRowIndex+Container.Owner.PageSize, Container.Owner.TotalRowCount) %>" />
                                                        of
                                                        <asp:Label runat="server" ID="TotalItemsLabel" Text="<%# Container.Owner.TotalRowCount%>" />
                                                        <br />
                                                    </b>
                                                </div>
                                            </PagerTemplate>
                                        </telerik:RadDataPagerTemplatePageField>
                                    </Fields>
                                </telerik:RadDataPager>
                            </td>
                        </tr>
                    </table>
            </LayoutTemplate>
             
            <GroupTemplate>
                <tr>       
                    <asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>           
                </tr>
            </GroupTemplate>
            <ItemTemplate>
               <td valign="top" style="padding-bottom: 10px;">
            <div>
            <table cellpadding="0" cellspacing="0">
                <tr>
                    <td valign="top" align="center">
                        <div class="ItemTitle">
                            <a href="Details.aspx?id=<%# Eval("product_ID") %>">
                                <asp:Label ID="lblTitle" runat="server" Text='<%# ShortenText.Shorten(Eval("title"), 15) %>'></asp:Label>
                            </a>
                        </div>
                    </td>
                </tr>
                 
                <tr>
                    <td valign="middle" align="center">
                        <a href="Details.aspx?id=<%# Eval("product_ID") %>">
                            <asp:Image id="imgThumbnail" runat="server"  />
                        </a>
                    </td>
                </tr>
        </table>
            </div>             
            </td>
            </ItemTemplate>
        </telerik:RadListView>

Grace DS
Top achievements
Rank 1
 answered on 07 Oct 2010
3 answers
246 views
Hi

I have RadGrid with Template Column and Template Column Contain RADTreeView Control to display data in tree Structure..
When exporting RadGrid data to Excel Sheet at that time RadTreeView  Column Cell gave me Empty.
Please help me out..
Daniel
Telerik team
 answered on 06 Oct 2010
2 answers
107 views
Could you please tell me or direct me to some code about customizing the appearance of the toolbar?
I don't want to use any of the predefined skins, I just want total control of the styles used. 
On the same note if I am supposed to use some predefined class names, where in documentation can I find those names?
Thanks
Iulian
Iulian Ilies
Top achievements
Rank 1
 answered on 06 Oct 2010
2 answers
65 views
Hi all!

Really need a help from all of you!
I'm using the RadGrid and using AutoGenerateDeleteColumn="true" for adding the Delete Column.
But it locates on the last column. Any ways to move it to the front?

Thanks!

Andy.
Andy
Top achievements
Rank 1
 answered on 06 Oct 2010
4 answers
104 views
I have a little visual problem. In IE8 a Hyperlink Column that is no AlternateItem and is not Hovered 
shows the Link Decoration (Underline) for the Hole Link text when only parts of the Text ist visible,
when hovered with Mouse the decoration gets fit to the columnwidth (see pictures)

John
Top achievements
Rank 1
 answered on 06 Oct 2010
4 answers
157 views
I have followed the example here: http://demos.telerik.com/aspnet-ajax/combobox/examples/programming/customattributes/defaultvb.aspx

This adds images to each item nicely. However, I am not sure how to add an image to the selected item. In other words, if you go to the above link and change the avatar combo box selection, it shows text. I would like the selected item to show an image as well.

Is this possible?

Also, after adding an item template, the highlight no longer appears when hovering over items.
Greg
Top achievements
Rank 1
 answered on 06 Oct 2010
2 answers
130 views
Hi,

we have a requirement to display a set of rows in a grid. The data that will be displayed consists of two types of entities(say active entities and inactive entities). When these entities are displayed in the single grid, i need to highlight the inactive entities by using a custom font-color (say red). But this custom font color will not be reqired for the other entities(active entities). Is there anyway to achieve this in telerik rad grid control in the server side code?

Ex: if the grid has 6 rows, i need the below listed functionality

Row 1 (active row) [normal color]
Row 2 (active row) [normal color]
Row 3 (inactive row) [red color]
Row 4 (active row) [normal color]
Row 5 (inactive row) [red color]
Row 6 (active row) [normal color]

Thanks,
Manoj
Manoj
Top achievements
Rank 1
 answered on 06 Oct 2010
2 answers
80 views
Hi there,
I have one question can i use ajax telerik controls in Sharepoint 2010  webpart with all features of Controls like radGrid,Radtooltip and radscheduler ?
well i can use Spradgrid but i dont want to do that for now .
Please advise me.


Ronak
Ronak
Top achievements
Rank 1
 answered on 06 Oct 2010
1 answer
83 views
Hi,

I'm wonder if I can hide (close) the raddock after 5 second (for example) of displaying it. In other words, the code must count 5 seconds and then close the raddock (The raddock is displayed immediately after opening the page).

Please, if it is possible, send me the required code,

Regrads,
Bader
Pero
Telerik team
 answered on 06 Oct 2010
5 answers
191 views
We are running ASP.NET AJAX controls on a VMWare virtual server running Windows Server 2008 R2 with (1) 2.30 GHz CPU and 2 GB RAM.  We have noticed that the website seems to hang each time you click on a new tab or load new data.  Looking at the CPU usage on the server, we have noticed spikes in CPU to 100% that correspond to each click on the client side.  I'd like to know if we need to beef up our server or if we need to optimize our site better.  It seems like we've done a good job of optimizing, we just haven't found hardware requirements for the RadControls and may be missing something there.  Please help!

Thanks!
Martin
Telerik team
 answered on 06 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?