Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
66 views
Is it possible to bind a tool tip to a particular RadComboBoxItem?
Svetlina Anati
Telerik team
 answered on 30 Jun 2008
3 answers
258 views
I have a tooltip in a user control... and there is a form in it...
The textboxes are standard... with a watermark extender... and a validation callout extender...

when the validator extender comes up.. (required field etc...) the bubble is a little broke up...(the little arrow part)

this only happens inside of the tooltip...

the form can be on the same page as the contact form.. (which has the same set up.. just not in the tooltip) and the bubbles for the validator extenders show properly..

http://giovanniscoalfirepizza.com/contact

hover over the word Specials on the left side of the black header.... to see this behavior.

How to fix the bubble is my question...


thanks,

Jeff
Svetlina Anati
Telerik team
 answered on 30 Jun 2008
3 answers
109 views
Is it possible to show a tooltip that is larger than the usercontrol itself show correctly when in a RadDock?

I have a usercontrol that is 100x50 and I want to show a tooltip that is 200x100. But currently it just gets created inside the usercontrol and cannot not be viewed properly.

Seems as though this problem only exists when in a Dock control.

I saw another similar post dated 07/2007.
Svetlina Anati
Telerik team
 answered on 30 Jun 2008
1 answer
117 views
After I have updated to latest telerik.web.ui 2008.1.619.35 from 2008.1.515.35, my dockstates won't apply to a newly created dock.

Why does this work with 2008.1.515.35, but not with the new?:

RadDock dock = new RadDock();
DockState d = new DockState();
d.Text = "sdfsdf";
d.Tag ="sad";
d.UniqueName = "asdasd";
dock.ApplyState(d);

RadDockLayout1.Controls.Add(dock);


Obi-Wan Kenobi
Top achievements
Rank 1
 answered on 30 Jun 2008
3 answers
169 views
I liked your product RadControls for ASP.NET very much, but missing the viewer for RTF - is there any timeframe for such a product.
Rumen
Telerik team
 answered on 30 Jun 2008
2 answers
171 views
Hi,

I'm trying to filter a grid from by selecting the filter from a combo.

Let's assume a SQL table with 2 columns: Id (int), Date (DateTime, could be null). The table has rows where Date is null and other rows where it isn't.
 
I'd like to filter the Date column with the follwing: NoFilter, IsNull, NotIsNull.

I see the content of the grid change but not as expected. The IsNull and NotIsNull filters doesn't work as I'm expecting.

Here's my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication4._Default" %> 
 
<%@ Register Assembly="RadGrid.Net2" Namespace="Telerik.WebControls" TagPrefix="rad" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <asp:ScriptManager ID="ScriptManager1" runat="server" /> 
    <div> 
        <table> 
            <tr> 
                <td> 
                    <asp:Label ID="blFilter" runat="server" Text="Filter:" Width="75" /> 
                </td> 
                <td> 
                    <asp:DropDownList ID="DropDownListFilter" runat="server" Width="120" OnSelectedIndexChanged="Filter_OnSelectedIndexChanged" 
                        AutoPostBack="True" Style="margin-bottom: 0px">  
                        <asp:ListItem Value="NoFilter">All</asp:ListItem> 
                        <asp:ListItem Value="NotIsNull">WithDate</asp:ListItem> 
                        <asp:ListItem Value="IsNull" Selected="True">DateIsNull</asp:ListItem> 
                    </asp:DropDownList> 
                </td> 
            </tr> 
        </table> 
    </div> 
    <div> 
        <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None" 
            OnPreRender="RadGrid1_PreRender" AllowFilteringByColumn="True">  
            <MasterTableView AutoGenerateColumns="False" DataSourceID="SqlDataSource1">  
                <RowIndicatorColumn Visible="False">  
                    <HeaderStyle Width="20px"></HeaderStyle> 
                </RowIndicatorColumn> 
                <ExpandCollapseColumn Visible="False" Resizable="False">  
                    <HeaderStyle Width="20px"></HeaderStyle> 
                </ExpandCollapseColumn> 
                <Columns> 
                    <telerik:GridBoundColumn DataField="Id" DataType="System.Int64" HeaderText="Id" SortExpression="Id" 
                        UniqueName="Id">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="Date" DataType="System.DateTime" HeaderText="Date" 
                        SortExpression="Date" UniqueName="Date">  
                    </telerik:GridBoundColumn> 
                </Columns> 
                <EditFormSettings> 
                    <PopUpSettings ScrollBars="None"></PopUpSettings> 
                </EditFormSettings> 
            </MasterTableView> 
        </telerik:RadGrid> 
    </div> 
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:TestDbConnectionString %>" 
        SelectCommand="SELECT [Id], [Date] FROM [Table_1]"></asp:SqlDataSource> 
    </form> 
</body> 
</html> 
 




public partial class _Default : System.Web.UI.Page  
    {  
        protected void Page_Load(object sender, EventArgs e)  
        {  
 
        }  
 
        protected void Filter_OnSelectedIndexChanged(object sender, EventArgs e)  
        {  
            ListItem item = DropDownListFilter.Items[DropDownListFilter.SelectedIndex];  
            Filter(item.Value);  
        }  
 
        protected void RadGrid1_PreRender(object sender, EventArgs e)  
        {  
            // Filter on initial load  
            if (!Page.IsPostBack)  
            {  
                Filter("IsNull");  
            }  
 
        }  
 
        private void Filter(string filter)  
        {  
            GridFilteringItem filterItem = RadGrid1.MasterTableView.GetItems(GridItemType.FilteringItem)[0] as GridFilteringItem;  
            filterItem.FireCommandEvent("Filter", new Pair(filter, "Date"));  
 
        }  
    } 

Any ideas?

Thanks,
Pascal

Pascal
Top achievements
Rank 1
 answered on 30 Jun 2008
1 answer
85 views
Hello!

Is there possibility to create something like this:

            <asp:HyperLink NavigateUrl="#" ID="photosHyperLink" runat="server" Text="Add new photos" /></h1> 
        <telerik:RadWindow ID="RadWindow1" runat="server" OpenerElementID="<%# photosHyperLink.ClientID %>"> 
            <telerik:RadUpload ID="RadUpload1" runat="server" /> 
        </telerik:RadWindow> 

When I use this example then when I click on link RadWindow is showing but without any content (empty).

Thanks
Georgi Tunev
Telerik team
 answered on 30 Jun 2008
7 answers
185 views
Hi,

I have this code:
<radW:RadWindowManager ID="rwm" runat="server" Skin="Blue" Behavior="Maximize,Close,Move"> 
    <Windows> 
        <radW:RadWindow Modal="true" Height="500px" Width="550px" VisibleOnPageLoad="false" 
            ID="Test" Title="Test" runat="server" Left="10" Top="10" ShowContentDuringLoad="false" NavigateUrl="Test.aspx" /> 
    </Windows> 
</radW:RadWindowManager> 





And i am opening the window on client side

var oManager = GetRadWindowManager(); 
var oWnd = oManager.GetWindowByName('Test'); 
oWnd.Show(); 

What i would like to do is to call a method on Test.aspx, that will put a value in an input element
How can i do it?


Georgi Tunev
Telerik team
 answered on 30 Jun 2008
2 answers
86 views

Hello,
I developed a sharepoint site using ASP.NET AJAX 2008.1.415.35 (demo)with a chart control. It worked fine no problem. Just recently, we purchased the full version ASP.NET AJAX 2008.1.619. I changed the web.config file to reflect the new assembly version, but now I’m getting the following JavaScript error Telerik.Charting.Styles.SkinnablePropertyAttribute.ctor(). How can I solve this problem

Thanks,
Moe

Giuseppe
Telerik team
 answered on 30 Jun 2008
1 answer
141 views
Hi all,
I have two questions:
1. Is it possible to set the dropdown properties (width etc) of FontName in the toolfile? Using toolfile makes the dropdowns shrink. What can be done if using a toolfile?

2. I have \App_Data\RadSpell\en-US.tdf file missing error message eventhough it is there, and the RadSpell.Dialog.resx is there to in the App_GlobalResources folder. I got the message in pages with and without masterpage. What else could i be missing?

Thanks in advance,
Rumen
Telerik team
 answered on 30 Jun 2008
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?