Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
138 views
I am using the Q3 2012 release of ASP.NET AJAX. The ForeColor property doesn't look like it is applying to my text. When I inspected the tooltip in chrome, it doesn't look like that color is being overridden by any of my styles. Is this property broken in the ToolTip control?

Edit: I just tested CssClass and that isn't being applied to my text either.
Marin Bratanov
Telerik team
 answered on 27 Feb 2013
1 answer
184 views
hi...

this is my web page where i use a radlistview:
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ImageButtonRicerca">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="Panel1"
LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadFormDecorator ID="QsfFromDecorator" runat="server"
DecoratedControls="Textbox" Skin="Sunset" />
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"
Skin="Simple" BorderColor="#D5842B" BorderStyle="Double" BorderWidth="1px">
</telerik:RadAjaxLoadingPanel>
<div align="center" class="backgroundup">
<div align="center" class="banner">
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="85px" width="1024px">
<div style="padding-left:200px;">
<div class="profilesearch">
<asp:Panel ID="Panel1" runat="server" DefaultButton="ImageButtonRicerca" Height="55px">
<table style="width:620px; padding-top:6px">
<tr>
<td style="width: 360px; margin: 0px; border: 0px; padding: 0px; text-align: right;">
<telerik:RadTextBox ID="Txt_ricerca1" Runat="server"
EmptyMessage="Nominativo o azienda o categoria" Width="350px" Height="23px" Skin="" Font-Italic="True"
Font-Names="Verdana">
<EmptyMessageStyle ForeColor="Gray" Font-Italic="True" Font-Names="Verdana" />
<HoveredStyle Font-Italic="True" Font-Names="Verdana" ForeColor="#993300" />
</telerik:RadTextBox>
</td>
<td style="width: 260px; margin: 0px; border: 0px; padding: 0px; text-align: left;">
<telerik:RadTextBox ID="txt_ricerca2" Runat="server"
EmptyMessage="Città di residenza" Width="250px" Height="23px" Skin="" Font-Italic="True"
Font-Names="Verdana">
<EmptyMessageStyle ForeColor="Gray" Font-Italic="True" Font-Names="Verdana" />
<HoveredStyle Font-Italic="True" Font-Names="Verdana" ForeColor="#993300" />
</telerik:RadTextBox>
</td>
<td style="width: 80px; margin: 0px; border: 0px; padding: 0px;">
<asp:ImageButton ID="ImageButtonRicerca" runat="server"
ImageUrl="~/Image/cerca.png" />
</td>
</tr>
</table>
</asp:Panel>
</div>
</div>
</telerik:RadAjaxPanel>
</div>
<telerik:RadAjaxPanel ID="RadAjaxPanel2" runat="server" Width="700px"
HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1">
<div class="divresultmenu">
<telerik:RadMenu ID="RadMenu1" runat="server" Skin="Office2010Silver"
OnItemClick="RadMenu1_ItemClick">
<Items>
<telerik:RadMenuItem runat="server" Font-Names="Verdana" Font-Size="Small"
Text="Home page" Owner="RadMenu1">
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" IsSeparator="True" Text="Root RadMenuItem2">
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Font-Names="Verdana" Font-Size="Small"
Text="Registrati in Trycontact">
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
</div>
<div class="resultseparator">
</div>
<div style="font-family:Verdana" id="div_radlistview">
<telerik:RadListView ID="RadListView1" runat="server" DataKeyNames="idutente"
ItemPlaceholderID="Contenitore" AllowPaging="True" Skin="Office2010Silver"
Width="655px">
<LayoutTemplate>
<fieldset id="FieldSet1">
<legend>Risultati della ricerca:</legend>
<asp:PlaceHolder ID="Contenitore" runat="server"></asp:PlaceHolder>
<div>
<div style="float: left; margin-left: 30%;">
<telerik:RadButton ID="btnFirst" runat="server" Text="Prima" CommandName="Page" CommandArgument="First"
Enabled="<%#Container.CurrentPageIndex > 0 %>" Skin="Office2010Silver">
</telerik:RadButton>
<telerik:RadButton ID="btnPrev" runat="server" Text="Precedente" CommandName="Page" CommandArgument="Prev"
Enabled="<%#Container.CurrentPageIndex > 0 %>" Skin="Office2010Silver">
</telerik:RadButton>
<span style="vertical-align: top; position: relative; top: 4px">Pagina
<%#Container.CurrentPageIndex + 1 %>
di
<%#Container.PageCount%></span>
<telerik:RadButton ID="btnNext" runat="server" Text="Successiva" CommandName="Page" CommandArgument="Next"
Enabled="<%#Container.CurrentPageIndex + 1 < Container.PageCount %>" Skin="Office2010Silver">
</telerik:RadButton>
<telerik:RadButton ID="btnLast" runat="server" Text="Ultima" CommandName="Page" CommandArgument="Last"
Enabled="<%#Container.CurrentPageIndex + 1 < Container.PageCount %>" Skin="Office2010Silver">
</telerik:RadButton>
</div>
</div>
</fieldset>
</LayoutTemplate>
<ItemTemplate>
<div class="item">
<div class="image">
<asp:Image ID="Image1" runat="server" ImageUrl='<%# CType(Container.DataItem, PropertyUtente).imageprofile%>' Height="120px" Width="110px"/>
</div>
<div class="content">
<div class="user">
<b><%# CType(Container.DataItem, PropertyUtente).utente%></b>
</div>
<div class="description_category">
Categoria: <%# CType(Container.DataItem, PropertyUtente).Desccategoria%>
</div>
<div class="description_city">
Città: <%# CType(Container.DataItem, PropertyUtente).Desccomune%></div>
<div class="description_phone">
Telefono: <%# CType(Container.DataItem, PropertyUtente).Telefono%></div>
<div class="description_email">
Email: <%# CType(Container.DataItem, PropertyUtente).Email%>
</div>
<div class="item_button">
<telerik:RadButton ID="RadButton1" runat="server" Text="Visualizza biglietto completo" Width="170px" Skin="Office2010Silver"
OnClick="RadButton1_Click">
</telerik:RadButton>
</div>
</div>
</div>
</ItemTemplate>
</telerik:RadListView>
</div>
</telerik:RadAjaxPanel>
<div align="center" style="background-image: url('Image/backgroundTeca2.jpg'); background-repeat: repeat-x; height: 33px;" id="under">
</div>
</div>
</form>

this is my code behind with i load racord in the radlistview:


Imports System
Imports System.Data
Imports System.Web
Imports System.Data.SqlClient
Imports Telerik.Web.UI
Imports System.IO
Imports System.Web.UI.HtmlControls
     
Private Loadsearch As New GestoreUtente
#Region "routine"
    Private Sub Carica_risultati(ByVal _str1 As String, ByVal _str2 As String)
        Dim lista As List(Of PropertyUtente) = Loadsearch.Search(_str1, _str2)
        RadListView1.DataSource = lista
        RadListView1.DataBind()
    End Sub
#End Region
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not IsPostBack Then
            Dim _str1, _str2 As String
            _str1 = Request.QueryString("_str1")
            _str2 = Request.QueryString("_str2")
            Carica_risultati(_str1, _str2)
        End If
    End Sub
 
    Protected Sub ImageButtonRicerca_Click(sender As Object, e As System.Web.UI.ImageClickEventArgs) Handles ImageButtonRicerca.Click
        Carica_risultati(Txt_ricerca1.Text, Txt_ricerca2.Text)
    End Sub

When i load this page of another page and start the event page_load, the record in the radlistview see all perfect.
But if i start the search in this page and i click on button search, the query sql function perfect and load the new record but dont see in the radlsitview. i always see the same records...why?

Marin
Telerik team
 answered on 27 Feb 2013
1 answer
106 views
in hirarichal radgrid inside footertemplate have panel here set visible false then click button event panel visible true
Princy
Top achievements
Rank 2
 answered on 27 Feb 2013
1 answer
122 views
Hi
i have set the OpenInNewWindow ="false" but it's not working in case of https site in internet explorer but it's working in other browser like mozilla and even same functionality is working in http site using internet explorer.

how do i rectify this issue , is there any setting i have change for internet explorer

i don't get any ideas to rectify this issue..

Please help someone on the above issue..


Thanks
San
Maria Ilieva
Telerik team
 answered on 27 Feb 2013
1 answer
70 views
I am trying to make it look like 2 columns are one. See attached file, Column Saturday and C. C has no border so its almost there but I want a border on the top and bottom. What CSS can I use?

(They need to be edited separably that is why I am not concatenating them in the data source or with a template column. )

Thanks
Kostadin
Telerik team
 answered on 27 Feb 2013
1 answer
216 views
I am new to Telerik Controls. I need a RadialGuage control which binds the table from database and shows the output.
Danail Vasilev
Telerik team
 answered on 27 Feb 2013
3 answers
135 views

I have several suggestions to make this control more useful when dealing with large trees:

 

  • Implement (vertical) scrollbars, because when dealing with a large tree, the element gets way to big
  • Allow typing in the textfield to filter the items, for example:

Having this tree

+ Cheeses
|--- Gouda
|--- Brie
+ Wines
|--- Zinfandel
|--- Pinot Noir
|--- Cabernet Sauvignon

Typing "Noir" in the combo would filter the items of the trees and yield the following tree:

+ Wines
|--- Pinot Noir

  •  Optional showing the complete or partial path to the chosen Item with a configurable separator. Choosing "Pinot Noir" with a path separator ">" would yield the following in the textbox: Wines > Pinot Noir 

Is any of this possible? Thanks!

Peter Filipov
Telerik team
 answered on 27 Feb 2013
1 answer
188 views
Is it possible to populate a RadSchedule and then extract the list of appointments on a given day as a list?

The reason I need to do this being that a client would like their daily appointments added to a report but I cannot just query them from the database as I need all appointments run through the scheduler's recurrence engine first.

I am aware of a method suggested to allow recurrence engine support within the database - http://blogs.telerik.com/aspnet-ajax/posts/08-08-04/working-with-radscheduler-recurring-appointments-on-sql-server.aspx - however for various reasons this option is not achievable.

I can also write my own recurrence processor using the RecurrenceRule object but was hoping something easier would be available.

It would be great if I could just create a RadScheduler in codebehind, databind the appointments and get a certain day's appointment as a list which I can work with outside of the scheduer.
Plamen
Telerik team
 answered on 27 Feb 2013
1 answer
141 views
Hi,

I am using Radasyncupload to upload .doc files in my website. I want the radasyncupload to enable uploading files with .doc extension only. If the user selects other file format, i want the control to display an alert like Unsupported file format. Can anyone help me with sample code?

Thank you,
Teena
Princy
Top achievements
Rank 2
 answered on 27 Feb 2013
1 answer
125 views
Hi,
     This is prasad, when i click on insert button in RadGrid, RegularExpression validator is fired for RadMaskedTextBox instead of RequiredFeild Validator, How can i validate RadMaskedTextBox with RequiredField Validator.

Thanks
M V Prasad
Princy
Top achievements
Rank 2
 answered on 27 Feb 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?