Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
123 views
Hi all,

i am creating columns of the grid dynamically, i.e. the column names are not known before hand also the column type are not known.
when binding i check the column name of "[choice]" text and identify it as a dropdown column.
i want to bind a dropdown list to the column(s) programmitically (neither the editor providers nor the columns are defined in design)

can anyone out there help me out? please

thanks in advance
Chetan Pawar
Top achievements
Rank 1
 answered on 23 Jun 2010
4 answers
287 views

Hi Telerik, 

You can see the results below and understand what I say.

I use edit form template for insert or update a record,

It looks fine when editing, but bad when adding.

FireFox and Opera work fine!

Any idea to solve this program?

IE8 result  FireFox result

Code:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="pageMgrChannelIn.aspx.cs" Inherits="_ASP_Channels_pageMgrChannelIn" %>  
 
<!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></title>  
    <style type="text/css">  
        body  { font-family:Courier New; }  
        #tableEditForm { font-size:medium; width:600px; }  
        #tableEditForm .Col1 { font-size:medium; width:140px; text-align:right; }  
        #tableEditForm .Col2 { font-size:medium; width:360px; text-align:left; }  
        .editItem { font-size:medium; font-family:Courier New; }  
    </style>  
</head>  
<body>  
<form id="_frmMgrChannel" runat="server">  
    <telerik:RadScriptManager    ID="_managerScript" runat="server" />  
    <telerik:RadSkinManager      ID="_managerSkin"   runat="server" Skin="Vista" />  
    <telerik:RadAjaxManager      ID="_managerAjax"   runat="server" DefaultLoadingPanelID="_pnlAjaxLoad">  
        <AjaxSettings>  
            <telerik:AjaxSetting AjaxControlID="_gridChannel">  
                <UpdatedControls>  
                    <telerik:AjaxUpdatedControl ControlID="_gridChannel" />  
                </UpdatedControls>  
            </telerik:AjaxSetting>  
        </AjaxSettings>  
    </telerik:RadAjaxManager>  
    <telerik:RadAjaxLoadingPanel ID="_pnlAjaxLoad"   runat="server" />  
    <telerik:RadScriptBlock      ID="_scriptBlock"   runat="server">  
        <script language="javascript" type="text/javascript" src="../../_Javascripts/jsPageMgrChannelIn.js"></script>  
        <script language="javascript" type="text/javascript">  
            function pageLoad() { m_oView = $find("<%= _gridChannel.ClientID %>").get_masterTableView(); }  
        </script>  
    </telerik:RadScriptBlock>  
 
 
 
    <telerik:RadGrid ID="_gridChannel" runat="server" DataSourceID="_dsoChannelIn" GridLines="None" Height="600" AllowSorting="true">  
        <ClientSettings>  
            <Scrolling AllowScroll="true" UseStaticHeaders="true" />  
            <Selecting AllowRowSelect="true" />  
            <ClientEvents OnPopUpShowing="_grid_OnPopUpShowing" OnCommand="_grid_OnCommand" />  
        </ClientSettings>  
        <MasterTableView AllowAutomaticInserts="true" AllowAutomaticUpdates="true"  
                AutoGenerateColumns="false" CommandItemDisplay="Top"  
                AlternatingItemStyle-Font-Size="Medium" AlternatingItemStyle-Font-Names="Courier New"  
                ItemStyle-Font-Size="Medium" ItemStyle-Font-Names="Courier New"  
                DataKeyNames="channelInID" ClientDataKeyNames="channelInID"  
                EditMode="EditForms" EditFormSettings-PopUpSettings-Modal="true">  
            <Columns>  
                <telerik:GridEditCommandColumn ButtonType="ImageButton" UpdateText="修改" />  
                <telerik:GridBoundColumn    DataField="channelInID"       DataType="System.String" HeaderText="新聞管道代碼" UniqueName="channelInID"       SortExpression="channelInID"       MaxLength="8" />  
                <telerik:GridBoundColumn    DataField="channelInName"     DataType="System.String" HeaderText="新聞管道"     UniqueName="channelInName"     SortExpression="channelInName"     MaxLength="16" />  
                <telerik:GridNumericColumn  DataField="keepDays"          DataType="System.Int16"  HeaderText="保存日數"     UniqueName="keepDays"          SortExpression="keepDays"          MaxLength="3" />  
                <telerik:GridDropDownColumn DataField="channelType"       DataType="System.String" HeaderText="管道類別"     UniqueName="channelType"       SortExpression="channelType"       DataSourceID="_dsxChannelType" ListTextField="text" ListValueField="value" DropDownControlType="RadComboBox" />  
                <telerik:GridDropDownColumn DataField="channelEditIDCopy" DataType="System.String" HeaderText="複製至編輯台" UniqueName="channelEditIDCopy" SortExpression="channelEditIDCopy" DataSourceID="_dsxChannelEdit" ListTextField="text" ListValueField="value" DropDownControlType="RadComboBox" />  
                <telerik:GridDropDownColumn DataField="language"          DataType="System.String" HeaderText="語系"         UniqueName="language"          SortExpression="language"          DataSourceID="_dsxLanguage"    ListTextField="text" ListValueField="value" DropDownControlType="RadComboBox" />  
            </Columns>  
            <EditFormSettings EditFormType="Template" InsertCaption="新增" CaptionFormatString="修改 {0}" CaptionDataField="channelInID"  
                    FormMainTableStyle-Font-Size="Medium" PopUpSettings-Width="500" PopUpSettings-Modal="true">  
                <FormTemplate>  
                    <table id="tableEditForm" rules="none">  
                        <thead><tr><td></td><td></td></tr></thead>  
                        <tbody>  
                        <tr>  
                            <td class="Col1"><label>新聞管道代碼</label></td>  
                            <td class="Col2"><telerik:RadTextBox ID="_txtChannelInID"   runat="server" MaxLength="8"  Font-Size="Medium" Font-Names="Courier New" Width="200" Text='<%# Bind("channelInID") %>' /></td>  
                        </tr>  
                        <tr>  
                            <td class="Col1"><label>新聞管道</label></td>  
                            <td class="Col2"><telerik:RadTextBox ID="_txtChannelInName" runat="server" MaxLength="16" Font-Size="Medium" Font-Names="Courier New" Width="200" Text='<%# Bind("channelInName") %>' /></td>  
                        </tr>  
                        <tr>  
                            <td class="Col1"><label>保存日數</label></td>  
                            <td class="Col2"><telerik:RadNumericTextBox ID="_txtKeepDays"    runat="server" Font-Size="Medium" Font-Names="Courier New" MaxLength="3" MaxValue="999" MinValue="0"  NumberFormat-DecimalDigits="0" Text='<%# Bind("keepDays") %>' /></td>  
                        </tr>  
                        <tr>  
                            <td class="Col1"><label>管道類別</label></td>  
                            <td class="Col2"><telerik:RadComboBox ID="_cboChannelType"       runat="server" Font-Size="Medium" Font-Names="Courier New" Width="300" DataSourceID="_dsxChannelType" DataValueField="value" DataTextField="text" DropDownCssClass="editItem" SelectedValue='<%# Bind("channelType") %>' /></td>  
                        </tr>  
                        <tr>  
                            <td class="Col1"><label>複製至編輯台</label></td>  
                            <td class="Col2"><telerik:RadComboBox ID="_cboChannelEditIDCopy" runat="server" Font-Size="Medium" Font-Names="Courier New" Width="300" DataSourceID="_dsxChannelEdit" DataValueField="value" DataTextField="text" DropDownCssClass="editItem" SelectedValue='<%# Bind("channelEditIDCopy") %>' /></td>  
                        </tr>  
                        <tr>  
                            <td class="Col1"><label>語系</label></td>  
                            <td class="Col2"><telerik:RadComboBox ID="_cboLanguage"          runat="server" Font-Size="Medium" Font-Names="Courier New" Width="300" DataSourceID="_dsxLanguage"    DataValueField="value" DataTextField="text" DropDownCssClass="editItem" SelectedValue='<%# Bind("language") %>' /></td>  
                        </tr>  
                        </tbody>  
                        <tfoot>  
                        <tr><td colspan="2">  
                            <asp:Button ID="_btnUpdate" runat="server" CommandName="Update" CausesValidation="true"  Text="儲存" />  
                            <asp:Button ID="_btnCancel" runat="server" CommandName="Cancel" CausesValidation="false" Text="取消" />  
                        </td></tr>  
                        </tfoot>  
                    </table>  
                </FormTemplate>  
            </EditFormSettings>  
        </MasterTableView>  
    </telerik:RadGrid>  
 
 
    <asp:XmlDataSource ID="_dsxLanguage"     runat="server" DataFile="~/App_Data/uiData/comboLanguage.xml"    XPath="/Items/Item" />  
    <asp:XmlDataSource ID="_dsxChannelEdit"  runat="server" DataFile="~/App_Data/uiData/comboChannelEdit.xml" XPath="/Items/Item" />  
    <asp:XmlDataSource ID="_dsxChannelType"  runat="server" DataFile="~/App_Data/uiData/comboChannelType.xml" XPath="/Items/Item" />  
    <asp:ObjectDataSource ID="_dsoChannelIn" runat="server" SelectMethod="dt_getChannel" TypeName="clsAP_uiData">  
        <SelectParameters>  
            <asp:Parameter Name="sChannelType" Type="String" DefaultValue="In" />  
        </SelectParameters>  
    </asp:ObjectDataSource>  
</form>  
</body>  
</html>  
 

ChainHome Yang
Top achievements
Rank 1
 answered on 23 Jun 2010
3 answers
149 views
Hi
Perhaps an easy question but I would like to add a word around straigh brackets in my wiki, like this --> [banana]
The problem is that the editor thinks that I'm attempting to create a link [[banana]] and I'm not doing it right, therefor I get an error:  Format Error (Malformed Link)
Is there a way around this?

Br
Mats
Stanimir
Telerik team
 answered on 23 Jun 2010
4 answers
396 views

RadGrid in web page has hyperlink command column, clicking the link to show a modal RadWindow by Javascript. The popup window needs to be shown in the center of current viewing window. However, if the RadGrid has more 50 rows, the page becomes large, browser shows the veritical scrollbar. Scrolling to the end of page and click on the last hyperlink to show RadWindow. Now, the browser moving to the top of the page and the popup window is shown on top, then browser is moving down to the bottom. You can only see the partial popup window, because its position is too high. How to display modal RadWindow right in the center of current viewing window instead of top center of page?
Here is the code snippet.

    function OpenDetailWindow() {  
        var oWin = $find("<%= DetailWindow.ClientID %>");  
        oWin.show();  
    }  
 
<telerik:RadWindow   
    id="DetailWindow" 
    runat="server" 
    Modal="true" 
    Width="780px" 
    Height="580px" 
    Skin="NonTrans" 
    Behaviors="None"         
    InitialBehaviors="None" 
    VisibleStatusbar="false" 
    VisibleTitlebar="false" 
    ViewStateMode="Enabled" 
    KeepInScreenBounds="true" 
    EnableEmbeddedSkins="false" 
    EnableEmbeddedBaseStylesheet="false">  
    <ContentTemplate> 
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" EnableAJAX="true">  
        <div class="transmodtop">  
            <class="transmodhelpx"><href="#"><img alt="Close" onclick="javascript:CloseDetailWindow();" src="../images/help_x.gif" /></a></p> 
        </div> 
        <div class="transmodbg">  
            <div class="transmodcontent">  
                <uc:TransactionDetail ID="transDetail" runat="server"></uc:TransactionDetail> 
                <div class="transmodrule"></div> 
                <div class="transmodbut"><asp:HyperLink ID="CloseDetailWinLink" runat="server" NavigateUrl="javascript:CloseDetailWindow();" CssClass="blu_button"></asp:HyperLink></div>  
            </div> 
        </div> 
    </telerik:RadAjaxPanel>   
    </ContentTemplate> 
</telerik:RadWindow> 
Georgi Tunev
Telerik team
 answered on 23 Jun 2010
2 answers
159 views
Hi,

Is it possible to change grid tool tip from "Drag to group or reorder" to "Drag to reorder" only as we are not allowing user to group columns. This tool tip can be seen when you hover mouse cursor on column header on rad grid.

Many thanks.

MG
FISCAL
Top achievements
Rank 1
 answered on 23 Jun 2010
2 answers
127 views
Hi,

We have a scenario here where we are creating a RadGrid and adding it to a ASP.NET Placeholder control dynamically from Code Behind.

But we are unable to use RadFilter with this RadGrid. Loading of RadFilter is based on the example shown in below link.


Difference is that we are using it with a dynamically generated RadGrid.

The issue is that when we click on the RadFilter to generate new filter expression it throws an 500 exception. As we have configured AJAX within application we are not able to identify what can be the reason of such an error message.
 
The error is as below :
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500

While debugging we identified that FIlterContainer object is NULL for the RadFilter even when a valid Grid Id is provided. As the Grid is generated dynamically, the ID is assigned from code behind.

Did someone encountered such an issue with RadGrid and RadFilter ? We are highly frustrated with this. Not able to figure out what could be the reason. If there is some issue with dynamic coding............

Any help asap would be appreciated.

Thanks,
Nutan

Nutan
Top achievements
Rank 1
 answered on 23 Jun 2010
2 answers
172 views

Why GridCalculatedColumn does not display decimal numbers?

<telerik:GridCalculatedColumn DataFields="CustomersActivated,Customers" Expression="({0}/{1})*100" DataType="System.Double" DataFormatString="{0:f}" telerik:GridCalculatedColumn/> 

For values like 1 and 300 grid displays "0.00" instead of "0.33"

tomekm
Top achievements
Rank 1
 answered on 23 Jun 2010
1 answer
103 views
I have a load-on-demand tree (i.e. most nodes have node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack).  In the Page_Load method how can I determine if the postback was caused by a node expand event?
Yana
Telerik team
 answered on 23 Jun 2010
1 answer
301 views
Hi

I have to div tags one which contains text and the other one which contains a rotator

If I have the div which contains the rotator set to display:block then I kan toggle between the divs (display:none / display:block).

however if the div which contains the rotator is set to display:none at startup It doesn't show when I toogle between the divs.

Example:

    <div>
        <div class="big_plan">
            <!--Tabs-->
            <div class="LejemaalMenu">
                <ul>
                    <li><a id="aFakta"  href='javascript:ShowFakta();' title='#'><span><span>tab text</span></span></a> </li>
                    <li><a id="aBillede" href='javascript:ShowImages();' title='#'><span><span>tab rotator</span></span></a> </li>
                </ul>
                <div class="LogoLejemaal"></div>
                <div class="clear">&nbsp;</div>
            </div>
            <div id="Fakta" style="display:block;">
                <div class="big_text">
                    <asp:Literal ID="ltBeskrivelse" runat="server"></asp:Literal>
                </div>
                <div class="info_big_img">
                    <h2>test testtest testtest test</h2>
                    <table class="table_c" cellpadding="0" cellspacing="0">
                        <tr class="alternativ_row">
                            <td>
                                test test
                            </td>
                            <td class="second_c">
                                test test
                            </td>
                        </tr>
                        <tr>
                            <td>
                                test test
                            </td>
                            <td class="second_c">
                                test testtest testtest test
                            </td>
                        </tr>
                        <tr class="alternativ_row">
                            <td>
                                test test
                            </td>
                            <td class="second_c">
                                test testtest test
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Aconto el
                            </td>
                            <td class="second_c">
                                <asp:Literal ID="ltEl" runat="server"></asp:Literal>,-
                            </td>
                        </tr>
                        <tr class="alternativ_row">
                            <td>
                                test testtest test
                            </td>
                            <td class="second_c">
                                test testtest testtest test
                            </td>
                        </tr>
                        <tr>
                            <td>
                                test test
                            </td>
                            <td class="second_c">
                                test testtest testtest test
                            </td>
                        </tr>
                    </table>
                    <div class="contact_box">
                        <h2>test test</h2>
                        test testtest testtest test
                    </div>
                </div>
            </div>
            <div id="Billeder" style="display:none">
                <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                    <ContentTemplate>
                        <div class="big_img2">
                            <h3>
                                <asp:Literal ID="ltBilledeText" runat="server"></asp:Literal></h3>
                            <img id="Billedet" runat="server" alt="" style="display:none" /><br />
                        </div>
                        <div class="Thumbs">
                            <telerik:RadRotator runat="server" ID="thumbRotator" RotatorType="ButtonsOver" Width="110" Height="450px" ItemHeight="100" ItemWidth="100" FrameDuration="1" ScrollDirection="Up,Down">
                                <ItemTemplate>
                                    <div class="itemTemplate">
                                        <img src='<%# DataBinder.Eval(Container.DataItem, "ThumbPath") %>' class="RotatorImage" />
                                    </div>
                                </ItemTemplate>
                            </telerik:RadRotator>
                        </div>
                    </ContentTemplate>
                </asp:UpdatePanel>
            </div>
            <div class="clear">
            </div>
        </div>
        <div class="clear">
        </div>
    </div>
    </form>
</body>
</html>

<script language="javascript" type="text/javascript">
    function ShowImages() {
        $("#Fakta").hide("slow");
        $("#Billeder").show("slow");
        $("#aBillede").addClass("select");
        $("#aFakta").removeClass("select");
    }
    function ShowFakta() {
        $("#Fakta").show("slow");
        $("#Billeder").hide("slow");
        $("#aBillede").removeClass("select");
        $("#aFakta").addClass("select");
    }
</script>


Fiko
Telerik team
 answered on 23 Jun 2010
1 answer
276 views
I have a RadGrid with a nested DetailTables section, below there's the aspx code.
When the user clicks on a details row I want to get in C# code the DetailsTable selected DataKey or a telerik:GridBoundColumn value. I've tried attaching to RadGridAspnetUsers_ItemCommand event but couldn't find how to get the value.

Someone can help?

<telerik:RadGrid ID="RadGridAspnetUsers" runat="server" DataSourceID="ObjectDataSourceAspnetUser" 
                EnableEmbeddedSkins="False" GridLines="None" Skin="MachinaWeb" OnDetailTableDataBind="RadGridAspnetUsers_DetailTableDataBind" 
                OnItemCommand="RadGridAspnetUsers_ItemCommand" Height="670px"
                <ClientSettings EnablePostBackOnRowClick="True" AllowExpandCollapse="False" AllowGroupExpandCollapse="False"
                    <Selecting AllowRowSelect="True" /> 
                    <Scrolling AllowScroll="True" EnableVirtualScrollPaging="True" /> 
                </ClientSettings> 
                <MasterTableView AutoGenerateColumns="False" DataSourceID="ObjectDataSourceAspnetUser" 
                    DataKeyNames="UserId"
                    <CommandItemTemplate> 
                    </CommandItemTemplate> 
                    <RowIndicatorColumn> 
                        <HeaderStyle Width="20px" /> 
                    </RowIndicatorColumn> 
                    <ExpandCollapseColumn> 
                    </ExpandCollapseColumn> 
                    <Columns> 
                        <telerik:GridBoundColumn DataField="Cognome" HeaderText="Cognome" SortExpression="Cognome" 
                            UniqueName="Cognome" ItemStyle-Width="120px"
                            <ItemStyle Width="200px" /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Nome" HeaderText="Nome" SortExpression="Nome" 
                            UniqueName="Nome" ItemStyle-Width="120px"
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="UserId" DataType="System.Guid" HeaderText="UserId" 
                            SortExpression="UserId" UniqueName="UserId" Visible="false"
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="UserName" HeaderText="UserName" SortExpression="UserName" 
                            UniqueName="UserName" ItemStyle-Width="100px"
                            <ItemStyle Width="100px" /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Email" HeaderText="Email" SortExpression="Email" 
                            UniqueName="Email" ItemStyle-Width="120px"
                            <ItemStyle Width="200px" /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="UserId" HeaderText="UserId" SortExpression="UserId" 
                            UniqueName="UserId" ItemStyle-Width="150px" Visible="false"
                            <ItemStyle Width="150px" /> 
                        </telerik:GridBoundColumn> 
                    </Columns> 
                    <EditFormSettings> 
                        <EditColumn> 
                        </EditColumn> 
                    </EditFormSettings> 
                    <DetailTables> 
                        <telerik:GridTableView runat="server" DataSourceID="ObjectDataSourceUtenti" EnableEmbeddedSkins="False" 
                            GridLines="None" Skin="MachinaWeb" OnItemCommand="ccc" 
                            AutoGenerateColumns="false" CssClass="RadGridUtentiMachinaDetailTable" Width="700px"
                            <ParentTableRelation> 
                                <telerik:GridRelationFields DetailKeyField="IdUtenteAsp" MasterKeyField="UserId" /> 
                            </ParentTableRelation> 
                            <Columns> 
                                <telerik:GridBoundColumn DataField="IdUtente" DataType="System.Int64" HeaderText="IdUtente" 
                                    SortExpression="IdUtente" UniqueName="IdUtente" Visible="false"
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IdUtenteAsp" HeaderText="IdUtenteAsp" SortExpression="IdUtenteAsp" 
                                    UniqueName="IdUtenteAsp" DataType="System.Guid" Visible="false"
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="UserName" HeaderText="UserName" SortExpression="UserName" 
                                    UniqueName="UserName" Visible="false"
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IdCultura" DataType="System.Int64" HeaderText="IdCultura" 
                                    ReadOnly="True" SortExpression="IdCultura" UniqueName="IdCultura" Visible="false"
                                </telerik:GridBoundColumn> 
                                <telerik:GridDropDownColumn DataField="IdAzienda" HeaderText="Azienda" SortExpression="Azienda" 
                                    UniqueName="Azienda" ListTextField="NomeAzienda" ListValueField="IdAzienda" DataSourceID="ObjectDataSourceAzienda" ItemStyle-Width="100px"
                                </telerik:GridDropDownColumn> 
                                <telerik:GridDropDownColumn HeaderText="Cultura" SortExpression="Cultura" DataSourceID="ObjectDataSourceCultura" 
                                    ListTextField="Cultura" ListValueField="IdCultura" DataField="IdCultura" UniqueName="Cultura" 
                                    ItemStyle-Width="40px"
                                    <ItemStyle Width="40px" /> 
                                </telerik:GridDropDownColumn> 
                                <telerik:GridBoundColumn DataField="IdGruppo" HeaderText="IdGruppo" SortExpression="IdGruppo" 
                                    UniqueName="IdGruppo" Visible="false" ReadOnly="True"
                                </telerik:GridBoundColumn> 
                                <telerik:GridDropDownColumn HeaderText="Gruppo" SortExpression="Gruppo" UniqueName="Gruppo" 
                                    DataField="IdGruppo" ListTextField="Nome" ListValueField="IdGruppoUtente" DataSourceID="ObjectDataSourceGruppoUtente" 
                                    ItemStyle-Width="80px"
                                    <ItemStyle Width="80px" /> 
                                </telerik:GridDropDownColumn> 
                                <telerik:GridDropDownColumn HeaderText="Stabilimento" SortExpression="Stabilimento" 
                                    UniqueName="Stabilimento" ListTextField="Denominazione" ListValueField="IdStabilimento" 
                                    DataField="IdStabilimento" DataSourceID="ObjectDataSourceStabilimento" ItemStyle-Width="100px"
                                    <ItemStyle Width="100px" /> 
                                </telerik:GridDropDownColumn> 
                                <telerik:GridDropDownColumn HeaderText="Reparto" SortExpression="Reparto" UniqueName="Reparto" 
                                    DataSourceID="ObjectDataSourceReparto" ListTextField="Reparto" ListValueField="IdReparto" 
                                    DataField="IdReparto" ItemStyle-Width="100px"
                                    <ItemStyle Width="100px" /> 
                                </telerik:GridDropDownColumn> 
                                <telerik:GridBoundColumn HeaderText="IdAziendaCorrente" SortExpression="IdAziendaCorrente" 
                                    UniqueName="IdAziendaCorrente" DataField="IdAziendaCorrente" Visible="false"
                                </telerik:GridBoundColumn> 
                            </Columns> 
                            <EditFormSettings> 
                                <EditColumn> 
                                </EditColumn> 
                            </EditFormSettings> 
                        </telerik:GridTableView> 
                    </DetailTables> 
                </MasterTableView> 
                <FilterMenu EnableEmbeddedSkins="False"
                </FilterMenu> 
                <HeaderContextMenu EnableEmbeddedSkins="False"
                </HeaderContextMenu> 
            </telerik:RadGrid> 




Princy
Top achievements
Rank 2
 answered on 23 Jun 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?