Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
124 views
Hi,

I have a really simple test page for RadSearchbox as following.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sample.aspx.cs" Inherits="Sample" %>
 
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager2" 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>
        <div>
           
            <br />
            <telerik:RadSearchBox ID="RadSearchBox1" runat="server"
                DataKeyNames="CONTACT,ID" DataSourceID="SqlDataSource1" DataTextField="CONTACT"
                DataValueField="CONTACT" EmptyMessage="test" >
            </telerik:RadSearchBox>
            <asp:SqlDataSource ID="SqlDataSource1" runat="server"
                ConnectionString="<%$ ConnectionStrings:Example_ConnectionString %>"
                SelectCommand="SELECT [ID], [CONTACT] FROM [CONTACTS]"></asp:SqlDataSource>
            
        </div>
    </form>
</body>
</html>
As you can see it is nothing more than bind search box with a sql datasource.

when I try to search I could get all the result back as I am expecting, but when I click on any result item, the Radsearchbox text is not filled in as item's text. 

Could you help here?

Telerik ASP.NET Ajax control ver. v.2013.1.417.40
Thank you so much.
Support
Top achievements
Rank 1
 answered on 17 Jun 2013
4 answers
120 views
It seems there is a problem with the RadGrid and the MetroTouch skin. The "Add new record" button (and other command item buttons) no longer have an icon. But in the previous version it was there. Now its just an empty circle with no "plus" sign.

I have attached a screen shot of what it looks like

Thanks
Maria Ilieva
Telerik team
 answered on 17 Jun 2013
3 answers
97 views
Hi,

In the attached screen shot, I have some, but not all of the gridlines turned off. What I want is an ultra-clean presentation with no background grid at all and no x or y axis labels. Here is what I am doing right now but it results in the chart shown in the screen shot. Any help greatly appreciated.

Dim rc As New RadChart

rc.AutoLayout = True

rc.AutoTextWrap = True

rc.ChartTitle.Visible = False

rc.Legend.Visible = False

rc.PlotArea.XAxis.Appearance.LabelAppearance.Visible = False

rc.PlotArea.YAxis.Appearance.LabelAppearance.Visible = False

rc.PlotArea.XAxis.Appearance.MajorGridLines.Visible = False

rc.PlotArea.YAxis.Appearance.MajorGridLines.Visible = False

rc.PlotArea.XAxis.Appearance.MinorGridLines.Visible = False

rc.PlotArea.XAxis.Appearance.MinorGridLines.Visible = False

rc.PlotArea.YAxis.Appearance.LabelAppearance.Visible = False

rc.PlotArea.XAxis.Appearance.LabelAppearance.Visible = False

            rc.PlotArea.XAxis.Appearance.MajorTick.Visible = False

            rc.PlotArea.XAxis.Appearance.MinorTick.Visible = False

            rc.PlotArea.YAxis.Appearance.MajorTick.Visible = False

            rc.PlotArea.YAxis.Appearance.MinorTick.Visible = False

Rosko
Telerik team
 answered on 17 Jun 2013
7 answers
211 views
Hi..
I added the following to my master page  (same code from your samples). But it doesn't work.. the screen flashes and but doesn't change. I have a ref to Telerik.Web.Ui.Skins... what am i doing wrong or missing?   thx again!!


                <div class="skin-chooser">
                    <label for="ctl00_SkinChooser_Input" class="skinLabel">Skin:</label>
                    
                     <telerik:RadSkinManager runat="server" ID="RadSkinManager1" Skin="Sunset" ShowChooser="true"
                        PersistenceKey="Skin" PersistenceMode="Session" OnPreRender="RadSkinManager1_PreRender"/>
                                 
                </div>


and

   protected void RadSkinManager1_PreRender(object sender, EventArgs e)
        {
            RadComboBox skinChooser = RadSkinManager1.FindControl("SkinChooser") as RadComboBox;
            foreach (RadComboBoxItem item in skinChooser.Items)
            {
                if (item.Text == "Silk" || item.Text == "Glow" || item.Text == "BlackMetroTouch" || item.Text == "MetroTouch")
                {
                    item.Visible = false;
                }
            }
        }





David
Top achievements
Rank 1
 answered on 17 Jun 2013
1 answer
92 views
Is there any method, straightforward or otherwise, for inserting blank space in a grid/pivotgrid? The catch is that I don't want it to be blank cells. It's along the lines of, here's a table, every 10 lines we want a blank row (or space) for readability that has no effect on the data itself. Is there anyway to do that without inserting blank cells?

I'm erring on the side of their isn't. Blank cells will throw issues with some of myuses of the grid. 
Angel Petrov
Telerik team
 answered on 17 Jun 2013
1 answer
76 views
We would like to purchase the total toolkit for Asp.Net Ajax. What is the total process starting from purchase to receiving of the toolkit
Jayesh Goyani
Top achievements
Rank 2
 answered on 17 Jun 2013
1 answer
86 views
http://demos.telerik.com/aspnet-ajax/calendar/examples/functionality/rendermode/defaultcs.aspx

In chrome when I toggle to lightweight and click "next month" it's like a 3-4 second wait between click and nav

Just me?
Milena
Telerik team
 answered on 17 Jun 2013
1 answer
194 views
Hello

We seem to have a weird problem:
We have a grid with GridBoundColumns for all data except for columns with date, for which we use GridDateTimeColumn. Because we need to show full date and time in fields but only filter on date part, we set the property EnableTimeIndependentFiltering="true". After that the grid filters (filter below headers) worked fine but when using the filter from the HeaderContextMenu (on any field) we got browser debugger with exception "Object not set to a reference of an object". If EnableTimeIndependentFiltering="false" the filters work without exceptions being thrown, but in that case we have the problem with date filtering with "EqualTo" returning no results.

We tried to debug the problem, but in code-behind we got to ItemCommand event method, but right after that got the error before getting to OnNeedDataSource.

Is this a bug or are we missing something?

Thank you for your answers in advance
Angel Petrov
Telerik team
 answered on 17 Jun 2013
3 answers
145 views
hi 
the plus/minus icons looks cuted in RTL mode, 
on all skins .

the file attached  is from http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/righttoleft/defaultcs.aspx


Kate
Telerik team
 answered on 17 Jun 2013
2 answers
136 views
Is there a way to select and display already selected tokens for the AutoCompleteBox? I can't see anything in the documentation or demos about this.

I want to show existing selections, while still allowing the user to add to or remove their selections.

Thanks
Mathew
Top achievements
Rank 1
 answered on 17 Jun 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?