Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
55 views
Hi all. I am new at Telerik and i used a control called telerik rad editor in my app. also the same problem is here:
http://www.telerik.com/community/forums/aspnet-ajax/editor/how-to-prevent-character-replacement-on-save-event.aspx

but i only use asp.net and telerik. so i think maybe you can answer this question.

the error is:

For example on my portal i can see Türkçe as Türkçe when browsing. However when viewing page source or database table called htmlText i see that all Turkish chars displayed as friendly codes. [türkçe]


thanks.
Rumen
Telerik team
 answered on 26 Jan 2011
1 answer
115 views
Currently I have to click the Spell check button on RadEditor's toolbar to see the word suggestions. Is there any way for that? I did find a way to run Spell Checker on Submit Button click but how do I get what I want? I have gone through forums but in vain. Need help please. Thanks
Rumen
Telerik team
 answered on 26 Jan 2011
2 answers
230 views
Summary
I want a way to change the text of a RadToolTip using JavaScript.

In Detail
I have an ASP.NET page that contains a "DataGrid" (actually, it's one of our own controls, but that's largely irrelevant).

In the ItemTemplate, we define the "row".  One of the elements in the Row is a RadToolTip.

However, what we need displayed here (simple text) takes too long to work out when the page is initially loading.

The User has to click on a button to say they want the data and this button causes an Ajax callback.

This callback "panel" does not contain the datagrid.

The result of the callback lets me know the text for every single RadToolTip Control on the page - each one has its own unique text.

So, within a JavaScript function, I then have (for each RadToolTip on the page):
  • The clientID for the RadToolTip (which is a div, the inner input has the same clientId, suffixed with "_ClientState"
  • The text for the RadToolTip to display
So...the question is how can I change the text from my JavaScript function?

I do note that the text is actually controlled by the following:

Sys.Application.add_init(function() {
239 $create(Telerik.Web.UI.RadToolTip, {"_cssClass":"","_manualCloseButtonText":"Close","clientStateFieldID":"ctl00_cph1_browser_products_products_products_Repeater_ctl02_itemIconTooltip_ClientState","formID":"aspnetForm","relativeTo":1,"skin":"Default","targetControlID":"ctl00_cph1_browser_products_products_products_Repeater_ctl02_itemIcon","text":"Text to display"}, null, null, $get("ctl00_cph1_browser_products_products_products_Repeater_ctl02_itemIconTooltip"));
240});

Thanks in advance

Griff

Jonathan
Top achievements
Rank 1
 answered on 26 Jan 2011
2 answers
265 views
it is a very simple scenario. I have a RadTextBox in Password mode which is nested in RadMultiPage.
When i click a checkbox with enabled AutoPostback AJAX loading panel appears and the password field is empty.
As you see i have a RadAjaxManager. Otherwise i would simply say:

If IsPostBack Then
     If Not String.IsNullOrEmpty(Password.Text.Trim()) Then
         Password.Attributes.Add("value", Password.Text)
     End If
     If Not String.IsNullOrEmpty(ConfirmPassword.Text.Trim()) Then
         ConfirmPassword.Attributes.Add("value", ConfirmPassword.Text)
     End If
 End If


Thank you 
El
Top achievements
Rank 1
 answered on 26 Jan 2011
6 answers
290 views
hi
i cant get column value ,i save in label then i pass to other page
my code:

 <script type="text/javascript">
        function open1() {

            var obj_target = window.opener.document.forms[0];
            if (obj_target != null)
             {
                obj_target['ctl00$ContentPlaceHolder1$txtCustomerID'].value = document.getElementById("ID").value;
                obj_target['ctl00$ContentPlaceHolder1$txtLastname'].value = document.getElementById("lblName").value
;
            }
            self.close();
        }
    </script>
**********************************************************************************************
    <telerik:RadGrid ID="grdCustomersInfo" runat="server" AutoGenerateColumns="False"
            GridLines="None" Skin="Office2007" OnItemCommand="grdCustomersInfo_ItemCommand">
            <MasterTableView DataKeyNames="CustomerID">
                <RowIndicatorColumn>
                    <HeaderStyle Width="20px"></HeaderStyle>
                </RowIndicatorColumn>
                <ExpandCollapseColumn>
                    <HeaderStyle Width="20px"></HeaderStyle>
                </ExpandCollapseColumn>
                <Columns>
                    <telerik:GridTemplateColumn>
                        <ItemTemplate>
                            <asp:Label runat="server" ID="CustomerID" Text='<%# Eval("CustomerID") %>'></asp:Label>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                    <telerik:GridBoundColumn UniqueName="column" DataField="CustomerID" HeaderText="??">
                    </telerik:GridBoundColumn>
                    <telerik:GridTemplateColumn HeaderText="???">
                        <ItemTemplate>
                            <asp:Label runat="server" ID="lblFirstName" Text='<%# Eval("FirstName") %>'></asp:Label>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                    <telerik:GridTemplateColumn HeaderText="??? ????????">
                        <ItemTemplate>
                            <asp:Label runat="server" ID="lblLastName" Text='<%# Eval("LastName") %>'></asp:Label>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                    <telerik:GridBoundColumn UniqueName="column3" DataField="" HeaderText="">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn UniqueName="column4" DataField="" HeaderText="">
                    </telerik:GridBoundColumn>
                    <telerik:GridTemplateColumn HeaderText="??????">
                        <ItemTemplate>
                            <asp:LinkButton runat="server" ID="lbSelect" CommandName="Select" Text="??????"></asp:LinkButton>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
            <HeaderContextMenu EnableAutoScroll="True">
            </HeaderContextMenu>
        </telerik:RadGrid>
i want when i click 'lbSelect' transfer customerid,FirstName,LastName to other page
thanks

Vasil
Telerik team
 answered on 26 Jan 2011
1 answer
76 views
Hi,

we use the following version: 2008.1.515.20
we want to upgrade to the newer version, so we downloaded the trial version for testing it.
after we replaced the files, we saw that we get strange behavior with the style, please look at the attached image
the left side is the new version
right side is the old version

please see the differences which are highlighted in red

what can cause it?

Yana
Telerik team
 answered on 26 Jan 2011
1 answer
102 views
Partial Class Anagrafica_UI_Anagrafe_AnagrafeAJAX
    Inherits System.Web.UI.Page
     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
......
  If Not IsPostBack Then 'aggiunta per evitare il postback
                     ......
 
                        CreaTab(anagrafica)
             ...
end If
.......
 
 End Sub
  
    Protected Sub HandleContextClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeViewContextMenuEventArgs) Handles RadTreeView1.ContextMenuItemClick
 
        Dim contextCommand As String = e.MenuItem.Text
        Dim currentNode As RadTreeNode = e.Node
        Dim currentID As String = e.MenuItem.Value
        ' '' ''devo creare un nuovo oggetto radice nell'albero
 
        Dim profilo As ProfiloUtente
        profilo = Session("profiloUtente")
        Select Case currentID
          
            Case "1"
                'apri nodo selezionato
 
 
 
                If Not IsNothing(currentNode) Then
                  ........
 
                    riempicontent(anagrafica)
                    CreaTab(anagrafica, False)
 
                End If
 
        End Select
 
    End Sub 'HandleContextClick
  
  
  
    Protected Sub CreaTab(ByVal ana As EBMAnagrafica, Optional ByVal editable As Boolean = False)
        Dim database As dbManager = Utility.GetDbManager(False)
        Dim gruppo As New GestioneAnagrafe.Enterprise.EBCRaggruppamento(database)
        Dim oggettogruppo As New EBMRaggruppo
        oggettogruppo = gruppo.read(ana.IdTipoOggetto, ana.DataInizio, ana.DataFine, Session("ci").ToString(), Session("ba").ToString(), Session("cliente").ToString(), Session("id_lingua").ToString()) 'leggo raggruppamenti
 
 
        'INIZIALIZZO LA TABSTRIP
        Dim TabStrip As New RadTabStrip
 
        'creazione delle tab strip per categorie di raggruppamento nomi campi
        TabStrip = Me.inf_webtab_anagrafe
        'PULISCO IL TAB
        If (TabStrip.Tabs.Count <> 0) Then
            TabStrip.Tabs.Clear()
        End If
  
        pulisci("MultiPage")
  
 
 
        Dim listagruppo As New ArrayList
        listagruppo = oggettogruppo.ListaCat
        Session("OggettoAttributi") = oggettogruppo
        'Creazione della Tabstrip con i nomi categoria
        If listagruppo.Count = 0 Then
            Session("ArrayDinamici") = arrControlliDinamici
        End If
 
        'aggiungo primo tab dei raggruppamenti se c'è
    
        For i As Integer = 0 To listagruppo.Count - 1
            AddTab(Split(listagruppo(i), ";")(0), Split(listagruppo(i), ";")(1))
            If (i = 0) Then
                AddPageView(Split(listagruppo(0), ";")(1), ana)
            End If
 
        Next
        'TabStrip.SelectedIndex = 0
 
    
        'AGGIUNGO TAB IMMAGINI
        AddTab(Resources.Messaggi.tabImmagini, "IMM")
        'AGGIUNGO TAB DOCUMENTI
        AddTab(Resources.Messaggi.tabDocumenti, "DOC")
        'quando ci clicco AddPageView("DOC", ana)
        'AGGIUNGO TAB PLANIMETRIACARTOGRAFIA
        AddTab(Resources.Messaggi.tabPlanimetrie, "PLANCART")
        'quando ci clicco  AddPageView("PLANCART", ana)
        'Dim tab2 As Infragistics.WebUI.UltraWebTab.Tab = New Infragistics.WebUI.UltraWebTab.Tab()
    End Sub
 
    Private Sub CreaPannelloInfra(ByVal ana As EBMAnagrafica, ByVal oggettogruppo As EBMRaggruppo, ByVal idtab As String, ByVal pagev As RadPageView, ByVal editable As Boolean)
 
        'Devo visualizzare gli attributi di un tipo e non dell'altro
        Try
            Dim booledit As Boolean
            If (Boolean.TryParse(Me.hdEdit.Value.ToString(), booledit)) Then
                If (booledit) Then
                    editable = True
                End If
            End If
            Dim valoreattributoImmFatturazione As String
 
            'recupero gli attributi per quell'oggettoa
            Dim listagruppi As New ArrayList
            Dim contacontrolli As Integer
            'recupero label dei nomi campo
            Dim listaLabel As New ArrayList
            Dim listacampi As New ArrayList
            'Etichetta di nome campo valorizzato
            Dim etichetta As String
            Dim recuperocodice As String = "" 'valorizzata con tabella recupero codice
            Dim iddominioattributo As String ' da passare alla creazione di un nuovo attributo
            Dim textddl As String 'da passre alla creazione di un nuovo attributo come testo di della combo
            Dim valueddl As String 'da passere alla creazione di un nuovo attributo come valore della combo
            'cerco la lista dei campi per ogni categoria
 
            listagruppi = oggettogruppo.ListaCampi
 
 
            For Each val As GruppoCampi In listagruppi
                'PER OGNI RAGGRUPPAMENTO PRENDO LA LISTA DEI NOMI CAMPI ASSOCIATI
                If val.Categoria = idtab Then
                    'controlla se la categoria \u00E8 uguale a quella del bottone clickato
                    listacampi = val.ListaNomiCampo() 'listanomi campo nomecampo;flag_gestione
                    Exit For
                End If
            Next
            'crea pannello per tab
            Dim newPanel As New Panel
            newPanel.ID = "Pan" & idtab
            newPanel.Visible = True
         
            newPanel.CssClass = "radmultipageclass"
            newPanel.Height = pagev.Height
 
 
            'creo gli attributi per categoria
            'creo label contenente etichetta e contenente valore
            Dim tableAtt As New Table
            tableAtt.Width = newPanel.Width
            tableAtt.CellPadding = 0
            tableAtt.CellSpacing = 0
            tableAtt.ID = "T" & newPanel.ID
 
            tableAtt.CssClass = "textoNormal"
 
            Dim rcampiobbligatori As New TableRow
            rcampiobbligatori.CssClass = "textoNormal"
            Dim cellobbligatori As New TableCell 'cella con la scritta campi obbligatori
            cellobbligatori.Text = Resources.Messaggi.CampiObbligatori
            cellobbligatori.ColumnSpan = "6"
            rcampiobbligatori.Cells.Add(cellobbligatori)
            tableAtt.Rows.Add(rcampiobbligatori)
            Dim rintestazione As New TableRow
            rintestazione.CssClass = "textoNormal"
            Dim cell2int As New TableCell
            Dim cell5int As New TableCell
            Dim cell6int As New TableCell
            Dim cellint1 As New TableCell
 
            Dim cellimg2 As New TableCell
            cellint1.Text = "" 'Etichetta
.....
 
            rintestazione.Cells.Add(cellint1)
            rintestazione.Cells.Add(cell2int)
            ....
 
            tableAtt.Rows.Add(rintestazione) 'riga intestazione delle colonne
            
                    For count As Integer = 0 To valoreAttributo.Length - 1
                      ........
                       
                      
                                        labelValore = textvalore 'label contenente valore attributo
                                        labelValore.ID = "LBVA" & listacampi(i) & ";" & count
                                        labelValore.Text = CType(valoreAttributo(count), String) 'valore dell'etichetta
                                        labelValore.Width = dimTextAttributi
                                        cell2.Controls.Add(labelValore)
                                      
                   
                        riga.Cells.Add(cell1) 'Etichetta Attributo
                        riga.Cells.Add(cell2) 'valore attributo
 
                        riga.Cells.Add(cell5) 'data Inizio
                        riga.Cells.Add(cell6) 'data Fine
                      
 
                        If (dominioattributo.tipo_Rappresentazione_Grafica.ToLower <> "shape") Then
                            tableAtt.Rows.Add(riga) 'Aggiungo riga alla tabella
                        End If
                       ......
            Next
      
            pagev.Controls.Add(newPanel) ' aggiungo il pannello al controllo multipage della tab
 
           
.......
    End Sub
 
    Private Sub AddTab(ByVal tabName As String, ByVal tabValue As String)
        Dim tab As RadTab = New RadTab
        tab.Text = tabName
        tab.Value = tabValue
        If (tabValue = "PLANCART") Then
            tab.Width = 200
        Else
            tab.Width = 90
        End If
        
        Me.inf_webtab_anagrafe.Tabs.Add(tab)
 
 
    End Sub
    Private Sub AddPageView(ByVal tabVALUE As String, ByVal ana As EBMAnagrafica)
 
        Dim TAB As RadTab = Me.inf_webtab_anagrafe.FindTabByValue(tabVALUE)
        If (Not IsNothing(TAB) And Not IsNothing(ana)) Then
 
 
            Select Case tabVALUE
                Case "IMM"
                    Dim pageView0 As New RadPageView
                    pageView0.ID = TAB.Value   '"Page" & tab0.Value
                    'pageView0.CssClass = "MultiPage"
                    pageView0.Height = RadMultiPage1.Height
                    pageView0.Width = RadMultiPage1.Width
                    pageView0.ContentUrl = "ImmagineAnagrafe.aspx?UID=" & ana.Uid
                    TAB.PageViewID = pageView0.ID
                    RadMultiPage1.PageViews.Add(pageView0)
                Case "DOC"
                    Dim pageView2 As New RadPageView
                    pageView2.ID = TAB.Value   '"Page" & tab0.Value
                    ' pageView2.CssClass = "MultiPage"
                    pageView2.Width = RadMultiPage1.Width
                    pageView2.Height = RadMultiPage1.Height
                    pageView2.ContentUrl = "Documenti.aspx?UID=" & ana.Uid
                    TAB.PageViewID = pageView2.ID
                    RadMultiPage1.PageViews.Add(pageView2)
                Case "PLANCART"
                    Dim nodo As String
                    ''ADD SILVIA 7/12 aggiunto nome tabella in fondo al value per umpi altrimenti dopo non trova dwg
                    nodo = "false@" & ana.UidPadre & "@" & ana.DataInizio & "@" & ana.DataFine & "@" & ana.Uid & "@" & ana.IdTipoOggetto & "@" & ana.Nome_tabella
                    Dim pageView1 As New RadPageView
                    pageView1.ID = TAB.Value
                    ' pageView1.CssClass = "MultiPage"
                    pageView1.Height = RadMultiPage1.Height
                    pageView1.Width = RadMultiPage1.Width
 
                    If (System.Configuration.ConfigurationManager.AppSettings("AbilitaCartografia").ToString() <> "1") Then
                        '//cartografia non abilitata
                        Dim lcart As New Label
                        lcart.Text = Resources.Messaggi.msgNoAbilitaCartografia
                        pageView1.Controls.Add(lcart)
                    Else
                        pageView1.ContentUrl = "Cartografia.aspx?nodo=" & nodo & "&dv=" & DateTime.Parse(Me.txtDataVisita.Text.ToString()).ToShortDateString()
 
                    End If
                    TAB.PageViewID = pageView1.ID
                    RadMultiPage1.PageViews.Add(pageView1)
 
                Case Else
                    Dim oggettogruppo As EBMRaggruppo = CType(Session("OggettoAttributi"), EBMRaggruppo)
                    AddPageViewAttributi(TAB.Value, ana, oggettogruppo, editabileglobal)
            End Select
        End If
 
    End Sub
    Private Sub AddPageViewAttributi(ByVal tabVALUE As String, ByVal ana As EBMAnagrafica, ByVal raggruppo As EBMRaggruppo, ByVal editable As Boolean)
        Me.RadMultiPage1.Height = Me.altPannelloAttributi
        Dim TAB As RadTab = Me.inf_webtab_anagrafe.FindTabByValue(tabVALUE)
        If (Not IsNothing(TAB) And Not IsNothing(ana)) Then
            Dim pageView2 As New RadPageView
            pageView2.ID = TAB.Value   '"Page" & tab0.Value
 
            pageView2.Width = RadMultiPage1.Width
            pageView2.Height = RadMultiPage1.Height
            '  CreaPannelloInfra(ana, raggruppo, TAB.Value, pageView2, editable)
            TAB.PageViewID = pageView2.ID
            RadMultiPage1.PageViews.Add(pageView2)
 
 
 
 
        End If
 
    End Sub
 
    Protected Sub RadMultiPage1_PageViewCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMultiPageEventArgs) Handles RadMultiPage1.PageViewCreated
        Dim ana As EBMAnagrafica = CType(Session("Oggetto"), EBMAnagrafica)
        Select Case e.PageView.ID
            Case "IMM"
                e.PageView.ContentUrl = "ImmagineAnagrafe.aspx?UID=" & ana.Uid
            Case "DOC"
                e.PageView.ContentUrl = "Documenti.aspx?UID=" & ana.Uid
            Case "PLANCART"
                Dim nodo As String
                ''ADD SILVIA 7/12 aggiunto nome tabella in fondo al value per umpi altrimenti dopo non trova dwg
                nodo = "false@" & ana.UidPadre & "@" & ana.DataInizio & "@" & ana.DataFine & "@" & ana.Uid & "@" & ana.IdTipoOggetto & "@" & ana.Nome_tabella
 
                If (System.Configuration.ConfigurationManager.AppSettings("AbilitaCartografia").ToString() <> "1") Then
                    '//cartografia non abilitata
                    Dim lcart As New Label
                    lcart.Text = Resources.Messaggi.msgNoAbilitaCartografia
                    e.PageView.Controls.Add(lcart)
                Else
                    e.PageView.ContentUrl = "Cartografia.aspx?nodo=" & nodo & "&dv=" & DateTime.Parse(Me.txtDataVisita.Text.ToString()).ToShortDateString()
 
                End If
            Case Else
                Dim oggettogruppo As EBMRaggruppo = CType(Session("OggettoAttributi"), EBMRaggruppo)
                CreaPannelloInfra(ana, oggettogruppo, e.PageView.ID, e.PageView, editabileglobal)
 
        End Select
    End Sub
 
    Protected Sub inf_webtab_anagrafe_TabClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles inf_webtab_anagrafe.TabClick
        Dim ana As EBMAnagrafica = CType(Session("Oggetto"), EBMAnagrafica)
        Dim trovato As Boolean = False
 
 
        For Each pagev As RadPageView In RadMultiPage1.PageViews
            If (pagev.ID = e.Tab.Value) Then
 
                '        Dim oggettogruppo As EBMRaggruppo = CType(Session("OggettoAttributi"), EBMRaggruppo)
                trovato = True
                '        If (e.Tab.Value <> "IMM" And e.Tab.Value <> "DOC" And e.Tab.Value <> "PLANCART") Then
 
                '            '   CreaPannelloInfra(ana, oggettogruppo, pagev.ID, pagev, editabileglobal)
                '        End If
            End If
                Next
        If (Not trovato) Then
 
 
            AddPageView(e.Tab.Value, ana)
        End If
        e.Tab.PageView.Selected = True
        e.Tab.SelectedIndex = e.Tab.Index
    End Sub
 
 
    Protected Sub imgEdit_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles imgEdit.Click
        Me.hdEdit.Value = "true"
        .....
                CreaTab(Session("Oggetto"), True)
           
            .....
        End If
 
    End Sub
End Class
When I click image (imgEdit_Click) for rendering controls (textbox ) in the pageview del tabstrip editable, the first tab contains editable controls but when I change the tab, controls returns not editable. I tried to set a hidden field to true (Me.hdEdit.Value = "true") when it should become editable control, but once you change this value tab changes back, as if it is a reload of the page.
How can I do?
Yana
Telerik team
 answered on 26 Jan 2011
1 answer
54 views
We use the RadEditor in our application and we always display it in design mode, unless the user has read only access, in which case we display it in preview mode.  The reason for this is so that they can edit right away without having to switch back and forth between modes.  We have a problem with hyperlinks.  In firefox, you can ctrl+click on a hyperlink in design mode and the hyperlink will open in whatever target you've set up.  In IE, it just selects the word.  I'm trying to work around this by implementing a custom tool on the context menu of anchor elements.  I've figured out how to add the tool to the context menu and how to set up the handler...  what I have not been able to figure out is how to access the underlying UI element (i.e. the context), which in this case is the anchor element, so that I can get the URL and open it.
Rumen
Telerik team
 answered on 26 Jan 2011
3 answers
145 views
I have two questons here.  First, how do I format the exapaned grid columns to be a fixed width?  I've tried setting the header and item style widths but they are not working.  Second, how can I make the expanded row highlited like if I were Selecting it.  I've attached screen shots and my code


<telerik:RadGrid ID="rgFeedback" runat="server" Skin="Web20" DataSourceID="dsFeedback"
                                                                    AutoGenerateColumns="False" AllowSorting="True" AllowMultiRowSelection="False"
                                                                    AllowPaging="True" GridLines="None" PageSize="25" Width="100%" OnSelectedIndexChanged="rgFeedback_SelectedIndexChanged"
                                                                    OnItemCommand="rgFeedback_ItemCommand">
                                                                    <MasterTableView DataKeyNames="FeedbackID" AllowMultiColumnSorting="True" HierarchyLoadMode="ServerOnDemand"
                                                                        Width="100%">
                                                                        <CommandItemSettings ShowExportToWordButton="true" ShowExportToExcelButton="true"
                                                                            ShowExportToCsvButton="true" ExportToExcelText="Excel" />
                                                                        <DetailTables>
                                                                            <telerik:GridTableView DataKeyNames="FeedbackDetailID" DataSourceID="edsDetails" Width="900px"
                                                                                runat="server">
                                                                                <ParentTableRelation>
                                                                                    <telerik:GridRelationFields DetailKeyField="FeedbackID" MasterKeyField="FeedbackID" />
                                                                                </ParentTableRelation>
                                                                                <Columns>
                                                                                    <telerik:GridBoundColumn HeaderText="Entered Date" DataField="EnteredDate" DataFormatString="{0:d}"
                                                                                        HeaderStyle-Width="90px" ItemStyle-Width="90px">
                                                                                          
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridTemplateColumn HeaderText="User Name" HeaderStyle-Width="90px" ItemStyle-Width="90px">
                                                                                        <ItemTemplate>
                                                                                            <asp:Label ID="FirstName" runat="server" Text='<%# Eval("User.FirstName") %>'></asp:Label>
                                                                                            <asp:Label ID="LastName" runat="server" Text='<%# Eval("User.LastName") %>'></asp:Label>
                                                                                        </ItemTemplate>
                                                                                        <HeaderStyle Width="100px" />
                                                                                    </telerik:GridTemplateColumn>
                                                                                    <telerik:GridTemplateColumn HeaderText="Details">
                                                                                        <ItemTemplate>
                                                                                            <asp:Label ID="Comments" runat="server" Text='<%# Eval("Comments") %>'></asp:Label>
                                                                                        </ItemTemplate>
                                                                                    </telerik:GridTemplateColumn>
                                                                                </Columns>
                                                                            </telerik:GridTableView>
                                                                        </DetailTables>
                                                                        <ExpandCollapseColumn Visible="True">
                                                                        </ExpandCollapseColumn>
                                                                        <Columns>
                                                                            <telerik:GridButtonColumn Text="Select" UniqueName="Select" CommandName="Select"
                                                                                HeaderStyle-Width="50px" ItemStyle-Width="50px">
                                                                            </telerik:GridButtonColumn>
                                                                            <telerik:GridBoundColumn HeaderText="ID" DataField="FeedbackID" ReadOnly="true" HeaderStyle-Width="50px"
                                                                                ItemStyle-Width="50px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Site Type" DataField="FeedbackSiteType" ReadOnly="true"
                                                                                HeaderStyle-Width="60px" ItemStyle-Width="60px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Feedback Type" DataField="FeedbackType" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Importance" DataField="FeedbackImportance" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Description" DataField="Description" ReadOnly="true"
                                                                                HeaderStyle-Width="200px" ItemStyle-Width="200px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Entered Date" DataField="EnteredDate" DataFormatString="{0:d}"
                                                                                ReadOnly="true" HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Entered By" DataField="UserName" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Sponsor" DataField="Sponsor" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Status" DataField="FeedbackStatus" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Developer" DataField="AssignedDeveloper" ReadOnly="true"
                                                                                HeaderStyle-Width="60px" ItemStyle-Width="60px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Start Month" DataField="StartMonth" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="End Month" DataField="EndMonth" ReadOnly="true"
                                                                                HeaderStyle-Width="75px" ItemStyle-Width="75px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="Dev Hours" DataField="TimeEst" ReadOnly="true"
                                                                                HeaderStyle-Width="60px" ItemStyle-Width="60px">
                                                                            </telerik:GridBoundColumn>
                                                                            <telerik:GridBoundColumn HeaderText="% Complete" DataField="PercentComplete" DataFormatString="{0:P0}"
                                                                                ReadOnly="true" HeaderStyle-Width="60px" ItemStyle-Width="60px">
                                                                            </telerik:GridBoundColumn>
                                                                        </Columns>
                                                                    </MasterTableView>
                                                                    <PagerStyle Position="TopAndBottom" />
                                                                    <HeaderStyle Width="100px" />
                                                                    <ClientSettings>
                                                                        <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" ScrollHeight="500px"
                                                                            FrozenColumnsCount="5"></Scrolling>
                                                                    </ClientSettings>
                                                                     <ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true"
                                                                        HideStructureColumns="true" Pdf-PageBottomMargin=".5" Pdf-PageTopMargin=".5"
                                                                        Pdf-PageLeftMargin=".5" Pdf-PageRightMargin=".5" Pdf-PaperSize="Legal" Pdf-PageWidth="356mm"
                                                                        Pdf-PageHeight="216mm" />
                                                                </telerik:RadGrid>
Daniel
Telerik team
 answered on 26 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?