Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
111 views
Does Telerik have any examples of the use of SignalR and a Rotator?.  I'd be interested establishing a Master-to-Child relationship between Rotators.  Where a 'start' command on the master rotator would broadcast a move to a slide.

Cheers
Slav
Telerik team
 answered on 06 Nov 2014
1 answer
64 views
hello, 

is it possible to display the rowheader/rowzone and datazone on the right side instead of the left side?

thanx
Antonio Stoilkov
Telerik team
 answered on 06 Nov 2014
3 answers
150 views
Hi,

I am having an issue with scroll position of ComboBox with load on demand, in the Cities ComboBox on dropdown opening we will be listed with first ten cities. And I have selected a city directly by scrolling say Colorado and when I click on the ComboBox to change my selection my first item will be Colorado in the list which is good and if I keep scrolling down on every callback for getting the data the scroll position moves to the selected city which is Colorado and again I have to keep scrolling to move to the last which is very annoying. I have checked the Demo link the issue which I am facing is not present there. Can you help me in fixing this issue. 

And I am using OnClientDropDownOpening and OnClientItemsRequesting client side events.

I am using OnClientDropDownOpening event to fix an issue with setting up a initial value for the ComboBox on page load. I am successful in adding a RadComboBoxItem to the RadComboBox on Page load. But adding it broke load on demand as on clicking the ComboBox nothing was loading and even the ShowMoreResults is blank. So to fix it up I am calling requestItems in the OnClientDropDownOpening event. The code is added below:

function OnClientDropDownOpening(sender) {
    var attributes = sender.get_attributes();
    //An attribute to check if an Initial Value is set for the ComboBox
    var enableInitialValue = attributes.getAttribute('EnableIntialValue');
    if (enableInitialValue != null && enableInitialValue == "true") {
        sender.requestItems("", false);
    }
}

function OnClientItemsRequesting(sender, eventArgs) {
    var attributes = sender.get_attributes();
    //Attribute to set the name of the DataAccess which will be read in BasePage
    //WebMethod and DataAccess object is fetched from the repository
    var dataAccess = attributes.getAttribute('DataAccess');
    //Filters to be applied on the DataAccess
    var filters = attributes.getAttribute('DataFilters');
    var context = eventArgs.get_context();
    context["DataAccess"] = dataAccess;
    context["DataFilters"] = filters;
    //Added this code as the Selected Item text was being passed on every callback after selecting an item
    //Checking if Context.Text equal to Selected Item text then setting filter text as empty.
    //This issue I could reproduce in the Demo link as well.
    var selectedValue = parseInt(sender.get_value() != "" ? sender.get_value() : 0);
    if (selectedValue > 0 && sender.get_text() == context.Text) {
        context.Text = "";
    }
}
And this is the Common WebMethod which resides in the BasePage which is implemented by all the pages of the Application. So ComboBox user control will not have WebMethod for each instance in each page.

    [WebMethod]
    public static RadComboBoxData FillComboBox(RadComboBoxContext context)
    {
        var comboData = new RadComboBoxData();
        var dropDownFiller = new FillableRepository();
        var dataAccessName = Convert.ToString(context["DataAccess"]);
        var dataAccess = dropDownFiller.GetPropertyValue(dataAccessName);
        var filtersJson = Convert.ToString(context["DataFilters"]);
        var filterConditions = DeserializeFilters(filtersJson);
        if (filterConditions.NotNullAndAny()) dataAccess.SetFilters(filterConditions);
        var fillableList = dataAccess.GetFillableData(context.Text);
        var itemCount = fillableList.Count;
        var itemOffset = context.NumberOfItems;
        var endOffset = Math.Min(itemOffset + ItemsPerRequest, itemCount);
        comboData.EndOfItems = endOffset == (itemCount);
        var result = new List<RadComboBoxItemData>();
        for (var i = itemOffset; i < endOffset; i++)
        {
            var itemData = new RadComboBoxItemData
            {
                Text = fillableList[i].DataField,
                Value = Convert.ToString(fillableList[i].ValueField)
            };
            result.Add(itemData);
        }
        comboData.Message = GetComboStatusMessage(endOffset, itemCount);
        comboData.Items = result.ToArray();
        return comboData;
    }

Please guide me in fixing the issue it is very urgent. 













Boyan Dimitrov
Telerik team
 answered on 06 Nov 2014
1 answer
228 views
I have RadToolTipManager enabled with autotooltipify on. I however only want the tooltips I define. RadGrid is now showing tooltips for the Update, Delete and Cancel buttons. How do I disable those tooltips?

Konstantin Dikov
Telerik team
 answered on 06 Nov 2014
1 answer
189 views
Hi ,

I didn't find any method in Radeditor control to Find a particular word and highlight it.Please throw me any suggestions how can i achieve this ?

Thanks.
Ianko
Telerik team
 answered on 06 Nov 2014
1 answer
278 views
I have a radgrid with a dropdown template for filtering. If there are null values, the dropdown displays a blank row.On click of this nothing happens. How can I catch this and display IS NULL?

void RadComboBoxControl_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
       {           
           string filterExpression;
           filterExpression = "([" + colname + "] ='" + e.Value + "')";
           if (e.Value.Equals("All"))
               filterExpression = " ";        
           radgrid.MasterTableView.FilterExpression = filterExpression;
           selectedValue = e.Value;
           radgrid.MasterTableView.Rebind();                   
       }
if (e.Value.Equals(""));
what should the filterExpression be so that all NULL rows are filtered.
Eyup
Telerik team
 answered on 06 Nov 2014
4 answers
241 views
Hi Team,
Could you please help us to solve the below issue :

Issue :
1) Inserted some text with HyperlinkRangeStart and HyperlinkRangeEnd (with "Track Changes" ON).
2) Selected this text and clicked "Accept".
3) Still the text is in Red color, it's not changed to Blue color.

Attachments :
Step 1 - Insert sample text with Hyperlink Range.png
Step 2 - Select text and Accept.png
Step 3 - Change is Accepted, still its shown in Red Color.png

Thanks,
Obuliraj Ramalingam
Ramalingam
Top achievements
Rank 1
 answered on 06 Nov 2014
1 answer
92 views
I am creating a prototype with tabs similar to the tabbed web browser. I add 2 tabs on intial load. the first tab is bound to a user control and the second tab is a empty stub to create a new tab(just as in tabbed web browsers). When I click on the stub tab, I add a new tab and a pageview to assign to it and also bind a user control to the pageview. the issue is, this newly added tab renders the contents of the previous filled tab instead of empty controls. I also would like to add a little close button to be able to close the tabs. Pls provide any solutions.
Boyan Dimitrov
Telerik team
 answered on 06 Nov 2014
3 answers
131 views
Ever since adding the RadPageLayout control to my master page, design view is broken on pages that use the master page.

Is it just me, or is this control misbehaving? The embedded controls simply don't appear in design view.

Ken
Nencho
Telerik team
 answered on 06 Nov 2014
1 answer
181 views
<%@ Page Title="" Language="C#" MasterPageFile="~/SMPM.master" AutoEventWireup="true" CodeFile="frm_RequestInitiationForm1.aspx.cs" Inherits="Transactions_GlobalPresales_frm_RequestInitiationForm1" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
    <style id="ab" runat="server" type="text/css">
        .RadGrid_MyScrollbars {
            scrollbar-3dlight-color: #606f94;
            scrollbar-arrow-color: #4d5874;
            scrollbar-base-color: #f5f5f5;
            scrollbar-darkshadow-color: #5f6e93;
            scrollbar-face-color: #d8dfe8;
            scrollbar-highlight-color: #fff;
            scrollbar-shadow-color: #a3a3a3;
            scrollbar-track-color: #efefef;
        }
    </style>
    <script src="../../Scripts/jquery-1.4.1.js"></script>
    <script src="../../Scripts/jquery-1.4.1.min.js"></script>
    <script type="text/javascript">

       
        function OnBlur(sender, args)
        {
            if (sender.get_value() == "") {
                sender.set_value("0");
            }
        }
        function WinOpen_image() {
            debugger;
            radopen("../GlobalPresales/frm_BidSubmit.aspx", "rwRequestInitiationsub");
        }

        function WinOpen_BidProgress() {
            debugger;
            radopen("../GlobalPresales/frm_BidInProgress.aspx", "rwRequestInitiationsub");
        }

        function WinOpen_BidClose() {
            radopen("../GlobalPresales/frm_BidClose.aspx", "rwRequestInitiationsub");
        }

        function WinOpen_image1(Req_ID) {
            radopen("../Transactions/frm_BidClosePopup.aspx?REQ_ID=" + Req_ID, "rwRequestInitiationsub");
        }

        function OnClientCloseWindow(oWnd, args) {
            document.location.href = "../Transactions/frm_RequestInitiationForm1.aspx";
        }
       
    </script>
    <telerik:RadWindowManager ID="RWM_POSTREPLY" EnableEmbeddedSkins="false" runat="server"
        Style="z-index: 8000">
        <Windows>

             <telerik:RadWindow ID="rwRequestInitiationsub" Modal="true" runat="server" Width="1000px" Height="600px"
                Title="" VisibleStatusbar="false" ReloadOnShow="true"
                Behaviors="Close" KeepInScreenBounds="true" ShowContentDuringLoad="true">
            </telerik:RadWindow>

        </Windows>
    </telerik:RadWindowManager>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <%--<telerik:RadWindowManager ID="RWM_ChangePWD" runat="server" Animation="Fade" VisibleStatusbar="false"
        AnimationDuration="400" KeepInScreenBounds="True" Modal="True" Overlay="True">
        <Windows>
            <telerik:RadWindow ID="rwPastInspectionData" Skin="WebBlue" Modal="true" runat="server"
                Width="500px" Title="Past Inspection Data" VisibleStatusbar="false" Behaviors="Close"
                ShowContentDuringLoad="true" Height="450px">
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>--%>
    <telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="All" EnableRoundedCorners="false" />
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" UpdateInitiatorPanelsOnly="true">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <table align="center">
        <tr>
            <td>
                <div align="center" class="scrollbar">
                    <asp:Label ID="lbl_Initate" runat="server" Font-Bold="true" Font-Size="Medium" Text="Request Initiation Form"></asp:Label>
                </div>
                <table>

                    <tr>
                        <td>
                            <telerik:RadMultiPage ID="rm_Task" runat="server" SelectedIndex="0">
                                <telerik:RadPageView ID="rp_TaskView" runat="server" Selected="True">
                                    <%-- <asp:UpdatePanel ID="upanel" runat="server" UpdateMode="Always">
                                            <ContentTemplate>--%>
                                    <%--<div align="center">
                                                    <asp:Label ID="lbl_task" runat="server" Font-Bold="true" Font-Size="Medium"></asp:Label>
                                                </div>--%>
                                    &nbsp;
                                    <%--<div>
                                        <table>
                                            <tr>
                                                <td align="left" width="100px">
                                                    <asp:Button ID="btn_export" Width="100px" Text="Export to Excel" OnClick="btn_export_Click"
                                                        runat="server"></asp:Button>
                                                </td>
                                                <td width="650px" align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                                    <asp:Label ID="Lbl_open" runat="server" Visible="false" Text="Open:"></asp:Label>
                                                    &nbsp;
                                                    <asp:LinkButton ID="LinkButton1" runat="server" Visible="false" OnClick="LinkButton1_Click">LinkButton</asp:LinkButton>
                                                    &nbsp;&nbsp;&nbsp;&nbsp;<asp:Label ID="lbl_reopen" runat="server" Visible="false" Text="Reopen:"></asp:Label>
                                                    &nbsp; &nbsp;<asp:LinkButton ID="LinkButton2" runat="server" Visible="false" OnClick="LinkButton2_Click">LinkButton</asp:LinkButton>
                                                    &nbsp;&nbsp;&nbsp;&nbsp;
                                                    <asp:Label ID="Lbl_closed" runat="server" Text="Closed:" Visible="false"></asp:Label>
                                                    &nbsp;
                                                    <asp:LinkButton ID="LinkButton3" runat="server" OnClick="LinkButton3_Click" Visible="false">LinkButton</asp:LinkButton>

                                                </td>
                                                <td align="right" width="190px">
                                                    <asp:Label ID="lbl_statis" runat="server" Text="Status :  " Font-Size="Medium"></asp:Label>
                                                    <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"
                                                        Width="125px">
                                                    </asp:DropDownList>
                                                </td>
                                            </tr>
                                        </table>
                                    </div>--%>

                                    <telerik:RadGrid ID="Rg_Course" runat="server" AutoGenerateColumns="False" EnableEmbeddedSkins="false"
                                        OnNeedDataSource="Rg_Course_NeedDataSource" OnPageIndexChanged="Rg_Course_PageIndexChanged" OnPageSizeChanged="Rg_Course_PageSizeChanged" AllowPaging="True"
                                        AllowFilteringByColumn="True" Width="1000px"
                                        ShowStatusBar="true" EnableLinqExpressions="false" Skin="RadGrid_MyScrollbars" Height="355px" GridLines="None" ClientSettings-Scrolling-AllowScroll="true" ClientSettings-Scrolling-UseStaticHeaders="true">
                                        <GroupingSettings CaseSensitive="false" />
                                        <%--<FooterStyle Wrap="true" />--%>
                                        <MasterTableView CommandItemDisplay="Top">
                                            <Columns>
                                                <telerik:GridTemplateColumn UniqueName="ColEdit" meta:resourcekey="GridTemplateColumnResource1" AllowFiltering="false" HeaderStyle-Width="30px">
                                                    <ItemTemplate>
                                                        <%--<asp:LinkButton ID="lnk_Edit" runat="server" CommandArgument='<%# Eval("REQUEST_ID") %>' AllowFilteringByColumn="false"
                                                            OnCommand="lnk_Edit_Command" meta:resourcekey="lnk_Edit" ImageUrl="~/Images/view.gif">Edit</asp:LinkButton>--%>
                                                        <asp:ImageButton ID="targetControl1" runat="server" CommandName="taskedit" OnCommand="lnk_Edit_Command"
                                                            CommandArgument='<%#Eval("REQUEST_ID") %>' ImageUrl="~/Images/view.gif" />
                                                    </ItemTemplate>
                                                </telerik:GridTemplateColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_ID" UniqueName="REQUEST_ID" HeaderText="ID"
                                                    meta:resourcekey="REQUEST_ID" Visible="False">
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="OpportunityId" UniqueName="OpportunityId" FilterControlWidth="80px" HeaderText="Opportunity ID"
                                                    Visible="True" ItemStyle-HorizontalAlign="Left">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="CUSTOMER_NAME" FilterControlWidth="80px" UniqueName="CUSTOMER_NAME" HeaderText="Customer Name"
                                                    ItemStyle-HorizontalAlign="Left" Visible="True">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="OPPORTUNITY_TYPE" FilterControlWidth="80px" UniqueName="OPPORTUNITY_TYPE" HeaderText="Opportunity Type"
                                                    meta:resourcekey="OPPORTUNITY_TYPE" ItemStyle-HorizontalAlign="Left" Visible="True">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_NAME" UniqueName="REQUEST_NAME"
                                                    HeaderText="Request Name" FilterControlWidth="80px">
                                                    <HeaderStyle HorizontalAlign="Center" Width="150px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="BIDOWNER" UniqueName="BIDOWNER" FilterControlWidth="80px"
                                                    HeaderText="Assigned To">
                                                    <HeaderStyle HorizontalAlign="Center" Width="111px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_OPPORTUNITYNAME" UniqueName="REQUEST_OPPORTUNITYNAME" FilterControlWidth="80px"
                                                    HeaderText="Opportunity Name" ItemStyle-HorizontalAlign="Left">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="OPPORTUNITY_MILESTONES_NAME" UniqueName="OPPORTUNITY_MILESTONES_NAME" FilterControlWidth="80px"
                                                    HeaderText="Opportunity MileStone" ItemStyle-HorizontalAlign="Left">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_EMP_ID" UniqueName="REQUEST_EMP_ID" Visible="true" Display="false"
                                                    HeaderText=" Name" FilterControlWidth="30px">
                                                    <HeaderStyle HorizontalAlign="Center" Width="110px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn UniqueName="STATUS_NAME" DataField="STATUS_NAME" HeaderText="Status" FilterControlWidth="80px" Display="true">

                                                    <HeaderStyle HorizontalAlign="Center" Width="200px" />

                                                    <FilterTemplate>
                                                        <telerik:RadComboBox ID="RadComboBoxTitle" DataSourceID="SqlDataSource2" DataTextField="STATUS_NAME" Width="10px"
                                                            DataValueField="STATUS_NAME" Height="200px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("STATUS_NAME").CurrentFilterValue %>'
                                                            runat="server" OnClientSelectedIndexChanged="TitleIndexChanged">
                                                            <Items>
                                                                <telerik:RadComboBoxItem Text="All" Width="89.7%" />
                                                            </Items>
                                                        </telerik:RadComboBox>
                                                    </FilterTemplate>
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="StartDate" UniqueName="StartDate" FilterControlWidth="80px"
                                                    HeaderText="Start Date" ItemStyle-HorizontalAlign="Left">
                                                    <HeaderStyle HorizontalAlign="Center" Width="120px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_CLOSUREDATE" UniqueName="REQUEST_CLOSUREDATE" FilterControlWidth="80px"
                                                    HeaderText="Closure Date" ItemStyle-HorizontalAlign="Left" DataFormatString="{0:dd/MM/yyyy}">
                                                    <HeaderStyle HorizontalAlign="Center" Width="130px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="REQUEST_CODE" UniqueName="REQUEST_CODE" FilterControlWidth="80px"
                                                    HeaderText="Request Code" ItemStyle-HorizontalAlign="Left" Visible="false">
                                                    <HeaderStyle HorizontalAlign="Center" Width="150px" />
                                                </telerik:GridBoundColumn>
                                                <telerik:GridBoundColumn DataField="PercentageOfCompletion" UniqueName="PercentageOfCompletion" FilterControlWidth="80px"
                                                    HeaderText="% Of Completion" Visible="false" ItemStyle-HorizontalAlign="Left">
                                                    <HeaderStyle HorizontalAlign="Center" Width="150px" />
                                                </telerik:GridBoundColumn>






                                            </Columns>
                                            <EditFormSettings>
                                                <EditColumn CancelImageUrl="Cancel.gif" EditImageUrl="Edit.gif" InsertImageUrl="Update.gif"
                                                    UpdateImageUrl="Update.gif">
                                                </EditColumn>
                                            </EditFormSettings>
                                            <CommandItemTemplate>
                                                <div align="left">
                                                    <asp:LinkButton ID="lnk_Add" runat="server" meta:resourceKey="lnk_Add" OnCommand="lnk_Add_Command">Add</asp:LinkButton>
                                                </div>
                                            </CommandItemTemplate>
                                        </MasterTableView>
                                        <PagerStyle AlwaysVisible="True" />
                                        <%-- <FilterMenu Skin="WebBlue">
                                        </FilterMenu>--%>

                                        <ClientSettings>
                                            <Scrolling AllowScroll="True" UseStaticHeaders="true" SaveScrollPosition="True" />
                                        </ClientSettings>
                                        <ActiveItemStyle HorizontalAlign="Left" />
                                        <PagerStyle AlwaysVisible="True" />
                                        <HeaderContextMenu Skin="WebBlue">
                                        </HeaderContextMenu>
                                    </telerik:RadGrid>
                                    <telerik:RadToolTip ID="RadToolTip1" runat="server" OffsetY="3" Position="TopCenter"
                                        ShowCallout="false" Height="20px" ShowEvent="fromcode" />
                                    <asp:Label ID="lbl_yes" runat="server" Text="Label" Visible="false"></asp:Label>
                                    <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:connection %>" SelectCommand="SELECT [STATUS_ID], [STATUS_NAME] FROM [SMPM_STATUS] where STATUS_ID in(3,5,14,22,24,31,6,32,33,34,35,36,37,38)"></asp:SqlDataSource>

                                </telerik:RadPageView>
                                <telerik:RadPageView ID="rp_Taskform" runat="server">
                                    <telerik:RadPanelBar ID="RadPanelBar1" runat="server" EnableEmbeddedSkins="false"
                                        ExpandMode="MultipleExpandedItems" Skin="GlossyBlue" SkinID="2" Width="800px">
                                        <Items>
                                            <telerik:RadPanelItem runat="server" Expanded="true" Text="Step 1: Initiation">
                                                <Items>
                                                    <telerik:RadPanelItem runat="server" Value="Addtask" Selected="true">
                                                        <ItemTemplate>
                                                            <table align="center">
                                                                <tr>
                                                                    <td>
                                                                        <table width="100%">
                                                                            <tr>
                                                                                <td colspan="8" width="800px">
                                                                                    <h4 style="font-weight: bold">Requestor Information</h4>
                                                                                </td>
                                                                            </tr>
                                                                            <%--  <tr align="center">
                                                                                <td width="40%" style="padding-left:40%">
                                                                                    <asp:Label ID="lblRequestedBy" runat="server" Text="Requested By"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="40%" style="padding-right:20%">
                                                                                    <telerik:RadTextBox ID="txtRequestedBy" Width="94%" EnableEmbeddedSkins="false" runat="server"></telerik:RadTextBox></td>
                                                                                <td width="5%"></td>
                                                                                <!-- <td colspan="4" width="50%"></td>-->
                                                                            </tr>--%>
                                                                            <tr align="center">

                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblRequestedBy" runat="server" Text="Requested By"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtRequestedBy" Width="94%" EnableEmbeddedSkins="false" runat="server"></telerik:RadTextBox></td>
                                                                                <td width="5%"></td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblStartDate" Visible="false" runat="server" Text="Start Date"></asp:Label></td>
                                                                                <%-- <td width="5%"><strong>:</strong></td>--%>
                                                                                <td width="20%">
                                                                                    <telerik:RadDatePicker ID="radStartDate" Visible="false" runat="server"></telerik:RadDatePicker>
                                                                                </td>
                                                                                <td width="5%"></td>

                                                                            </tr>

                                                                            <tr>
                                                                                <td width="20%" align="left">
                                                                                    <asp:Label ID="lbl_RequestFor" runat="server" Text="Requested For" meta:resourcekey="lbl_RequestFor"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmb_ComboBox" runat="server" AutoPostBack="false" Enabled="true" MarkFirstMatch="true">
                                                                                    </telerik:RadComboBox>

                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_RequestedFor" ControlToValidate="rcmb_ComboBox"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Requested For" InitialValue="Select">*</asp:RequiredFieldValidator></td>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_BusinessEntity" runat="server" Text="Business Entity"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbBusinessEntity" runat="server" AutoPostBack="false" Width="100px" Enabled="true" MarkFirstMatch="true">
                                                                                    </telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_BusinessEntity" ControlToValidate="rcmbBusinessEntity"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Business Entity" InitialValue="Select">*</asp:RequiredFieldValidator></td>
                                                                            </tr>
                                                                        </table>
                                                                        <table width="100%">
                                                                            <tr>
                                                                                <td colspan="8" width="800px">
                                                                                    <h4 style="font-weight: bold">Customer Information</h4>
                                                                                </td>
                                                                            </tr>
                                                                            <tr>

                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblIndustry" runat="server" Text="Industry"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbIndustry" runat="server" AutoPostBack="true" OnSelectedIndexChanged="rcmbIndustry_SelectedIndexChanged"></telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator5" ControlToValidate="rcmbIndustry"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Industry" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_Industry">*</asp:RequiredFieldValidator></td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCountry" runat="server" Text="Country"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtCountry" runat="server" EnableEmbeddedSkins="false" ReadOnly="true" Enabled="false"></telerik:RadTextBox>
                                                                                </td>
                                                                                <td width="5%"></td>

                                                                            </tr>

                                                                            <tr>
                                                                                <td width="20%" align="left">
                                                                                    <asp:Label ID="lblCustomerName" Text="Customer Name" runat="server"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbCustomerName" runat="server" AutoPostBack="true" Enabled="true" OnSelectedIndexChanged="rcmbCustomerName_SelectedIndexChanged" MarkFirstMatch="true">
                                                                                    </telerik:RadComboBox>
                                                                                    <asp:LinkButton ID="lnkCustomerName" runat="server" PostBackUrl="~/frm_GlobalPresalesOpportunityCustomers.aspx"></asp:LinkButton>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" ControlToValidate="rcmbCustomerName"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Customer anme" InitialValue="Select">*</asp:RequiredFieldValidator></td>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lblWebsite" runat="server" Text="Website"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtWebsite" runat="server" EnableEmbeddedSkins="false" ReadOnly="true" Enabled="false"></telerik:RadTextBox>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCoreBusiness" runat="server" Text="Core Business"></asp:Label>
                                                                                </td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td colspan="5" width="70%">
                                                                                    <telerik:RadTextBox ID="txtCoreBusiness" EnableEmbeddedSkins="false" Enabled="false" runat="server" Width="595px" Height="50px"></telerik:RadTextBox></td>
                                                                                <td width="5%"></td>

                                                                            </tr>
                                                                        </table>
                                                                        <%--<table width="100%">
                                                                            <tr>
                                                                                <td colspan="8" width="800px">
                                                                                    <h4 style="font-weight: bold">Customer Information</h4>
                                                                                </td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblIndustry" Text="Industry" runat="server"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbIndustry" runat="server"></telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_Industry" ControlToValidate="rcmbIndustry"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Industry" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_Industry">*</asp:RequiredFieldValidator></td>

                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCountry" Text="Country" runat="server"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtCountry" runat="server" EnableEmbeddedSkins="false" ReadOnly="true" Enabled="false"></telerik:RadTextBox></td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCustomerName" Text="Customer Name" runat="server"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbCustomerName" runat="server"></telerik:RadComboBox>
                                                                                    <asp:LinkButton ID="lnkCustomerName" runat="server" PostBackUrl="~/frm_GlobalPresalesOpportunityCustomers.aspx"></asp:LinkButton>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_CustomerName" ControlToValidate="rcmbCustomerName"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Customer Name" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_CustomerName">*</asp:RequiredFieldValidator></td>

                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblWebsite" runat="server" Text="Website"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtWebsite" runat="server" EnableEmbeddedSkins="false" ReadOnly="true" Enabled="false"></telerik:RadTextBox></td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCoreBusiness" runat="server" Text="Core Business"></asp:Label>
                                                                                </td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td colspan="7" width="75%">
                                                                                    <asp:TextBox ID="txtCoreBusiness" runat="server" Width="595px" Height="50px"></asp:TextBox></td>
                                                                                <%--<td></td>
                                                                    <td></td>
                                                                    <td></td>
                                                                    <td></td>
                                                                            </tr>
                                                                        </table>--%>
                                                                        <table width="100%">
                                                                            <tr>
                                                                                <td colspan="8" width="800px">
                                                                                    <h4 style="font-weight: bold">Opportunity Information</h4>
                                                                                </td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td align="left" width="20%">
                                                                                    <asp:Label ID="Label2" runat="server" Text="Opportunity label" meta:resourcekey="lbl_labl" Visible="false"></asp:Label>
                                                                                    <asp:Label ID="lbl_OpportunityType" runat="server" Text="Opportunity Type" meta:resourcekey="lbl_OpportunityType"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmb_OpportunityType" runat="server" AutoPostBack="false" Width="100px" MarkFirstMatch="true">
                                                                                    </telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_Opportunitytype" ControlToValidate="rcmb_OpportunityType"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Opportunity Type" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_Opportunitytype">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_status" runat="server" Text="Status" meta:resourcekey="lbl_Status"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">

                                                                                    <telerik:RadComboBox ID="rcmb_status" runat="server" AutoPostBack="True" Width="100px" Enabled="false">
                                                                                    </telerik:RadComboBox>

                                                                                </td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td align="left" width="20%">
                                                                                    <asp:Label ID="lbl_labl" runat="server" Text="Opportunity label" meta:resourcekey="lbl_labl" Visible="false"></asp:Label>
                                                                                    <asp:Label ID="lbl_OpportunityName" runat="server" Text="Opportunity Name" meta:resourcekey="lbl_OpportunityName"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="rtxt_OpportunityName" runat="server" Width="180px" EnableEmbeddedSkins="false"
                                                                                        MaxLength="40">
                                                                                    </telerik:RadTextBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_OpportunityName" ControlToValidate="rtxt_OpportunityName"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Enter the Opportunity Name"
                                                                                        meta:resourcekey="rfv_OpportunityName">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblServices" runat="server" Text="Services"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbServices" runat="server" EnableCheckAllItemsCheckBox="true"
                                                                                        CheckedItemsTexts="DisplayAllInInput" CheckBoxes="true" EmptyMessage="Please Select"
                                                                                        Enabled="true" EnableViewState="true" Height="200px" MaxHeight="120px" Width="120px"
                                                                                        TabIndex="102">
                                                                                    </telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td align="left" width="20%">
                                                                                    <asp:Label ID="lblOpportunityRegion" runat="server" Text="Opportunity Region"></asp:Label>

                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbopportunityRegion" runat="server" EnableEmbeddedSkins="false" MarkFirstMatch="true"></telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="rcmbopportunityRegion"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Opportunity Region" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_OpportunityRegion">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblProducts" runat="server" Text="Products"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbProducts" runat="server" EnableCheckAllItemsCheckBox="true"
                                                                                        CheckedItemsTexts="DisplayAllInInput" CheckBoxes="true" EmptyMessage="Please Select"
                                                                                        Enabled="true" EnableViewState="true" Height="200px" MaxHeight="120px" Width="120px"
                                                                                        TabIndex="102">
                                                                                    </telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <%--  <tr>
                                                                    <td align="center" colspan="9" width="20%">
                                                                        <asp:Label ID="lbl_Task_ID" runat="server" Visible="False"></asp:Label>
                                                                        <b>

                                                                            <asp:Label ID="lbl_Unique_ID" Visible="false" runat="server"></asp:Label></b>
                                                                    </td>

                                                                </tr>--%>
                                                                            <tr>
                                                                                <td align="left" width="20%">
                                                                                    <asp:Label ID="lbl_Currency" runat="server" Text="Currency Type"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:</td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmb_Currency" runat="server" EnableEmbeddedSkins="false" MarkFirstMatch="true"></telerik:RadComboBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <%--   <asp:RequiredFieldValidator ID="rfv_Currency" ControlToValidate="rcmb_Currency"
                                                                            runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Currency" InitialValue="Select"
                                                                            meta:resourcekey="rfv_Currency">*</asp:RequiredFieldValidator>--%>
                                                                                </td>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_Technology" runat="server" Text="Technologies" meta:resourcekey="lbl_Technology"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <%--  <telerik:RadTextBox ID="rtxt_Technology" runat="server" EnableEmbeddedSkins="false" Width="180px"
                                                                            MaxLength="40">
                                                                        </telerik:RadTextBox>--%>

                                                                                    <telerik:RadComboBox ID="rcmb_Technology" runat="server" AutoPostBack="false" Width="150px" MarkFirstMatch="true">
                                                                                    </telerik:RadComboBox>
                                                                                </td>

                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_rtxt_Technology" ControlToValidate="rcmb_Technology"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Technology" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_rtxt_Technology">*</asp:RequiredFieldValidator>
                                                                                </td>

                                                                            </tr>
                                                                            <tr>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_Budget" runat="server" Text="Budget" meta:resourcekey="lbl_Budget"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <telerik:RadNumericTextBox ID="rtxt_Budget" runat="server" EnableEmbeddedSkins="false" Width="180px" Value="0"
                                                                                        MinValue="0" MaxLength="12" ClientEvents-OnLoad="OnBlur">
                                                                                        <%--   <ClientEvents OnBlur="OnBlur" />--%>
                                                                                    </telerik:RadNumericTextBox>

                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_Budget" ControlToValidate="rtxt_Budget"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Enter the Budget"
                                                                                        meta:resourcekey="rfv_Budget">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblSubmissionDate" runat="server" Text="Submission Date"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadDatePicker ID="radSubmissionDate" runat="server">
                                                                                        <DateInput ID="DateInput1" runat="server" DateFormat="dd/MM/yyyy" DisplayDateFormat="dd/MM/yyyy">
                                                                                        </DateInput>
                                                                                    </telerik:RadDatePicker>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_Submissiondate" ControlToValidate="radSubmissionDate"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Select  the Submission Date" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_Submissiondate">*</asp:RequiredFieldValidator></td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblStartDate1" runat="server" Text="Start Date"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadDatePicker ID="radDatePicker" runat="server"></telerik:RadDatePicker>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_Remarks" runat="server" Text="Remarks" meta:resourcekey="lbl_Remarks"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">

                                                                                    <telerik:RadTextBox ID="rtxt_Remarks" runat="server" EnableEmbeddedSkins="false" Width="180px"
                                                                                        TextMode="MultiLine">
                                                                                    </telerik:RadTextBox>
                                                                                </td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_Remarks" ControlToValidate="rtxt_Remarks"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Enter the Remarks"
                                                                                        meta:resourcekey="rfv_Remarks">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                            </tr>
                                                                            <tr>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblCustomerContact" runat="server" Text="Customer Contact"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadComboBox ID="rcmbCustomerContact" AutoPostBack="true" runat="server" OnSelectedIndexChanged="rcmbCustomerContact_SelectedIndexChanged"></telerik:RadComboBox>
                                                                                    <asp:Label ID="lblEmail" runat="server" Text="Email"></asp:Label>
                                                                                    <asp:Label ID="lblPhone" runat="server" Text="Phone"></asp:Label>
                                                                                    <%--<telerik:RadTextTile ID="lblEMail" runat="server" Text="Email"></telerik:RadTextTile>
                                                                                    <telerik:RadTextTile ID="lblPhone" runat="server" Text="Phone"></telerik:RadTextTile>--%>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                            </tr>
                                                                            <tr>

                                                                                <td align="left" width="20%">

                                                                                    <asp:Label ID="lbl_PartnertobeInvolved" runat="server" Text="Partner to be Involved" meta:resourcekey="lbl_PartnertobeInvolved"></asp:Label>
                                                                                </td>
                                                                                <td width="5%">:
                                                                                </td>
                                                                                <td width="20%">
                                                                                    <asp:RadioButtonList ID="rad_listpartner" AutoPostBack="true" runat="server" OnSelectedIndexChanged="rtxt_PartnertobeInvolved_SelectedIndexChanged" RepeatDirection="Horizontal"
                                                                                        Width="93px" RepeatLayout="Flow">
                                                                                        <asp:ListItem Text="Yes" Value="1" />
                                                                                        <asp:ListItem Text="No" Value="0" />
                                                                                    </asp:RadioButtonList>
                                                                                </td>
                                                                                <td width="5%"></td>
                                                                                <td width="20%">
                                                                                    <asp:Label ID="lblWinningProbability" runat="server" Text="Winning Probability"></asp:Label></td>
                                                                                <td width="5%"><strong>:</strong></td>
                                                                                <td width="20%">
                                                                                    <telerik:RadTextBox ID="txtWininningProbability" EnableEmbeddedSkins="false" runat="server"></telerik:RadTextBox></td>
                                                                                <td width="5%">
                                                                                    <asp:RequiredFieldValidator ID="rfv_WinningProbablity" ControlToValidate="txtWininningProbability"
                                                                                        runat="server" ValidationGroup="Controls" ErrorMessage="Please Enter the Winning Probability" InitialValue="Select"
                                                                                        meta:resourcekey="rfv_WinningProbablity">*</asp:RequiredFieldValidator>
                                                                                </td>
                                                                            </tr>
                                                                        </table>
                                                                    </td>
                                                                </tr>
                                                            </table>

                                                            </td>
                                                                </tr>





                                                                <asp:Panel ID="par" runat="server" Visible="false">
                                                                    <tr>
                                                                        <td width="20%">Partner Name</td>
                                                                        <td width="5%">:</td>
                                                                        <td width="20%">
                                                                            <telerik:RadTextBox ID="rtxt_Partnersname" runat="server" Width="170px" EnableEmbeddedSkins="false"
                                                                                MaxLength="40">
                                                                            </telerik:RadTextBox></td>
                                                                        <td width="5%"></td>
                                                                        <td width="20%">Region</td>
                                                                        <td width="5%">:</td>
                                                                        <td width="20%">
                                                                            <telerik:RadTextBox ID="rtxt_Region" runat="server" Width="180px" EnableEmbeddedSkins="false"
                                                                                MaxLength="40">
                                                                            </telerik:RadTextBox></td>
                                                                        <td width="5%"></td>


                                                                    </tr>
                                                                    <tr>
                                                                        <td width="20%">E-mail ID</td>
                                                                        <td width="5%">:</td>
                                                                        <td width="20%">
                                                                            <telerik:RadTextBox ID="rtxt_Emailid" runat="server" Width="170px" EnableEmbeddedSkins="false"
                                                                                MaxLength="40">
                                                                            </telerik:RadTextBox></td>
                                                                        <td width="5%">
                                                                            <asp:RegularExpressionValidator ID="regexEmailValid" runat="server" ValidationExpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
                                                                                ControlToValidate="rtxt_Emailid" Display="None" ErrorMessage="Invalid Email Format" ValidationGroup="Controls"></asp:RegularExpressionValidator>
                                                                        </td>

                                                                        <td width="20%">Contact Number </td>
                                                                        <td width="5%">:</td>
                                                                        <td width="20%">
                                                                            <telerik:RadNumericTextBox ID="rtxt_Contactname" Type="Number" NumberFormat-DecimalDigits="0" NumberFormat-GroupSeparator="" runat="server" SkinID="1" Width="180px" EnableEmbeddedSkins="true" Skin="WebBlue"
                                                                                MaxLength="10">
                                                                            </telerik:RadNumericTextBox></td>
                                                                        <td width="5%"></td>

                                                                    </tr>
                                                                </asp:Panel>
                                                            <tr>
                                                                <td align="center" colspan="8">
                                                                    <asp:Button ID="btn_Update" runat="server" ValidationGroup="Controls" meta:resourcekey="btn_Edit" OnClick="btn_Save_Click" OnClientClick="disableButton(this,'Controls')"
                                                                        Text="Update" UseSubmitBehavior="false" Visible="False" />
                                                                    <asp:Button ID="btn_Save" runat="server" ValidationGroup="Controls" meta:resourcekey="btn_Save" OnClick="btn_Save_Click" OnClientClick="disableButton(this,'Controls')" UseSubmitBehavior="false"
                                                                        Text="Save" Visible="False" />
                                                                    <%-- <asp:Button ID="btn_Cancel" runat="server" meta:resourcekey="btn_Cancel" OnClick="btn_Cancel_Click"
                                                                                Text="Cancel" />--%>
                                                                    <asp:ValidationSummary ID="vs_Country" runat="server" ShowMessageBox="True" ShowSummary="False"
                                                                        ValidationGroup="Controls" />
                                                                </td>
                                                            </tr>
                                                            </table>
                                                        </ItemTemplate>
                                                    </telerik:RadPanelItem>
                                                </Items>
                                            </telerik:RadPanelItem>
                                            <telerik:RadPanelItem runat="server" Text="Step 2: Assign Resource" Visible="false">
                                                <Items>
                                                    <telerik:RadPanelItem runat="server" Value="Manager_Comments">
                                                        <ItemTemplate>
                                                            <table align="center">
                                                                <br />
                                                                <tr>
                                                                    <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_BidOwner" runat="server" Text="Primary Owner" meta:resourcekey="lbl_BidOwner"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_BidOwner" TabIndex="100" runat="server" AutoPostBack="true" Width="150px" OnSelectedIndexChanged="rcmb_BidOwner_SelectedIndexChanged" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>

                                                                    </td>
                                                                    <td width="5%">
                                                                        <asp:RequiredFieldValidator ID="rfv_BidOwner" ControlToValidate="rcmb_BidOwner"
                                                                            runat="server" ValidationGroup="Parts" ErrorMessage="Please Select  the Primary Bid Owner" InitialValue="Select"
                                                                            meta:resourcekey="rfv_BidOwner">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                    <td width="20%">
                                                                        <asp:Label ID="lblReviewDate" runat="server" Text="Review Date"></asp:Label></td>
                                                                    <td width="5%">:</td>
                                                                    <td width="20%">
                                                                        <telerik:RadDatePicker ID="rdpReviewDate" runat="server">
                                                                            <DateInput ID="DateInput1" runat="server" DateFormat="dd/MM/yyyy" DisplayDateFormat="dd/MM/yyyy">
                                                                            </DateInput>
                                                                        </telerik:RadDatePicker>
                                                                    </td>
                                                                    <td width="5%"> <asp:RequiredFieldValidator ID="RequiredFieldValidator4" ControlToValidate="rdpReviewDate"
                                                                            runat="server" ValidationGroup="Parts" ErrorMessage="Please Enter the Review Date">*</asp:RequiredFieldValidator></td>
                                                                   

                                                                </tr>
                                                                <tr>
                                                                    <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_Secondary_Bid_Owner" runat="server" Text="Secondary Bid Owner" meta:resourcekey="lbl_BidOwner"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_Secondary_Bid_Owner" OnSelectedIndexChanged="rcmb_Secondary_Bid_Owner_SelectedIndexChanged" TabIndex="101" runat="server" AutoPostBack="true" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>

                                                                    </td>
                                                                    <td width="5%"></td>
                                                                     <td width="20%">

                                                                        <asp:Label ID="lbl_PSales" runat="server" Text="Primary Sales" meta:resourcekey="lbl_PSales"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_PSales" TabIndex="105" OnSelectedIndexChanged="rcmb_PSales_SelectedIndexChanged" runat="server" AutoPostBack="true" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>
                                                                    </td>
                                                                    <td width="5%">
                                                                        <asp:RequiredFieldValidator ID="rfv_rcmb_PSales" ControlToValidate="rcmb_PSales"
                                                                            runat="server" ValidationGroup="Parts" ErrorMessage="Please Select  the Primary Sales" InitialValue="Select"
                                                                            meta:resourcekey="rfv_rcmb_PSales">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                  
                                                                    <%--  <td></td>--%>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_BidReviewer" runat="server" Text="Bid Reviewer" meta:resourcekey="lbl_BidReviewer"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_BidReviewer" runat="server" TabIndex="102" AutoPostBack="true" Width="150px" OnSelectedIndexChanged="rcmb_BidReviewer_SelectedIndexChanged" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>
                                                                    </td>
                                                                    <td width="5%"></td>
                                                                      <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_SSales" runat="server" Text="Secondary Sales" meta:resourcekey="lbl_SSales"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcb_SSales" OnSelectedIndexChanged="rcb_SSales_SelectedIndexChanged" TabIndex="106" runat="server" AutoPostBack="true" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>
                                                                    </td>
                                                                    <td width="5%">
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" ControlToValidate="rcb_SSales"
                                                                            runat="server" ValidationGroup="Parts" ErrorMessage="Please Select  the Secondary Sales" InitialValue="Select"
                                                                            meta:resourcekey="rfv_rcb_SSales">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                   

                                                                </tr>
                                                                <tr>
                                                                    <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_PCompetency" runat="server" Text="Primary Competency" meta:resourcekey="lbl_PCompetency"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_PCompetency" TabIndex="103" runat="server" AutoPostBack="false" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>

                                                                    </td>

                                                                    <td width="5%"></td>
                                                                   <%-- <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_SDManager" runat="server" Text="Secondary Delivary Manager" meta:resourcekey="lbl_SDManager"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcb_SDManager" TabIndex="108" runat="server" AutoPostBack="false" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>

                                                                    </td>

                                                                    <td width="5%"></td>--%>
                                                                     <td width="20%">

                                                                        <asp:Label ID="lbl_PDManager" runat="server" Text="Delivary Manager" meta:resourcekey="lbl_PDManager"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcb_PDManager" TabIndex="107" runat="server" AutoPostBack="false" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>
                                                                    </td>
                                                                    <td width="5%"></td>

                                                                </tr>
                                                                <tr>
                                                                </tr>
                                                                <tr>

                                                                    <td align="left" width="20%">

                                                                        <asp:Label ID="lbl_SCompetency" runat="server" Text="Secondary Competency" meta:resourcekey="lbl_Competency"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcb_SCompetency" TabIndex="104" runat="server" AutoPostBack="false" Width="150px" OnSelectedIndexChanged="rcmb_BidOwner_SelectedIndexChanged" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>

                                                                    </td>
                                                                    <td width="5%"></td>

                                                                    <td width="20%">

                                                                        <asp:Label ID="lbl_Statuscheck" runat="server" Text="Status" meta:resourcekey="lbl_Statuscheck"></asp:Label>
                                                                    </td>
                                                                    <td width="5%">:
                                                                    </td>
                                                                    <td width="20%">
                                                                        <telerik:RadComboBox ID="rcmb_statuss" TabIndex="109" runat="server" AutoPostBack="false" Width="150px" MarkFirstMatch="true">
                                                                        </telerik:RadComboBox>
                                                                    </td>
                                                                    <td width="5%"></td>

                                                                </tr>
                                                                <tr>
                                                                </tr>
                                                                <tr>
                                                                    <!--harini-->
                                                                    <!--end-->

                                                                </tr>
                                                                <tr>
                                                                    <!--harini-->
                                                                    <!--end-->


                                                                </tr>
                                                                <tr>
                                                                </tr>
                                                                <tr></tr>
                                                                <tr>
                                                                    <td>
                                                                        <br />
                                                                    </td>
                                                                </tr>
                                                                <tr>

                                                                    <td colspan="8" align="center">
                                                                        <asp:Button ID="btn_assign" runat="server" OnClick="btn_assign_Click" OnClientClick="disableButton(this,'Parts')" UseSubmitBehavior="false"
                                                                            Text="Assign" Visible="False" />
                                                                        <asp:Button ID="btn_UpdateAssign" runat="server" OnClick="btn_assign_Click" OnClientClick="disableButton(this,'Parts')" UseSubmitBehavior="false"
                                                                            Text="Update" TabIndex="110" Visible="False" />
                                                                        <asp:Button ID="btn_assignemplolye" runat="server" OnClick="btn_assignemploye_Click"
                                                                            Text="Add Employee" TabIndex="111" Visible="False" />
                                                                        <asp:ValidationSummary ID="vs_Assign" runat="server" ShowMessageBox="True" ShowSummary="False"
                                                                            ValidationGroup="Parts" />
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <br />
                                                                    </td>
                                                                </tr>
                                                            </table>
                                                        </ItemTemplate>
                                                    </telerik:RadPanelItem>
                                                </Items>
                                            </telerik:RadPanelItem>

                                            <telerik:RadPanelItem runat="server" Text="Step 3: Work Status" Visible="false">
                                                <Items>
                                                    <telerik:RadPanelItem runat="server" Value="Commnets">
                                                        <ItemTemplate>
                                                            <table align="center">
                                                                <tr>
                                                                    <td align="left">
                                                                        <asp:Label ID="lbl_EDITCOMMENT" runat="server" Text="EditId" meta:resourcekey="lbl_EDITCOMMENT" Visible="false"></asp:Label>
                                                                        <asp:Label ID="lbl_DateOfComments" runat="server" Text="Date Of Comments" meta:resourcekey="lbl_DateOfComments"></asp:Label>
                                                                    </td>
                                                                    <td>:
                                                                    </td>
                                                                    <td>

                                                                        <telerik:RadDatePicker ID="rtxt_DateOfComments" runat="server" AutoPostBack="false" Width="250px" MaxDate='<%# DateTime.Today.Date %>'
                                                                            MinDate="1900-01-01">
                                                                            <DateInput ID="DateInput1" runat="server" DateFormat="dd/MM/yyyy" DisplayDateFormat="dd/MM/yyyy">
                                                                            </DateInput>
                                                                        </telerik:RadDatePicker>
                                                                        <asp:RequiredFieldValidator ID="rfv_DateOfComments" ControlToValidate="rtxt_DateOfComments"
                                                                            runat="server" ValidationGroup="Comments" ErrorMessage="Please Enter  the Date of Comments">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                    <td>
                                                                        <asp:Label ID="lblConversionRate" runat="server" Text="Conversion Rate"></asp:Label></td>
                                                                    <td><strong>:</strong></td>
                                                                    <td>
                                                                        <telerik:RadNumericTextBox ID="rntConversionRate" runat="server" EnableEmbeddedSkins="false"></telerik:RadNumericTextBox></td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <asp:Label ID="lblOpportunityMilestone" runat="server" Text="Opportunity Milestone"></asp:Label>
                                                                    </td>
                                                                    <td><strong>:</strong></td>
                                                                    <td>
                                                                        <telerik:RadComboBox ID="rcmbOpportunityMilestone" runat="server"></telerik:RadComboBox>
                                                                    </td>
                                                                    <td align="left">

                                                                        <asp:Label ID="lbl_Percentage" runat="server" Text="Percentage Of Completion" meta:resourcekey="lbl_Percentage"></asp:Label>
                                                                    </td>
                                                                    <td>:
                                                                    </td>
                                                                    <td>

                                                                        <telerik:RadNumericTextBox ID="rtxt_Perentage" AutoCompleteType="Disabled" AutoPostBack="true" OnTextChanged="rtxt_Perentage_TextChanged" MaxLength="3" runat="server" EnableEmbeddedSkins="false" Width="150px" MinValue="0" NumberFormat-DecimalDigits="0"></telerik:RadNumericTextBox><asp:RequiredFieldValidator ID="rfv_rtxt_Perentage" ControlToValidate="rtxt_Perentage"
                                                                            runat="server" ValidationGroup="Comments" ErrorMessage="Please Enter  the  Percentage Of Completion">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                    <td></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left">

                                                                        <asp:Label ID="lbl_Comments" runat="server" Text="Comments" meta:resourcekey="lbl_Comments"></asp:Label>
                                                                    </td>
                                                                    <td>:
                                                                    </td>
                                                                    <td>

                                                                        <telerik:RadTextBox ID="rtxt_Comments" runat="server" EnableEmbeddedSkins="false" Width="180px" TextMode="MultiLine" MaxLength="500"></telerik:RadTextBox>
                                                                        <asp:RequiredFieldValidator ID="rfv_rtxt_Comments" ControlToValidate="rtxt_Comments"
                                                                            runat="server" ValidationGroup="Comments" ErrorMessage="Please Enter the Comments">*</asp:RequiredFieldValidator>
                                                                    </td>
                                                                    <td></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left">

                                                                        <%--<asp:Button ID="btn_details" runat="server" Visible="false" Text="Submit Bid" OnClick="btn_details_Click" />--%>
                                                                        <asp:Button ID="btn_BidFinalClose" runat="server" Visible="false" Text="Close Bid" OnClick="btn_details_Click" />
                                                                        <asp:Button ID="btn_BidView" runat="server" Text="View Details" Visible="false" OnClick="btn_details_Click" />
                                                                        <asp:Button ID="btn_BidReopen" runat="server" Text="ReOpen Bid" Visible="false" OnClick="btn_BidReopen_Click" />
                                                                        <asp:Button ID="btn_SendBid" runat="server" Text="Send Bid" Visible="false" OnClick="btn_SendBid_Click" />
                                                                        <asp:Button ID="btn_InProgress" runat="server" Text="In Progress" Visible="false" OnClick="btn_InProgress_Click" />
                                                                    </td>
                                                                    <td colspan="5" align="left">
                                                                        <asp:Button ID="btn_Comment" runat="server" Text="Update" OnClick="btn_Comment_Click" OnClientClick="disableButton(this,'Comments')" UseSubmitBehavior="false" />
                                                                        <asp:Button ID="btn_UpdateCommand" runat="server" Text="Update Comment" OnClick="btn_Comment_Click" Visible="false" OnClientClick="disableButton(this,'Comments')" UseSubmitBehavior="false" />

                                                                        <asp:Button ID="btn_CloseBIDAtANyTime" runat="server" Visible="false" Text="Close The Bid" OnClick="btn_CloseBIDAtANyTime_Click" />
                                                                        <asp:ValidationSummary ID="vs_Countrys" runat="server" ShowMessageBox="True" ShowSummary="False"
                                                                            ValidationGroup="Comments" />
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td colspan="8">
                                                                        <telerik:RadGrid ID="rg_Comments" runat="server" EnableEmbeddedSkins="False" AllowPaging="false" OnNeedDataSource="rg_Comments_NeedDataSource"
                                                                            AllowSorting="false" AutoGenerateColumns="False" GridLines="None" Height="200px"
                                                                            Width="750px">
                                                                            <GroupingSettings CaseSensitive="false" />
                                                                            <ClientSettings>
                                                                                <Scrolling AllowScroll="True" />
                                                                            </ClientSettings>
                                                                            <HeaderContextMenu EnableEmbeddedSkins="False">
                                                                            </HeaderContextMenu>
                                                                            <MasterTableView TableLayout="Fixed">
                                                                                <%-- <SortExpressions>
                                                                                    <telerik:GridSortExpression FieldName="TASKDETAILS_PERCENTAGEOFCOMPLETION" SortOrder="Descending" />
                                                                                </SortExpressions>--%>
                                                                                <Columns>
                                                                                    <telerik:GridTemplateColumn AllowFiltering="False" ItemStyle-Width="30px" UniqueName="ColoumnEdit">
                                                                                        <ItemTemplate>
                                                                                            <asp:LinkButton ID="lnk_Edit" runat="server" CommandArgument='<%#Eval("RESPONCECLOSURE_ID") %>'
                                                                                                meta:resourcekey="lnk_EditResource1" OnCommand="link_Edit_Comments" Text="Edit">
                                                                                            </asp:LinkButton>
                                                                                        </ItemTemplate>
                                                                                        <HeaderStyle HorizontalAlign="Left" Width="30px" />
                                                                                        <ItemStyle Width="20px" />
                                                                                    </telerik:GridTemplateColumn>
                                                                                    <telerik:GridBoundColumn DataField="RESPONCECLOSURE_ID" HeaderText="RESPONCECLOSURE_ID" UniqueName="RESPONCECLOSURE_ID"
                                                                                        Visible="true" Display="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />

                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="Commented BY" HeaderText="Commented By" UniqueName="CommentedBY">

                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="Raisedby" HeaderText="Raised By" UniqueName="Raisedby" Visible="true" Display="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="RESPONCECLOSURE_PERCENTAGEOFCOMPLETION" HeaderText="Percentage Of Completion" UniqueName="RESPONCECLOSURE_PERCENTAGEOFCOMPLETION">
                                                                                        <HeaderStyle HorizontalAlign="Left" Width="100px" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="RESOONCECLOSURE_COMMENTS" HeaderText="Comments">
                                                                                        <HeaderStyle HorizontalAlign="Left" Width="300px" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="RESPONCECLOSURE_PROPOSAL_SUBMITTED" DataFormatString="{0:dd/MM/yyyy}"
                                                                                        HeaderText="Date Of Comments" UniqueName="startime">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <%--                                                                                 <telerik:GridBoundColumn DataField="TASKDETAILS_ENDDATE" DataFormatString="{0:dd/MM/yyyy HH:mm}"
                                                                                        HeaderText="End Time" UniqueName="Endtime" Visible="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="TASKDETAILS_PERCENTAGEOFCOMPLETION" DataType="System.Int32"
                                                                                        HeaderText="% of Completion">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="TASKDETAILS_CONSULTANTESTIMATEDCOMPLETION" DataFormatString="{0:dd/MM/yyyy HH:mm}"
                                                                                        HeaderText="Expected Time Of Completion" Visible="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                     <telerik:GridBoundColumn DataField="TASKDETAILS_HOURSWORKED" HeaderText="Hours Worked" UniqueName="TASKDETAILS_HOURSWORKED">
                                                                                        <HeaderStyle HorizontalAlign="Left" Width="100px" />--%>
                                                                                    <%--  </telerik:GridBoundColumn>--%>
                                                                                </Columns>
                                                                            </MasterTableView>
                                                                            <FilterMenu EnableEmbeddedSkins="False">
                                                                            </FilterMenu>
                                                                        </telerik:RadGrid>

                                                                    </td>
                                                                </tr>
                                                            </table>
                                                        </ItemTemplate>
                                                    </telerik:RadPanelItem>
                                                </Items>
                                            </telerik:RadPanelItem>
                                            <telerik:RadPanelItem Text="Step 4: Add Attachment" runat="server">
                                                <Items>
                                                    <telerik:RadPanelItem Value="AddAttachment" runat="server">
                                                        <ItemTemplate>
                                                            <table align="center">
                                                                <tr align="left">
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td colspan="2">&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                </tr>
                                                                <tr align="left">
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>
                                                                        <asp:Label ID="lbl_Attachment" runat="server" meta:resourcekey="lbl_AttachmentResource1"
                                                                            Text="Attachment"></asp:Label>
                                                                    </td>
                                                                    <td>
                                                                        <strong>:</strong>&nbsp;
                                                                    </td>
                                                                    <td>
                                                                        <asp:FileUpload ID="FileUpload_Task" runat="server" meta:resourcekey="FileUpload_TaskResource1"
                                                                            TabIndex="22" />
                                                                    </td>
                                                                    <td colspan="3">
                                                                        <asp:Button ID="btn_Upload" runat="server" meta:resourcekey="btn_UploadResource1" OnClick="btn_Upload_Click"
                                                                            TabIndex="25" Text="Upload" />
                                                                        <asp:Label ID="lbl_Errormessage" runat="server" meta:resourcekey="lbl_ErrormessageResource1"
                                                                            Width="80px" Text="Label" Visible="False"></asp:Label>
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                </tr>
                                                                <tr align="left">
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                    <td colspan="4">
                                                                        <telerik:RadGrid ID="rg_Uploadview" runat="server" AutoGenerateColumns="False" EnableEmbeddedSkins="false"
                                                                            GridLines="None">
                                                                            <GroupingSettings CaseSensitive="false" />
                                                                            <MasterTableView>
                                                                                <Columns>
                                                                                    <%-- <telerik:GridBoundColumn DataField="Sr_No" HeaderText="Sr. No" meta:resourcekey="GridBoundColumnResource9"
                                                                                        UniqueName="taskid">
                                                                                    </telerik:GridBoundColumn>--%>
                                                                                    <telerik:GridBoundColumn DataField="ATCH_LEAD_ID" HeaderText="ATCH_LEAD_ID" UniqueName="ATCH_LEAD_ID" Visible="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>

                                                                                    <telerik:GridBoundColumn DataField="ATCH_LEAD_NAME" HeaderText="File Name" UniqueName="ATCH_LEAD_NAME">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="ATCH_LEAD_ATCHMNT_PATH" HeaderText="Filepath" UniqueName="ATCH_LEAD_ATCHMNT_PATH" Visible="false">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>
                                                                                    <telerik:GridBoundColumn DataField="ATCH_LEAD_CREATEDDATE" HeaderText="Attached Time" UniqueName="ATCH_LEAD_CREATEDDATE">
                                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                                    </telerik:GridBoundColumn>


                                                                                    <telerik:GridTemplateColumn UniqueName="ColEdit" AllowFiltering="False">
                                                                                        <ItemTemplate>
                                                                                            <asp:LinkButton ID="Lnk_Download" runat="server" Text="Download" CommandArgument='<%#Eval("ATCH_LEAD_ID") %>' OnCommand="lnk_Download"></asp:LinkButton>
                                                                                        </ItemTemplate>
                                                                                    </telerik:GridTemplateColumn>
                                                                                    <telerik:GridTemplateColumn UniqueName="ColEdit1" AllowFiltering="False" Visible="false">
                                                                                        <ItemTemplate>
                                                                                            <asp:LinkButton ID="Lnk_Delete" runat="server" Text="Delete" CommandArgument='<%#Eval("ATCH_LEAD_ID") %>'></asp:LinkButton>
                                                                                        </ItemTemplate>
                                                                                    </telerik:GridTemplateColumn>

                                                                                </Columns>
                                                                            </MasterTableView>
                                                                        </telerik:RadGrid>
                                                                    </td>
                                                                    <td>&nbsp;
                                                                    </td>
                                                                </tr>
                                                            </table>
                                                        </ItemTemplate>
                                                    </telerik:RadPanelItem>
                                                </Items>
                                            </telerik:RadPanelItem>
                                        </Items>
                                    </telerik:RadPanelBar>
                                    <table align="center">
                                        <tr>
                                            <td align="center">
                                                <b>
                                                    <asp:Label ID="lbl_Taskid" runat="server" meta:resourcekey="lbl_TaskidResource1"
                                                        Text="Task" Visible="False"></asp:Label>
                                                </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <table align="center">
                                                    <tr align="left">
                                                        <td>
                                                            <asp:Button ID="BTN_TASK_UPDATE" runat="server" meta:resourcekey="btn_UpdateResource1"
                                                                OnClick="btn_Save_Click" Text="Update" Width="80px" Visible="False" />
                                                            <asp:Button ID="BTN_TASK_SAVE" runat="server" meta:resourcekey="btn_SaveResource1"
                                                                OnClick="btn_details_Click" TabIndex="26" Text="Save" ValidationGroup="Controls"
                                                                Width="80px" Visible="true" />
                                                            <asp:Button ID="btn_details" runat="server" Visible="true" Text="Submit Bid" OnClick="btn_details_Click" />
                                                            <asp:Button ID="btn_InProgress" runat="server" Visible="true" Text="Bid InProgress" OnClick="btn_In_Progress_Click" />
                                                            <asp:Button ID="btn_Close" runat="server" Visible="true" Text="Bid Close" OnClick="btn_CloseBIDAtANyTime_Click" />

                                                            <asp:Label ID="Label2" runat="server" Visible="False"></asp:Label>
                                                            <asp:Button ID="Button1" runat="server" meta:resourcekey="btn_Cancel" OnClick="btn_Cancel_Click"
                                                                Text="Cancel" />
                                                        </td>
                                                        <td>&nbsp;
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                    <table>
                                        <tr>
                                            <td align="center">
                                                <table>
                                                    <tr>
                                                        <td>

                                                            <asp:ValidationSummary ID="vs_Comments" runat="server" ShowMessageBox="true" ShowSummary="false"
                                                                ValidationGroup="TaskDetail_Group" />
                                                            <asp:ValidationSummary ID="ValidationSummary1" runat="server" ShowMessageBox="true" ShowSummary="false"
                                                                ValidationGroup="parts" />
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                </telerik:RadPageView>
                            </telerik:RadMultiPage>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>

    <asp:HiddenField ID="bidId" runat="server" Value="" />
    <asp:HiddenField ID="hdnPrimaryBidOwner" runat="server" Value="" />
    <asp:HiddenField ID="hdnSecondaryBidOwner" runat="server" Value="" />
    <asp:HiddenField ID="hdnBidReviewer" runat="server" Value="" />
    <asp:HiddenField ID="hdnPrimarySales" runat="server" Value="" />
    <asp:HiddenField ID="hdnSecondarySales" runat="server" Value="" />


    <asp:HiddenField ID="hdnPrimaryBidOwner_Edit" runat="server" Value="" />
    <asp:HiddenField ID="hdnSecondaryBidOwner_Edit" runat="server" Value="" />
    <asp:HiddenField ID="hdnBidReviewer_Edit" runat="server" Value="" />
    <asp:HiddenField ID="hdnPrimarySales_Edit" runat="server" Value="" />
    <asp:HiddenField ID="hdnSecondarySales_Edit" runat="server" Value="" />
    <script type="text/javascript">
        function TitleIndexChanged(sender, args) {
            debugger;
            var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
        tableView != null ? tableView.filter("STATUS_NAME", args.get_item().get_value(), "EqualTo") : null;
    }
</script>
</asp:Content>
Maria Ilieva
Telerik team
 answered on 06 Nov 2014
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?