Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
155 views
I am having an issue with a lot of columns that the headers and items do not line up properly when using non-resizable columns, scrolling and IE 8 Compatibility mode. They seem to be shifting to the left some. Is there a style fix or something for this. See attached screenshot and code below. Thanks in advance.

<table align="center" width="99%" style="table-layout:fixed">
    <tr>
        <td>
            <telerik:RadGrid ID="rgMelissaOutputReport_Report" runat="server" 
                AllowFilteringByColumn="False" 
                AllowPaging="True" 
                AllowSorting="True"
                ClientSettings-AllowColumnHide="true" 
                AutoGenerateColumns="True" 
                ShowGroupPanel="False"
                ShowFooter="False"
                EnableHeaderContextMenu="true"
                OnNeedDataSource="rgMelissaOutputReport_Report_NeedDataSource"
                OnItemDataBound="rgMelissaOutputReport_Report_ItemDataBound"
                OnPageSizeChanged="rgMelissaOutputReport_Report_PageSizeChanged"
                OnPageIndexChanged="rgMelissaOutputReport_Report_PageIndexChanged"
                OnExcelExportCellFormatting="rgMelissaOutputReport_Report_ExcelExportCellFormatting" 
                ExportSettings-IgnorePaging="true"
                ExportSettings-OpenInNewWindow="true"
                ExportSettings-ExportOnlyData="true" 
                CssClass="RadGrid_Default RadGrid_Default2">
            <MasterTableView
                CommandItemDisplay="Top"
                CommandItemSettings-ShowAddNewRecordButton="false"
                PageSize="50">
            <HeaderStyle Wrap="false" />
            <ItemStyle Wrap="false" />
            <RowIndicatorColumn>
            <HeaderStyle Wrap="false"></HeaderStyle>
            </RowIndicatorColumn>
            <ExpandCollapseColumn>
            <HeaderStyle Wrap="false"></HeaderStyle>
            </ExpandCollapseColumn>
            <NoRecordsTemplate>
            <asp:Label ID="lblNoTotalsRecords" runat="server" CssClass="LabelBold" Text="No records for the filtering selections you have chosen."></asp:Label>
            </NoRecordsTemplate>
            </MasterTableView>
                <ClientSettings 
                    Resizing-AllowColumnResize="false"
                    EnableRowHoverStyle="false" 
                    ReorderColumnsOnClient="false">
                    <Selecting AllowRowSelect="false" />
                    <Scrolling AllowScroll="True"
                    UseStaticHeaders="True" />
                    <ClientEvents OnCommand="rgMelissaOutputReport_Report_RaiseCommand" />
                </ClientSettings>
                  
            </telerik:RadGrid>
        </td>    
    </tr>
</table>
Pavlina
Telerik team
 answered on 16 Feb 2011
7 answers
238 views
Hi!

We just updated our site to use .net 4.0 and also we updated AjaxControlToolkit to version 4.1.40412.2. Im also pretty sure we use the 4.0 versions of telerik dll (2010.3.1109.40).
After the updates RadFileExplorer stoped working as it did before. I have attached a screenshot.

The problem is that when i click on an folder in the left pane, the animation starts in the right pane but it never ends and I cant see the content of my folder. Although when the control binds the first time I can se the contents of the root-folder and open the files there etc.

Any ideas what Im missing here?

Regards,

Christian
Andrey
Top achievements
Rank 1
 answered on 16 Feb 2011
1 answer
122 views
Is there a way to change the padding in the inline edit form? The default form is not formatted well, everything is pushed all the way to the left against the border, can it be styled or controlled?

Thanks.
Galin
Telerik team
 answered on 16 Feb 2011
5 answers
185 views
I'm having a problem with the chrome RadTextBox 100%.
He did not display the field. As if I had to be hidden.

Version: 2010.3.1109.40

Sample code used:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <table width="500px">
        <tr>
            <td>
                <telerik:RadTextBox ID="RadTextBox1" runat="server" Skin="Vista" Width="100%">
                </telerik:RadTextBox>
            </td>
        </tr>
    </table>
    </form>
</body>
</html>


This is happening after an upgrade of the chrome.
In other browsers this problem does not happen!
Rudá Cunha
Top achievements
Rank 2
 answered on 16 Feb 2011
3 answers
203 views

Hi all,

I wrote java script function to handle: ClientEvents -> OnRowSelecting 

 function rowSelecting(sender, args) { .... }
           
My question is: can I ( and how ) determine whether this event has been rised
by clicking data row or by checking a header checkbox of GridClientSelectColumn ?
I was trying to retrieve it from sender but I failed. Does anyone know how to do it ?

Thx from advance

Tomasz
Top achievements
Rank 1
 answered on 16 Feb 2011
1 answer
156 views
Hi,

I have a radgrid in a pane as well as a deatils view in another pane on the same page. This is what i have been battling with On Row Double click, the  Rad Grid selected row data show display in Details View but at this point i just get data from the first row regardless i click the second row, the first row data always appears. My radgrid  uses entityframework and is bound programatically, while may detailsView data source is also entity data source but is not bound programatically.

Thanks in advance

Thabiso.
Shinu
Top achievements
Rank 2
 answered on 16 Feb 2011
3 answers
361 views
Hello

I'm trying to use a series of tooltips displayed vertically as containers for text on a message-board type page, similar to how a list of of sent and received text messages looks on an iPhone or in the new blackberry OS.

If I set VisibleOnPageLoad="true" and HideEvent="ManualClose" I get close to what I'm trying to accomplish, but there is an X button visible in the top right corner - can I hide that button so that users are unable to even manually close the tooltip?

Any suggestions or a recommendation for a different approach are greatly appreciated - thanks

Brian
Svetlina Anati
Telerik team
 answered on 16 Feb 2011
1 answer
56 views
Hi,

I'm having a problem when I try to insert on a grid. I'm using OnItemDataBound and when it's an insert command I can assing values to any field but my problem comes when:

I have a dropdowncolumn and when the user selects some value in specific a window shows up and you can do some operations there, when you finish you click the submit button and the window returns the value you obtain. I already check and the value is correct and the window works fine. But I can't put that value on the corresponding field.

For example, the dropdowncolum has values of types of food, if you select the option 'fruit' a window is open with all the types of fruit, then you select all the items you want and the window returns a list with all the names you selected. What I want is to put automatically the value returned by the window on the next field (names), but I can't do that, I can't put that value on the field

Do you have any examples???

Thanks in advance
Pavlina
Telerik team
 answered on 16 Feb 2011
7 answers
183 views
Hi,

As a newbie to the RAD controls having just recently purchased them i am having issues displaying a RAD Rotator XML Feed inside an AJAX tab container. The first tab contains the XML feed in the rotator, the second tab has a rad textbox (which i can see no probs), I just cannot view the XML feed on the page, yet if i view source the content is definitely there from the XML feed.....is there any issue that i dont know about using the RAD Rotator XML Feed with AJAX tab container? The rad rotator work without the tab containers being on the same page.

 
<div id="page_content_home">  
        &nbsp;  
    <cc1:TabContainer ID="tcHomePage" runat="server" CssClass="sales_tabs_home" ActiveTabIndex="0">  
          
        <cc1:TabPanel ID="tpNews" runat="server">  
            <contenttemplate><br /> 
            <telerik:RadRotator ID="RadRotator1" runat="server" DataSourceID="xmlDataSource1" ScrollDirection="Up" ScrollDuration="2000" Width="450px" Height="330px"   
             FrameDuration="1" InitialItemIndex="-1">  
                 <ItemTemplate> 
                            <div class="newsFeed">  
                                <href='<%# XPath("link") %>'>  
                                    <%# System.Web.HttpUtility.HtmlEncode(XPath("title").ToString())%> 
                                </a> 
                                <br /><%# XPath("description") %><br /> 
                                <%# XPath("pubDate") %> 
                            </div> 
                        </ItemTemplate> 
 
            </telerik:RadRotator> 
          
                      
              
            </contenttemplate> 
            <headertemplate>News</headertemplate> 
        </cc1:TabPanel> 
          
        <cc1:TabPanel ID="tpMatchInfo" runat="server">  
            <contenttemplate> <br /> 
                <telerik:RadTextBox ID="RadTextBox1" runat="server" Text="radtextbox" Width="125px">  
                </telerik:RadTextBox><br /> 
                This will be the latest match information  
            </contenttemplate> 
            <headertemplate>Match Info</headertemplate> 
        </cc1:TabPanel> 
          
        <cc1:TabPanel ID="tpLatestPredictions" runat="server" > 
            <contenttemplate> <br /><br /> 
                This the latest match prediction from users                 
            </contenttemplate> 
            <headertemplate>Latest Predictions</headertemplate> 
        </cc1:TabPanel> 
          
        <cc1:TabPanel ID="tpComments" runat="server" > 
            <contenttemplate><br /><br /> 
                This is the latest comments from users  
            </contenttemplate> 
            <headertemplate>Supporter Comments</headertemplate> 
        </cc1:TabPanel> 
          
  
          
          
       
                         
        
          
     
           
            
            
            
       
    </cc1:TabContainer> 
       
            <asp:XmlDataSource ID="xmlDataSource1" XPath="rss/channel/item" runat="server" DataFile="http://www.finning.co.uk/rss/">  
                </asp:XmlDataSource> 
</div>     

 

Tsvetie
Telerik team
 answered on 16 Feb 2011
5 answers
206 views
Hi all,

I am new to telerik controls.... I have a radgrid in my application where the columns are generated at runtime based on user selection (user selects the display columns from a checkbox list, and also the number of columns are not fixed). I loop through the collection, and add the colums to the grid in code-behind.  I use the need_DataSource event to bind the grid. The grid displays the data columns correctly based on what the user has clicked. When I click on the column header to sort, the header text disappears, and the column data remain unaltered.
 
I guess I am calling the function which adds columns to the grid in the wrong place. Please any help regarding this would be appreciated. 

Pavlina
Telerik team
 answered on 16 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?