Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
215 views
Hi,

I have the following line in my grid.                              
<PagerStyle Mode="NumericPages" Position="TopAndBottom" PagerTextFormat="Change page:{4} Display page {0} of {1}, items {2} to {3} of {5}." />

However, the text "Change page:" doesn't show on my grid.  Is there a way I can achieve that?  Or if there is anything I coded wrong?

Chris
Chris
Top achievements
Rank 1
 answered on 04 May 2009
1 answer
93 views
I'd be very grateful for some feedback to my problem.

I've taken the Web UI example in this link
http://www.telerik.com/community/code-library/aspnet-ajax/grid/automatic-operations-in-hierarchical-grid-with-sqldatasource-control.aspx
and added a RadUpload to level 2 to allow users to upload docs to the database.

The Insert and Delete commands work fine. However, if I select an existing record to edit, I get an error. The error is due to the fact that RadUplad doesn't have a file since I didn't select a file. I want to keep what the user uploaded previously. If I do select a file, it works.

The above example uses the declarative method of binding to sqldatasource. How do i go about doing the binding manually for level 2 so that I can trap if a file has or has not been uploaded and hence update or not update the doc to the database.

Thanks

Andrew M
Top achievements
Rank 1
 answered on 04 May 2009
7 answers
111 views
when  install radcontrol  and run live demo i get the error
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
even when drag any control in my page i get the same error and the control that dragged not appear in my page
Ivo
Telerik team
 answered on 04 May 2009
1 answer
174 views
Hi,
I have ComboBox and I used "ItemTemplate" to fill it with my data which is (Picture & Text for each item) and I need to change the Picture for some items inside this Combo during the Run Time , is it possible and how can reach the picturse path inside the items to change it in code behind ? Please Help me with this.
Thanks

Ban
Shinu
Top achievements
Rank 2
 answered on 04 May 2009
3 answers
87 views
Hello,

I downloaded last chrome version, and I  my potential customer were not using Safari, I have not tested for this familly of browsers.

Now as downloading is on every google page we could expect th usage rate to fastly rise.

And I discovered lot of problems in my css...and some in Telerik.
Perspective of many hours testing why and where.
Kwowing in advance were are the problems would facilitate the task.

So I take this opportunity to ask for an official list of problems in Telerik controls versus main browsers.
This seems a mandatory piece of work necessary to maintain any code using intensively Telerik controls.

I understand that the person in charge of marketing will says no to this request which could be interpreted as admitting dysfonctionments.

But everybody knows that these problems are created by the 'Jurassic-Parc' way browsers are developped against standards.
Having this list will appear more as an effort of Telerik in reducing its users difficulties adapting css.

Hope this will be heard, thanks to other users to confirm any interest in the request.

Thanks

CS
Ivo
Telerik team
 answered on 04 May 2009
1 answer
144 views
Is there an example project using RadControls that can be built using Mono (I can see that there are examples shown here: http://mono.telerik.com/Controls/Examples/Default/DefaultCS.aspx) with accompying process/instructions on how to actually build the project (using Mono) i.e. the command line used with mcs (http://edn.embarcadero.com/article/32057)?
Ivo
Telerik team
 answered on 04 May 2009
7 answers
142 views
We just bought the full telerik suite. We had been using the Q2 trial and now are upgraded to Q3 developer. After doing so, we now have weird issues.

I have a page with some controls in this hierarchy
- RadSplitter
--RadSlidingPane
---RadAjaxPanel
----various regular controls like RadioButtonList, ListBox, etc

So after my AJAXPanel comes back from a request, my controls are visible for 1 second, then they disappear.

This started happening after I upgraded. This does not happen in Safari or Firefox.
It happens in IE7 and 6

Help please.
Dimo
Telerik team
 answered on 04 May 2009
1 answer
77 views
Hi,

I am doing a POC on RADGrid for diffrent paging styles but for "NextPrevAndNumeric" pager style I am not getting the outcome as its shown in demo web post http://demos.telerik.com/aspnet-ajax/grid/examples/programming/custompaging/defaultcs.aspx. The Demo Web post shows a dropdown at center of Pager Item for setting Page Size but in my case I am getting anything there.
When I tried with "NextPrevAndNumericAdvanced" pager I can see a text box for setting page size but actually that is not what I want. I want my Pager Style to look exactly as it is in demo web post with dropdown selection for setting page size.

I am having one small constraint, the demo web post is having custom paging but my requirement does not need custom paging.

Please find below the POC code I am trying,
ASPX File (Default.aspx)
<%@ Page Language="VB" %> 
 
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %> 
<%@ Register TagPrefix="radG" Namespace="Telerik.WebControls" Assembly="RadGrid.Net2" %> 
<%@ Register TagPrefix="radC" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<script runat="server">  
 
</script> 
 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title>POC Page</title> 
</head> 
<body> 
    <form id="frmPOC" runat="server">  
        <asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server" EnablePartialRendering="True">  
            <scripts> 
                <asp:ScriptReference Path="~/ScriptLibrary/Atlas.js" /> 
            </scripts> 
        </asp:ScriptManager> 
        <radC:RadAjaxManager ID="RadAjaxManager1" runat="server">  
            <ajaxsettings> 
                <radC:AjaxSetting AjaxControlID="grdPOC">  
                    <UpdatedControls> 
                        <radC:AjaxUpdatedControl ControlID="grdPOC" /> 
                    </UpdatedControls> 
                </radC:AjaxSetting> 
            </ajaxsettings> 
        </radC:RadAjaxManager> 
        <h1> 
            POC for Telerik Grid</h1> 
        <h2> 
            Grid with runtime page size</h2> 
        <table cellpadding="0" cellspacing="0" border="0" width="100%">  
            <tr> 
                <td> 
                    <radG:RadGrid ID="grdPOC" EnableAJAX="True" runat="server" Width="100%" AutoGenerateColumns="False" 
                        GridLines="None" AllowSorting="true" AllowPaging="true" PageSize="5">  
                        <mastertableview> 
                            <Columns> 
                                <radG:GridBoundColumn UniqueName="DueDate" ReadOnly="True" DataField="DueDate" HeaderText="Due Date">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="Action" ReadOnly="True" DataField="Action" HeaderText="Action">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="Description" ReadOnly="True" DataField="Description" 
                                    HeaderText="Description">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="Customer" ReadOnly="True" DataField="Customer" 
                                    HeaderText="Customer">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="Contact" ReadOnly="True" DataField="Contact" HeaderText="Contact">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="SalesRep" ReadOnly="True" DataField="SalesRep" 
                                    HeaderText="Sales Rep">  
                                </radG:GridBoundColumn> 
                                <radG:GridBoundColumn UniqueName="Status" ReadOnly="True" DataField="Status" HeaderText="Status">  
                                </radG:GridBoundColumn> 
                            </Columns> 
                            <RowIndicatorColumn Visible="False">  
                            </RowIndicatorColumn> 
                            <ExpandCollapseColumn Visible="False">  
                            </ExpandCollapseColumn> 
                        </mastertableview> 
                        <pagerstyle mode="NextPrevAndNumeric" /> 
                    </radG:RadGrid> 
                </td> 
            </tr> 
        </table> 
    </form> 
</body> 
</html> 

VB File (Default.aspx.vb)
Imports System.Data  
 
Partial Class _Default  
    Inherits Web.UI.Page  
 
    ''' <summary>  
    '''   
    ''' </summary>  
    ''' <param name="sender"></param>  
    ''' <param name="e"></param>  
    ''' <remarks></remarks>  
    Protected Sub grdPOC_NeedDataSource(ByVal sender As ObjectByVal e As Telerik.WebControls.GridNeedDataSourceEventArgs) Handles grdPOC.NeedDataSource  
 
        PopulateGrid()  
 
    End Sub 
 
    ''' <summary>  
    '''   
    ''' </summary>  
    ''' <remarks></remarks>  
    Private Sub PopulateGrid()  
 
        Dim dtSource As New DataTable()  
        Dim drNew As DataRow  
 
        dtSource.Columns.Add("DueDate")  
        dtSource.Columns.Add("Action")  
        dtSource.Columns.Add("Description")  
        dtSource.Columns.Add("Customer")  
        dtSource.Columns.Add("Contact")  
        dtSource.Columns.Add("SalesRep")  
        dtSource.Columns.Add("Status")  
 
        For iCount As Integer = 1 To 20  
 
            drNew = dtSource.NewRow()  
            drNew("DueDate") = "10/21/2009" 
            drNew("Action") = "Submit Proposal" 
            drNew("Description") = "Contact / Contract follow up" 
            drNew("Customer") = "Customer Name Two" 
            drNew("Contact") = "Contact Name" 
            drNew("SalesRep") = "Sales Rep Name" 
            drNew("Status") = "Message Left" 
            dtSource.Rows.Add(drNew)  
 
        Next 
 
        grdPOC.MasterTableView.DataSource = dtSource.DefaultView  
 
    End Sub 
 
 
End Class 

Thanks,
Avi
Pavlina
Telerik team
 answered on 04 May 2009
1 answer
329 views
I created a new skin from Web20 skin for my project and it's working fine. However I have a problem removing underline from tabstrip header text in the second level. I looked into the tab header with FireBug and found this class being applied to it.

.RadTabStrip .rtsLevel .rtsSelected 
text-decoration:underline

Please advise how I can get rid of this class. I tried to set text-decoration to none in my tabstrip skin but it didn't help and I couldn't find this css class anywhere in skin css files.

Thanks,
Ali Bolourian
Yana
Telerik team
 answered on 04 May 2009
7 answers
128 views

I have a combo box using template and “OnItemsRequested”. Now I need a separator in my combobox, how do I implement that? I am also using the filter function, and I need that to mark the typed letters in the results, just like it does without templates.

Thanks in advance!

Atanas Korchev
Telerik team
 answered on 04 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?