Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
122 views
Hi.
I have the following client-side bound grid
    <telerik:RadGrid runat="server" ID="RadGrid1" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true"  AllowMultiRowSelection="true" PageSize="20" Skin="Outlook" 
        OnItemCreated="RadGrid1_ItemCreated"
        <MasterTableView ClientDataKeyNames="UniqueID,InvoiceID,BofStreamID,EDIStreamID,ValidationStreamID,IsReleased,IsLocked,IsSent,IsInvalid,IsExportedToQB"
            <Columns> 
                <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn"
                <HeaderStyle Width="30px" /> 
                </telerik:GridClientSelectColumn> 
                <telerik:GridTemplateColumn UniqueName="Status" AllowFiltering="false" DataField="UniqueID"
                <HeaderStyle Width="60px" /> 
                <ItemTemplate> 
                      <id="ViewLink" runat="server" href="javascript:void(0);"><img src="/uht2/images/icon-bc-saved.png" height="16" width="16" alt="Saved" title="Saved" /></a
                      <img src="/uht2/images/icon-bc-quickbooks.png" style="display:none;" height="16" width="16" alt="Exported to QB" title="Exported to QB" /> 
                </ItemTemplate> 
                </telerik:GridTemplateColumn> 
                <telerik:GridBoundColumn DataField="CompanyName" HeaderText="Company Name" CurrentFilterFunction="Contains" ShowFilterIcon="false" AutoPostBackOnFilter="true" DataType="System.String" > 
                    <HeaderStyle Width="32%" /> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="UniqueID" HeaderText="Unique ID" CurrentFilterFunction="Contains" ShowFilterIcon="false" AutoPostBackOnFilter="true" DataType="System.String"
                    <HeaderStyle Width="14%" /> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="DocNumber" HeaderText="Invoice #" CurrentFilterFunction="Contains" ShowFilterIcon="false" AutoPostBackOnFilter="true" DataType="System.String"
                    <HeaderStyle Width="12%" /> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Currency" HeaderText="Currency" CurrentFilterFunction="Contains" ShowFilterIcon="false" AutoPostBackOnFilter="true" DataType="System.String"
                    <HeaderStyle Width="5%" /> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="TotalAmount" HeaderText="Total" DataType="System.Decimal" DataFormatString="{0:C2}"
                    <HeaderStyle Width="10%" /> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="LastUpdated" HeaderText="Last Updated" AllowFiltering="false" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy hh:mm tt}"
                    <HeaderStyle Width="15%" /> 
                </telerik:GridBoundColumn> 
            </Columns> 
            <PagerStyle Mode="NextPrevNumericAndAdvanced" Position="TopAndBottom"  /> 
        </MasterTableView> 
        <ClientSettings EnableRowHoverStyle="true" > 
            <DataBinding SelectMethod="GetDataAndCount" Location="BCGridService.svc" SortParameterType="List" FilterParameterType="List" ></DataBinding
            <ClientEvents OnDataBinding="RadGrid1_DataBinding" OnRowContextMenu="RadGrid1_RowContextMenu" OnRowDataBound="RadGrid1_RowDataBound"/>          
            <Selecting AllowRowSelect="true"  /> 
        </ClientSettings> 
    </telerik:RadGrid> 

and when i do sorting on Unique ID column, arrow appears under Status column.
For all other columns sorting is just fine.
screenshot

Telerik.Web.UI.dll version is 2009.2.826.35

Please advise some workaround
Oleg Medyanik
Top achievements
Rank 1
 answered on 25 Sep 2009
3 answers
160 views

Hi

I am using the map cotrols inside the splitter control. The splitter functionality works fine in Google chrome, Mozilla browser. But in IE6 & IE7 the map, panel controls are overlapping in splitter control.

In my project I have leftPane, topPane and bottomPane. In topPane the map control placed and in the bottomPane grid has placed. While executing the application the map control overlaying on the grid (looks transparent). 

Version: RadControls_for_ASP.NET_AJAX_2009_2_826_dev

Sample code:

Actually the map object has overlayyed on the bottompane. The map object will not work in your testing environment, so I have commented that line in the following source. Instead of that I have use the panel for testing.

<div> 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        </telerik:RadScriptManager> 
    <telerik:RadSplitter id="radSplitterMain" runat="server" height="481" width="976" VisibleDuringInit="false" ResizeMode="EndPane">  
        <telerik:RadPane id="leftPane" runat="server" Width="20%" MaxWidth="250" > 
                <!-- Left Pane Content -->                  
        </telerik:RadPane> 
        <telerik:RadSplitBar id="radSplitbarVertical" runat="server" CollapseMode="Forward" BorderStyle="Double" /> 
        <telerik:RadPane id="rightPane" runat="server" scrolling="none" width="80%">   
        <!-- Nested Horizontal splitter --> 
            <telerik:RadSplitter id="radSplitterRight" runat="server" liveresize="true" orientation="Horizontal">  
                <telerik:RadPane id="topPane" runat="server" height="70%" scrolling="both">   
                <!-- Top Pane Content --> 
                <div id="divMap" style="width: 900px; height: 400px; top: 0px; left: 0px; z-index: 105; overflow: hidden; background-color: Yellow;">    
                <!-- <esri:Map ID="Map1" runat="server" MapResourceManager="MapResourceManager1" Height="100%" Width="100%" BackColor="#FFFFDC" OnExtentChanged="Map1_ExtentChanged1"></esri:Map> -->                      
                        <asp:Panel ID="pnlResize" runat="server" EnableViewState="False" Height="20px" Width="20px" 
                    Style="left: 941px;  top: 422px; position: absolute; background-color: Red; overflow: hidden">    
                    </asp:Panel>         
                </div> 
                </telerik:RadPane> 
                <telerik:RadSplitBar id="radSplitbarHorizontal" runat="server" CollapseMode="Backward" /> 
                <telerik:RadPane id="bottomPane" runat="server" height="30%" MaxHeight="300" scrolling="both">  
                <!-- Bottom Pane Content --> 
                    <asp:Panel ID="Panel1" runat="server" EnableViewState="False" Height="100%" Width="100%" BackColor="Brown">    
                    </asp:Panel>         
                    <!-- <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="OpenAccessDataSource2" /> --> 
                </telerik:RadPane> 
            </telerik:RadSplitter> 
        </telerik:RadPane> 
    </telerik:RadSplitter> 
    </div> 

Regards,
RAJASEKAR N
Rajasekar Nammalvar
Top achievements
Rank 1
 answered on 25 Sep 2009
3 answers
151 views
I am trying to loop through a grid and replace some values in certain cells. I am basically taking values from a text box, matching it to values in the grid and replacing those values with the value in another text box.  I can do this without any issue using a standard GridView.  How do I do this with RadGrid. RadGrid seems to not have a Rows object.

Here is my code that works fine with a GridView:

using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;

public partial class Default3 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    
    protected void Button1_Click(object sender, EventArgs e)
    {
        GenerateUniqueData(3);
    }
    private void GenerateUniqueData(int name)
    {
        string initialnamevalue = this.TextBox1.Text;


        for (int i = 1; i < GridView1.Rows.Count; i++)
        {
            if (GridView1.Rows[i].Cells[name].Text == initialnamevalue)
                GridView1.Rows[i].Cells[name].Text = this.TextBox2.Text;
            else
                initialnamevalue = GridView1.Rows[i].Cells[name].Text;
        }
    }
}

Princy
Top achievements
Rank 2
 answered on 25 Sep 2009
1 answer
198 views
hi,
I cant open window from code. I added radwindow on page which is dynamically created. I cant find sow metod to dsplay window. any help appreciated.


Shinu
Top achievements
Rank 2
 answered on 25 Sep 2009
6 answers
270 views
Is it possible to guarantee that when you launch a window from within a window, that the new window be set to be the active window?

After doing some forum reading, it seems that all I should need to do is include the following code to make the new window active -

setTimeout(function() { attach.setActive(true); }, 0); 

But this doesn't seem to work properly for me. The odd thing is, it sometimes works, sometimes doesn't. It seems to have a 50% chance of actually becoming the active window.

Here is my code for launch the window from within a window, and attempting to make it active -

function LaunchAttachments() {  
        var section = document.getElementById("<%= hfAttachmentsSectionCode.ClientID %>").value;  
        var parent = GetRadWindow().BrowserWindow;  
        var attach = parent.radopen("Attachments.aspx?client=-1&section=" + section, "NewWindow");  
        attach.set_width(800);  
        attach.set_height(400);  
        attach.center();  
        salesRequest.set_status("");  
        attach.set_title("Attachments");  
        setTimeout(function() { attach.setActive(true); }, 0);  
        GetRadWindow().setActive(false);  
    } 
Jack Liao
Top achievements
Rank 1
 answered on 25 Sep 2009
3 answers
84 views
The RadFormDecorator is Controlling skin vs2008 inhere widget,for example:TextBox,DropDownList1,Button etc
But unControll RadMaskedTextBox etc RadControls
Beginner,Please
JiaYing Ma
Top achievements
Rank 1
 answered on 25 Sep 2009
1 answer
165 views
Hi, how can I adjust the width of radgrid from template. I already set the width to 100% but the template haven't changed at all. If i'm going to change width of my controls like textbox set to 600px width, textbox will extend out of the form template which doesn't look good. Any feedback would be appreciated.
RJ
Top achievements
Rank 1
 answered on 24 Sep 2009
3 answers
134 views
Hi,
       I am generating docks dynamically. i want the current dock plotted to be expanded and and rest created from state to be collapsed. I am setting the property dock.collapsed = true when dock is created from state. But this behavior is not taking place.  It is showing all docks as expanded. Please could you let me know your feedback.

thank you,

regards,
Ajit
ajit
Top achievements
Rank 1
 answered on 24 Sep 2009
1 answer
40 views
I am trying to open a window from within a window and I am getting "Objects does not support this property or method"
Robert
Top achievements
Rank 1
 answered on 24 Sep 2009
5 answers
230 views
I'm trying to get the edit button to display as the first column on my grid and am having an incredibly hard time doing so. I tried the GridEditCommandColumn, but can't seem to get it to show up. Below is the code for the grid (sorry for the length there are several child grids in it, Right now I am just trying to get the Master grid to have the edit functionality although I will need all of them to do so. I had the grid auto generating the column before but it ended up as the last column and I need it as the first. If anyone can suggest what I am doing wrong or give me a link to a good example that would be great.

Thanks

Bill



  <telerik:RadGrid ID="rgEditor" runat="server"  
        onneeddatasource="rgEditor_NeedDataSource" AllowFilteringByColumn="True"  
        AllowSorting="True" GridLines="None" AutoGenerateColumns="False"  
        Width="100%" Height="770px" AllowAutomaticUpdates="True"  
        onitemupdated="rgEditor_ItemUpdated"  
        onupdatecommand="rgEditor_UpdateCommand"  
        ondetailtabledatabind="rgEditor_DetailTableDataBind"  
    AllowCustomPaging="True" AllowPaging="True" PageSize="15" > 
<MasterTableView CellSpacing="-1" DataKeyNames="HeaderID"  Name="Header" EditMode="InPlace" > 
<RowIndicatorColumn> 
<HeaderStyle Width="20px"></HeaderStyle> 
</RowIndicatorColumn> 
    <DetailTables> 
        <telerik:GridTableView AllowPaging="false" runat="server" DataKeyNames="HeaderID, BillOrShipIndicator" Caption="<b>Address<b/>" Name="Address" CellSpacing="-1" EditMode="InPlace" AllowCustomSorting="false" AllowFilteringByColumn="false"
            <RowIndicatorColumn> 
                <HeaderStyle Width="20px" /> 
            </RowIndicatorColumn> 
            <ExpandCollapseColumn> 
                <HeaderStyle Width="20px" /> 
            </ExpandCollapseColumn> 
            <Columns> 
                <telerik:GridBoundColumn HeaderText="Bill or Ship" DataField="BillOrShipIndicator" UniqueName="BillOrShipIndicator" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="Full Name" DataField="FullName" UniqueName="FullName" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="Address 1" DataField="AddressLine1" UniqueName="AddressLine1" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="Address 2" DataField="AddressLine2" UniqueName="AddressLine2" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="City" DataField="City" UniqueName="City" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="State" DataField="State" UniqueName="State" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="Country Code" DataField="CountryCode" UniqueName="CountryCode" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn HeaderText="Zip Code" DataField="ZipCode" UniqueName="ZipCode" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
            </Columns> 
        </telerik:GridTableView> 
        <telerik:GridTableView runat="server" CellSpacing="-1" DataKeyNames="HeaderID"  
            Caption="<b>Detail</b>" AllowPaging="false" Name="Detail" AllowCustomSorting="false" AllowFilteringByColumn="false"
            <RowIndicatorColumn> 
                <HeaderStyle Width="20px" /> 
            </RowIndicatorColumn> 
            <ExpandCollapseColumn> 
                <HeaderStyle Width="20px" /> 
            </ExpandCollapseColumn> 
            <Columns> 
                <telerik:GridBoundColumn DataField="ISBN" HeaderText="ISBN" UniqueName="ISBN"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="ISBN13" HeaderText="ISBN 13" UniqueName="ISBN13"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="NetPrice" HeaderText="Net Price" UniqueName="NetPrice"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Quantity" HeaderText="Quantity" UniqueName="Quantity"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="AltTitleCode" HeaderText="Alt Title Code" UniqueName="AltTitleCode"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Discount" HeaderText="Discount" UniqueName="Discount"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="PromotionKey" HeaderText="Promo" UniqueName="PromotionKey"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="FreightTerms" HeaderText="Freight Terms" UniqueName="FreightTerms"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="TitleStatusOverride" HeaderText="Title Status Override" UniqueName="TitleStatusOverride"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="TransportOverride" HeaderText="Transport Override" UniqueName="TransportOverride"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="BackorderCancelOverride" HeaderText="BO Cancel Override" UniqueName="BackorderCancelOverride"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="StatusCode" HeaderText="Status Code" UniqueName="StatusCode"  HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
            </Columns> 
        </telerik:GridTableView> 
        <telerik:GridTableView runat="server" Caption="<b>Instructions</b>" AllowPaging="false" 
            Name="Instructions" AllowCustomSorting="false" AllowFilteringByColumn="false"  
            CellSpacing="-1"
            <RowIndicatorColumn> 
                <HeaderStyle Width="20px" /> 
            </RowIndicatorColumn> 
            <ExpandCollapseColumn> 
                <HeaderStyle Width="20px" /> 
            </ExpandCollapseColumn> 
            <Columns> 
                <telerik:GridBoundColumn DataField="AuthorAppearance"  
                    HeaderText="Author Appearance" UniqueName="AuthorAppearance" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Instruction1"  
                    HeaderText="Instruction 1" UniqueName="Instruction1" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Instruction2"  
                    HeaderText="Instruction 2" UniqueName="Instruction2" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Comments1"  
                    HeaderText="Comments 1" UniqueName="Comments1" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Comments2"  
                    HeaderText="Comments 2" UniqueName="Comments2" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Comments3"  
                    HeaderText="Comments 3" UniqueName="Comments3" HeaderStyle-Width="100px"
<HeaderStyle Width="100px"></HeaderStyle> 
                </telerik:GridBoundColumn> 
            </Columns> 
        </telerik:GridTableView> 
    </DetailTables> 
<ExpandCollapseColumn Visible="True"
</ExpandCollapseColumn> 
    <Columns> 
<telerik:GridEditCommandColumn UniqueName="EditCommand" ButtonType="LinkButton" EditText="edit" ></telerik:GridEditCommandColumn> 
 
        <telerik:GridBoundColumn DataField="HeaderID" DataType="System.Int64"  
            HeaderText="ID" ReadOnly="False" SortExpression="HeaderID"  
            UniqueName="HeaderID" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="CustomerPurchaseOrder"  
            HeaderText="Customer Purchase Order" ReadOnly="False"  
            SortExpression="CustomerPurchaseOrder" UniqueName="CustomerPurchaseOrder" HeaderStyle-Width="100"
<HeaderStyle Width="100px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ReceiptDate" DataType="System.DateTime"  
            HeaderText="Receipt Date" ReadOnly="False" SortExpression="ReceiptDate"  
            UniqueName="ReceiptDate" HeaderStyle-Width="65"
<HeaderStyle Width="65px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="AccountNumber" DataType="System.Decimal"  
            HeaderText="Account #" ReadOnly="False" SortExpression="AccountNumber"  
            UniqueName="AccountNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ShipToNumber" DataType="System.Decimal"  
            HeaderText="Ship To #" ReadOnly="False" SortExpression="ShipToNumber"  
            UniqueName="ShipToNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="StoreNumber" HeaderText="Store #"  
            ReadOnly="False" SortExpression="StoreNumber" UniqueName="StoreNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="SANSNumber" HeaderText="SAN #"  
            ReadOnly="False" SortExpression="SANSNumber" UniqueName="SANSNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="CustNumber" DataType="System.Decimal"  
            HeaderText="Cust #" ReadOnly="False" SortExpression="CustNumber"  
            UniqueName="CustNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ZipStateCountry"  
            HeaderText="Zip State Country" ReadOnly="False" SortExpression="ZipStateCountry"  
            UniqueName="ZipStateCountry" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ShortName" HeaderText="Short Name"  
            ReadOnly="False" SortExpression="ShortName" UniqueName="ShortName" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ShipVia" HeaderText="Ship Via"  
            ReadOnly="False" SortExpression="ShipVia" UniqueName="ShipVia" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FreightTerm" HeaderText="Freight Term"  
            ReadOnly="False" SortExpression="FreightTerm" UniqueName="FreightTerm" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ArriveBy" DataType="System.DateTime"  
            HeaderText="Arrive By" ReadOnly="False" SortExpression="ArriveBy"  
            UniqueName="ArriveBy" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DevliverOn" DataType="System.DateTime"  
            HeaderText="Devliver On" ReadOnly="False" SortExpression="DevliverOn"  
            UniqueName="DevliverOn" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="NotBefore" DataType="System.DateTime"  
            HeaderText="Not Before" ReadOnly="False" SortExpression="NotBefore"  
            UniqueName="NotBefore" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Shipon" DataType="System.DateTime"  
            HeaderText="Ship On" ReadOnly="False" SortExpression="Shipon" UniqueName="Shipon" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="OrderSource" HeaderText="Order Source"  
            ReadOnly="False" SortExpression="OrderSource" UniqueName="OrderSource" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="OrderType" HeaderText="Order Type"  
            ReadOnly="False" SortExpression="OrderType" UniqueName="OrderType" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="RushCode" HeaderText="Rush Code"  
            ReadOnly="False" SortExpression="RushCode" UniqueName="RushCode" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="MarkFor" HeaderText="Mark For"  
            ReadOnly="False" SortExpression="MarkFor" UniqueName="MarkFor" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="CartonRound" HeaderText="Carton Round"  
            ReadOnly="False" SortExpression="CartonRound" UniqueName="CartonRound" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="StatusOverride" HeaderText="Status Override"  
            ReadOnly="False" SortExpression="StatusOverride" UniqueName="StatusOverride" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="WarehouseCode" HeaderText="Warehouse Code"  
            ReadOnly="False" SortExpression="WarehouseCode" UniqueName="WarehouseCode" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Royalty" HeaderText="Royalty"  
            ReadOnly="False" SortExpression="Royalty" UniqueName="Royalty" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Facility" HeaderText="Facility"  
            ReadOnly="False" SortExpression="Facility" UniqueName="Facility" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="InvoiceRoute" HeaderText="Invoice Route"  
            ReadOnly="False" SortExpression="InvoiceRoute" UniqueName="InvoiceRoute" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="BOShipDate" DataType="System.DateTime"  
            HeaderText="BOS hip Date" ReadOnly="False" SortExpression="BOShipDate"  
            UniqueName="BOShipDate" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="PrintBindOrderNumber"  
            HeaderText="Print Bind Order #" ReadOnly="False"  
            SortExpression="PrintBindOrderNumber" UniqueName="PrintBindOrderNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ShipWOFlag" HeaderText="Ship WO Flag"  
            ReadOnly="False" SortExpression="ShipWOFlag" UniqueName="ShipWOFlag" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="WorkOrderNumber"  
            HeaderText="Work Order #" ReadOnly="False" SortExpression="WorkOrderNumber"  
            UniqueName="WorkOrderNumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="CancelDate" DataType="System.DateTime"  
            HeaderText="Cancel Date" ReadOnly="False" SortExpression="CancelDate"  
            UniqueName="CancelDate" HeaderStyle-Width="65"
<HeaderStyle Width="65px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="CancelDays" DataType="System.Decimal"  
            HeaderText="Cancel Days" ReadOnly="False" SortExpression="CancelDays"  
            UniqueName="CancelDays" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="AdditionalDiscount"  
            DataType="System.Decimal" HeaderText="Addl Discount" ReadOnly="False"  
            SortExpression="AdditionalDiscount" UniqueName="AdditionalDiscount" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Promotion" HeaderText="Promotion"  
            ReadOnly="False" SortExpression="Promotion" UniqueName="Promotion" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="OverrideDiscount" DataType="System.Decimal"  
            HeaderText="Override Disc" ReadOnly="False" SortExpression="OverrideDiscount"  
            UniqueName="OverrideDiscount" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DatingCode" HeaderText="Dating Code"  
            ReadOnly="False" SortExpression="DatingCode" UniqueName="DatingCode" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="OverrideNetPrice" DataType="System.Decimal"  
            HeaderText="Override Net Price" ReadOnly="False" SortExpression="OverrideNetPrice"  
            UniqueName="OverrideNetPrice" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="BOPreference" HeaderText="BO Pref"  
            ReadOnly="False" SortExpression="BOPreference" UniqueName="BOPreference" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="NYPPreference" HeaderText="NYP Pref"  
            ReadOnly="False" SortExpression="NYPPreference" UniqueName="NYPPreference" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="BSBPreference" HeaderText="BSB Pref"  
            ReadOnly="False" SortExpression="BSBPreference" UniqueName="BSBPreference" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="InvoiceCombinePreference"  
            HeaderText="Invoice Combine Pref" ReadOnly="False"  
            SortExpression="InvoiceCombinePreference" UniqueName="InvoiceCombinePreference" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ClientPONumber" HeaderText="Client PO Number"  
            ReadOnly="False" SortExpression="ClientPONumber" UniqueName="ClientPONumber" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DupeFlag" HeaderText="Dupe Flag"  
            ReadOnly="False" SortExpression="DupeFlag" UniqueName="DupeFlag" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="StatusCode" DataType="System.Decimal"  
            HeaderText="StatusCode" ReadOnly="False" SortExpression="StatusCode"  
            UniqueName="StatusCode" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="UserID" HeaderText="User ID" ReadOnly="False"  
            SortExpression="UserID" UniqueName="UserID" HeaderStyle-Width="50"
<HeaderStyle Width="50px"></HeaderStyle> 
        </telerik:GridBoundColumn> 
    </Columns> 
</MasterTableView> 
        <ClientSettings> 
            <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
        </ClientSettings> 
    </telerik:RadGrid> 

wdudek
Top achievements
Rank 1
 answered on 24 Sep 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?