Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
220 views
I have custom tooltip control which attach to a column
(every row), and it shows up fine, but if gets cut off by radgrid boundaries if tooltip is too big
or row (for which tooltip is showing up) close to  the footer. I played with z-index of tooltip but have no
luck. Any idea how to resolve this issue?

Thanks
Arun
Top achievements
Rank 1
 answered on 13 Mar 2014
4 answers
366 views
I dont know why I cant set width in percentage i.e.  when i am set the width <telerik:radchart width = "100%" its gives me error.

Is there any easy way to set the width as per resolution or set the width in percentage?

Please do the needful.

Thanks & Regards,
Shankar Gidwani
Danail Vasilev
Telerik team
 answered on 13 Mar 2014
7 answers
200 views
I am trying to create a rotator that has a button control with three images, then under those images there is text and then when you hit the button control three new images with three new text files show up.  I haven't seen any examples that show this functionality.  Can someone please provide an example of this.

Thanks in advance!
Slav
Telerik team
 answered on 13 Mar 2014
1 answer
80 views
Hi
 i have a button. I want to clear all the filter text on click of that button.
Princy
Top achievements
Rank 2
 answered on 13 Mar 2014
3 answers
60 views
Is there a way to add data driven text after all of the GroupContinued and GroupSplit strings.  I assume this would have to done in the ItemDataBound event or the ColumnCreated event?

Example
ParentFolder: 3020-20-02 Computer Hardware Purchases (Showing 24 of 68 items. Group continues on the next page.) <Add text here>
Kostadin
Telerik team
 answered on 13 Mar 2014
1 answer
180 views
Hello

i reproduce the TabStrip in my app webform, with the tab like firefox or chrome.

I add a imageurl with the cross to close the Tab.

I want to Click only on the image to close the tab.

It's possible ?

thanks
Olivier,
Nencho
Telerik team
 answered on 13 Mar 2014
1 answer
485 views
Hi I am doing a very simple example of showing a RadWindow on click of a Button. But the window never shows up. 

Here is the aspx page that I have

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RadWindow.aspx.cs" Inherits="DotNetExercises.RadWindow" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript">
        function click123() {
            alert("Hello");
            var oWnd = document.getElementById("RadWindow1");
            alert(oWnd);
            oWnd.show();
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" 
                Name="Telerik.Web.UI.Common.Core.js">
            </asp:ScriptReference>
            <asp:ScriptReference Assembly="Telerik.Web.UI" 
                Name="Telerik.Web.UI.Common.jQuery.js">
            </asp:ScriptReference>
            <asp:ScriptReference Assembly="Telerik.Web.UI" 
                Name="Telerik.Web.UI.Common.jQueryInclude.js">
            </asp:ScriptReference>
        </Scripts>
    </telerik:RadScriptManager>
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
    </telerik:RadWindowManager>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    </telerik:RadAjaxManager>
    <div>
        Welcome to the RadWindow Page.. 
    </div>
    <telerik:RadWindow ID="RadWindow1" runat="server" NavigateUrl="http://www.google.com">
    </telerik:RadWindow>
    <br />
    <asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="click123()" />
    <br />      
    </form>
</body>
</html>  








Marin Bratanov
Telerik team
 answered on 13 Mar 2014
10 answers
408 views
Hi,I need some help with adding column dynamicly by pressing button,
Example:
<asp:textbox runat="server" ID="txtName" />
 <asp:Button runat="server" ID="btnAddColumn" Text="Add Column" />
 <telerik:RadGrid runat="server" ID="gridData" AutoGenerateColumns="false" ShowHeader="true"   Width="100%" Height="500px" ShowStatusBar="true" >
        <MasterTableView  EditMode="InPlace" 
ShowHeader="true" ShowFooter ="true" ShowHeadersWhenNoRecords="true"  >
..........
 </MasterTableView>
    </telerik:RadGrid>

on server side ,on button click event i tryingh to add  GridBoundColumn with name from txtName
and HeaderText from txtName and DataField from txtName,I also updating my datasource with new column
by nothing,the Column is added (i testing it with additional postback button pressing) but there is no visible Header text on client side and the header text on server side is empty too,

    Dim ContainerColumn As New GridBoundColumn
                gridData.MasterTableView.Columns.Add(ContainerColumn)
                AddColumnToData(txtName.Text)
                ContainerColumn.Display = True
                ContainerColumn.HeaderText = txtName.Text
                ContainerColumn.DataField = txtName.Text
                ContainerColumn.UniqueName = ContainerColumn.DataField






Shinu
Top achievements
Rank 2
 answered on 13 Mar 2014
1 answer
159 views
I was wondering if you had an example of how you could use the radeditor with comments using a database to store the comments and radeditor selection.
For example -

A user saves some text in the radeditor - makes some comments etc saves the comments to the saved entry within the radeditor.  Next time they come into that saved entry they can see their comments tied to the saved entry.

Nikolay
Telerik team
 answered on 13 Mar 2014
5 answers
78 views
We experience this graphical glitch sporadically on many of our pages which utilise the RadGrid control but have been unable to find a cause.

Here is the code for this particular grid:

<telerik:RadGrid ID="gridUsers" runat="server" Width="1000" AutoGenerateColumns="false"  
                   AllowPaging="True" PageSize="10" AllowMultiRowSelection="false" OnNeedDataSource="gridUsers_NeedDataSource"
                  OnDeleteCommand="gridUsers_DeleteCommand" >
                <MasterTableView ClientDataKeyNames="UserKey,GroupID,GroupName,UserName,Description,EmailAddress,Timeout,DefaultHomePage,
                FullName,Phone,SMS,Address1,Address2,Address3,PostCode,Private,PrimaryContact,Comments,AllowLogon,ExportReportAccessLevel" DataKeyNames="UserKey,UserName" >
            <Columns>
            <telerik:GridBoundColumn DataField="UserKey" Visible="false" />
                 <telerik:GridBoundColumn DataField="GroupName" Visible="false" />
                  <telerik:GridBoundColumn DataField="GroupID" Visible="false" />
 
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, USERNAME %>" DataField="UserName" HeaderStyle-Width="150px">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, DESCRIPTION %>" DataField="Description"  HeaderStyle-Width="150px">
                </telerik:GridBoundColumn>  
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, EMAIL_ADDRESS %>" DataField="EmailAddress"  HeaderStyle-Width="150px">
                </telerik:GridBoundColumn
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, SESSION_TIMEOUT %>" DataField="Timeout"  HeaderStyle-Width="100px">
                </telerik:GridBoundColumn>  
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, CONTACT_NAME %>" DataField="FullName"  HeaderStyle-Width="150px">
                </telerik:GridBoundColumn
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, PHONE %>" DataField="Phone"  HeaderStyle-Width="150px">
                </telerik:GridBoundColumn
                <telerik:GridBoundColumn HeaderText="<%$ Resources:Common, PRIMARY_GROUP %>" DataField="GroupName"  HeaderStyle-Width="150px">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="SMS" Visible="false" />
                 <telerik:GridBoundColumn DataField="Address1" Visible="false" />
                  <telerik:GridBoundColumn DataField="Address2" Visible="false" />
                  <telerik:GridBoundColumn DataField="Address3" Visible="false" />
                 <telerik:GridBoundColumn DataField="PostCode" Visible="false" />
                  <telerik:GridBoundColumn DataField="Private" Visible="false" />
                   <telerik:GridBoundColumn DataField="PrimaryContact" Visible="false" />
                    <telerik:GridBoundColumn DataField="Comments" Visible="false" />
                     <telerik:GridBoundColumn DataField="AllowLogon" Visible="false" />
   <telerik:GridBoundColumn DataField="ExportReportAccessLevel" Visible="false" />
   <telerik:GridBoundColumn DataField="DefaultHomePage" Visible="false" />
            </Columns>
        </MasterTableView>
        <PagerStyle Mode="Slider" AlwaysVisible="true" ></PagerStyle>
        
       <ClientSettings>
           <ClientEvents OnRowContextMenu="DisplayUsersContextMenu" OnRowSelected="gridUsers_onItemSelect"/>
            <Selecting AllowRowSelect="true" />
            
        </ClientSettings>
                </telerik:RadGrid>
Venelin
Telerik team
 answered on 13 Mar 2014
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?