Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
108 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
173 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
180 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
146 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
341 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
49 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
152 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
184 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
2 answers
78 views
Hello, I have an issue with the Filter control in a user control. when clicking on the field or operator dropdown the page posts back to show the directory listing of the folder that contains the user control. The url shows the user control folder with a # sign in the end. Its similar to this issue

http://www.telerik.com/community/forums/aspnet-ajax/scheduler/directory-listing-shows-when-scheduler-buttons-clicked-ie7.aspx

I'm using 2010 Q3 version of telerik. Any help please?

Thanks,
Phani



Maria Ilieva
Telerik team
 answered on 16 Feb 2011
3 answers
116 views
I've tried this on three different machines now, all with Visual Studio 2008 Professional with .NET 3.5 and SP1 for both, targeting a standard .NET 2.0 ASP.NET Web Application, all are VISTA Ultimate with SP1 as well.  Any attempts to right-click a toolbox category and selecting Choose Items causes the usual lengthy delay, then immediately crashes and closes Visual Studio.  This only happens when targeting a .NET 2.0 project/solution.  As such, I'm unable to use the Telerik Rad Controls for ASP.NET AJAX on any of our .NET 2.0 projects.  I've checked for differing framework DLLs in the GAC, and have resolved any issues there, and still the same problem.

Is anyone else experiencing this, or can point me in a direction of where to look next?  No events are registered, and no relevant log files indicated anything amiss or that addresses this problem.

Thank you!

--Scott Wade--

Sebastian
Telerik team
 answered on 16 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?