Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
143 views
The server I'm developing on is running IIS 7.5, and my company uses Internet Explorer 8.  In my program, I have a series of steps that a user has to go through in sequence.  As one step is completed (via a button click), another step loads.  The steps are each in Panels, and I use a RadAjaxManager to update the next panel on button clicks so that the next panel is made visible.  The odd problem that I'm having right now is that whenever the next panel loads, the first RadNumericTextBox within the newly loaded panel will not hold the value typed into it.  For example, if, once the text box loads, the user types "100" and goes to the next text box, "100" will stay in the box, but if I were to try to find its value server-side, it would be blank.  If i were to click on the text box again, the value "100" will disappear.  Upon typing in the value again, it will change to "100.00" like it's supposed to whenever it loses focus, and the value will be available server-side.  This happens randomly, but if it does happen, it will only happen on the first time and on the first box.  Any help is much appreciated.

Here is my Markup:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="lookupButton">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="orderPanel" LoadingPanelID="RadAjaxLoadingPanel1" />      
                        <telerik:AjaxUpdatedControl ControlID="errorLabel"/>                                                                                   
                        <telerik:AjaxUpdatedControl ControlID="countPanel" LoadingPanelID="RadAjaxLoadingPanel1" />  
                        <telerik:AjaxUpdatedControl ControlID="orderCount" LoadingPanelID="RadAjaxLoadingPanel1" />  
                        <telerik:AjaxUpdatedControl ControlID="amountPanel" LoadingPanelID="RadAjaxLoadingPanel1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>           
                <telerik:AjaxSetting AjaxControlID="inputButton">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="amountPanel" LoadingPanelID="RadAjaxLoadingPanel1" />
                        <telerik:AjaxUpdatedControl ControlID="amountList" LoadingPanelID="RadAjaxLoadingPanel1" />       
                        <telerik:AjaxUpdatedControl ControlID="errorLabel"/>                                                                                   
                    </UpdatedControls>
                </telerik:AjaxSetting>           
                <telerik:AjaxSetting AjaxControlID="printButton">
                    <UpdatedControls>                       
                        <telerik:AjaxUpdatedControl ControlID="errorLabel"/>                                       
                        <telerik:AjaxUpdatedControl ControlID="printButton" LoadingPanelID="RadAjaxLoadingPanel1" />                                           
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>       
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="WebBlue" />
    <asp:Panel ID="orderPanel" runat="server" DefaultButton="lookupButton">
        <fieldset>
            <legend>Order Information</legend>
            <table>
                <tr>
                    <td align="left"><telerik:RadNumericTextBox ID="orderNum" Width="150px" runat="server" MaxLength="6" NumberFormat-DecimalDigits="0" NumberFormat-GroupSeparator="" DataType="Int32"></telerik:RadNumericTextBox></td>
                    <td align="left"><asp:Button ID="lookupButton" runat="server" Text="Look Up Order" OnClick="LookupButton_Click" /></td>
                </tr>
                <tr>
                    <td align="left"><asp:Label ID="orderSalesText" runat="server" Font-Size="Small" Font-Bold="true" Text="Money Order Amount: "></asp:Label></td>
                    <td align="left"><asp:Label ID="orderSalesValue" runat="server" Font-Size="Small" Font-Bold="true"></asp:Label></td>
                </tr>
                <tr>
                    <td align="left"><asp:Label ID="orderFeesText" runat="server" Font-Size="Small" Font-Bold="true" Text="Money Order Fees: "></asp:Label></td>
                    <td align="left"><asp:Label ID="orderFeesValue" runat="server" Font-Size="Small" Font-Bold="true"></asp:Label></td>
                </tr>
            </table>
        </fieldset>
    </asp:Panel>
    <br />
    <br />
    <asp:Panel ID="logPanel" runat="server">
         
    </asp:Panel>
    <asp:Panel ID="countPanel" runat="server" DefaultButton="inputButton" Visible="false">
        <fieldset>
            <legend>Total Money Orders</legend>
            <table>
                <tr>
                    <td align="left"><telerik:RadNumericTextBox ID="orderCount" Width="150px" runat="server" MaxLength="2" NumberFormat-DecimalDigits="0" NumberFormat-GroupSeparator="" DataType="Int32"></telerik:RadNumericTextBox></td>
                    <td align="left"><asp:Button ID="inputButton" runat="server" Text="Enter Count" OnClick="InputButton_Click" /></td>
                </tr>
            </table>
        </fieldset>
    </asp:Panel>
    <br />
    <br />
    <asp:Panel ID="amountPanel" runat="server" Visible="false" DefaultButton="printButton">
        <telerik:RadListView ID="amountList" runat="server" ItemPlaceholderID="amountPlaceHolder">
            <LayoutTemplate>
                <fieldset>
                    <legend>Money Order Amounts</legend>
                    <asp:Panel ID="amountPlaceHolder" runat="server"></asp:Panel>
                </fieldset>
            </LayoutTemplate>           
            <ItemTemplate>
                <center>
                    <table>
                        <tr>
                            <td align="right"><asp:Label ID="amountLabel" runat="server" Text="<%# Container.DataItem.ToString() %>" Font-Bold="true" Font-Size="Small"></asp:Label></td>
                            <td align="left"><telerik:RadNumericTextBox ID="amountBox" Width="150px" runat="server" NumberFormat-DecimalDigits="2" DataType="double"></telerik:RadNumericTextBox></td>                           
                        </tr>
                    </table>
                </center>       
            </ItemTemplate>
        </telerik:RadListView>           
        <br />
        <br />
        <center>
            <asp:CheckBox ID="suspFlag" runat="server" /><asp:Label runat="server" ID="suspText" Text="This order is suspicious" Font-Bold="true" Font-Size="Small"></asp:Label>
            <br />
            <asp:Button ID="printButton" runat="server" Text="Print Money Orders" OnClick="PrintButton_Click" />
        </center>           
    </asp:Panel>

Here is my server-side code:
public partial class MoneyOrder_Create : System.Web.UI.Page
{
    ACROrder order = ACRFunctions.Order;
    int moneyOrderCount = ACRFunctions.OrderCount;
    protected void Page_Load(object sender, EventArgs e)
    {
        ((AppMasterPage)Master).verNum = "3.5";
        ((AppMasterPage)Master).visibleHome = true;
        ((AppMasterPage)Master).AppName = "Money Order Creation";
        ((AppMasterPage)Master).visibleBreadCrum = true;
        ((AppMasterPage)Master).subMenuName = navLastMenu.GetMenuLineApps(navLastMenu.GetPreviousMenuID(Convert.ToInt32(Session["SessionMenuID"])));
        if (Request.QueryString["error"] != null)
            errorLabel.Text = Request.QueryString["error"];
    }
 
    protected void LookupButton_Click(object sender, EventArgs e)
    {
        order = ACRFunctions.GetACROrder(Convert.ToInt32(orderNum.Text), true);
        if (order.Order_No == -1)
            SetLookupText("Cannot Find Order in ACR", "", "");           
        else
        {
            if (ACRFunctions.OrderIsMoneyOrder(order))
            {
                if (!ACRFunctions.OrderIsUsed(order))
                {
                    SetLookupText("", ACRFunctions.GetMoneyOrderSum(order).ToString("C"), ACRFunctions.GetMoneyOrderFees(order).ToString("C"));
                    SetFocus(orderCount);
                    ACRFunctions.Order = order;
                    countPanel.Visible = true;
                }
                else
                    SetLookupText("This ACR Order has already been used to print money orders", "", "");               
            }
            else
                SetLookupText("Not a Valid Money Order Transaction", "", "");               
        }
    }
 
    public void SetLookupText(string errorText, string salesText, string feesText)
    {
        errorLabel.Text = errorText;
        orderSalesValue.Text = salesText;
        orderFeesValue.Text = feesText;
        if (salesText == "")
        {
            countPanel.Visible = false;
            amountPanel.Visible = false;
        }
    }
 
    protected void InputButton_Click(object sender, EventArgs e)
    {
        if (string.IsNullOrEmpty(orderCount.Text))
        {
            errorLabel.Text = "You Must Enter a Count";
            return;
        }
        else
        {
            moneyOrderCount = Convert.ToInt32(orderCount.Text);
            if (moneyOrderCount <= 0)
            {
                errorLabel.Text = "You Must Enter a Positive Number";
                amountList.DataSource = null;
                return;
            }
            errorLabel.Text = "";
            amountPanel.Visible = true;
            ArrayList list = new ArrayList();
            for (int i = 0; i < moneyOrderCount; i++)
            {
                list.Add("Amount " + (i + 1) + ": ");
            }
            amountList.DataSource = list;
            ACRFunctions.OrderCount = moneyOrderCount;           
        }
    }
 
    protected void PrintButton_Click(object sender, EventArgs e)
    {
        List<decimal> amounts = new List<decimal>();
        foreach (var item in amountList.Items)
        {
            if (string.IsNullOrEmpty(((item.FindControl("amountBox") as RadNumericTextBox).Text)))
            {
                errorLabel.Text = "You must enter an amount for each money order.  Change the count if you entered too many.";
                return;                                            
            }
            else if (Convert.ToDecimal((item.FindControl("amountBox") as RadNumericTextBox).Text) <= 0)
            {
                errorLabel.Text = "Money Order Amounts Must Be Greater than Zero.";
                return;                                            
            }
            else
                amounts.Add(Convert.ToDecimal((item.FindControl("amountBox") as RadNumericTextBox).Text));
        }
        Printer printer = new Printer();
        string error = printer.PrintMoneyOrders(amounts, ACRFunctions.Order, suspFlag.Checked, Session["SessionUserNum"].ToString(), Request.ServerVariables["REMOTE_ADDR"]);
        if (!string.IsNullOrEmpty(error))
            errorLabel.Text = error;
        else
            errorLabel.Text = "Print Successful";
    }
}

Thanks,
Aaron
Martin
Telerik team
 answered on 11 May 2011
3 answers
178 views
Hi, i have text allign issue in RadScheduler when the resources grouping direction is Vertical. The text is not fully displayed and the text is align to the left.
Here is the picture.


Could anyone please advice me ?
PLEASE !!
Peter
Telerik team
 answered on 11 May 2011
1 answer
99 views
Hi,
I am using telerilk rad grid to show details of employee name and ID with pagination. I also have a text box for employee name which should populate first employee name in the grid page. When i change the grid to second page, the text box should show the first name of second page. I am assigning the text box value in the ItemDataBound event. The value is assigned to the text box but it is not showing in the UI since the grid paging is done in AJAX and the page is not rendered. How to get the text box populate without rendering the whole page.
Thanks,
S, Karthi
Karthi
Top achievements
Rank 1
 answered on 11 May 2011
1 answer
66 views
I have several rad grids on an aspx page and I need to localize the builtin paging control tool tips (i.e Next page, Previous Page)  How do I do thet in VB (ASP.Net)   I have looked all over the web and can not find a concise answer anywhwer.

Thanks,


Gary Graham
Shinu
Top achievements
Rank 2
 answered on 11 May 2011
1 answer
70 views
Hello,

I have a Rad Grid and on it I have 2 filters.. The boss told me he wanted to use a button/image of [Search] and not the default icon that is used for Filtering... I figured out how to change the Icon to use an image via the code below:

.rgFilter 

  background:url('../images/search.gif') !important; 
}  

But when viewed in a browser it clips the image to the same size of the old Icon...

where to set this size/width??

View attached image to see the problem
or URL: http://tinyurl.com/4xzqbyu

Thanks
Shane
Shinu
Top achievements
Rank 2
 answered on 11 May 2011
2 answers
172 views

Hello


I need to set the ID of a repeated button in a RADGrid and then get that ID in the VB code on the server side when it is clicked.


Hers what I’m looking to do...

1) Using a  RADGrid I want a Button in one of the columns (Got it/Can do)

2) When that button is clicked it calls a set of code (function/sub) server side VB

  - I want to give each button a defend ID using the record ID in dataset the data set that’s building out the table for the grid.

  - The code that is called will be the same no matter what button in the list is clicked

  - The code it calls can know/get what button ID was clicked so that it may use the ID to drill in to the DB.
(I know how to do the DB work, just need the Button ID that was clicked, sever side VB)


-Problems/help??

   - I can’t see how to set the ID via the RADGrid designer

      -- I do see how to for "tool tip" and the like but not the button ID (not the button text)

   - Where do I set it to call a sub or function that I have in the VB code page?
   - What code would go in go in the Sub:

Sub GridButtonEdit()

   BtnClkd = Get.GridButtonEdit.ID
End Sub
--- Something like that???? ---


If it’s not possible to set the Button ID (as I see it’s some random long string now) then is there something I could set that I could then get in the code that it calls?


Thanks for the help!

Shane

Shane
Top achievements
Rank 1
 answered on 10 May 2011
2 answers
68 views
I have tried everything I can think of. Please see the attached image. I have a simple menu that willNOT overlay a test box below it.
The menu is within a <div><panel> menu  <panel><div>  and the text box is in another <div><panel> set. ccs dictates where on the form these grouping show. I have tried messing with the z-index and  overlay=true and all other kinds of things.
Help please

gollnick
Kate
Telerik team
 answered on 10 May 2011
2 answers
138 views
Greetings,
    Can the ActiveRegionToolTip of a RadChart be databound to a value returned directly from a datasource?  I am able to set it to the X or Y value in the Chart datapoint using #Y, etc., but if the query is returning extra text in a different field, is there a way to directly feed that into the ActiveRegionToolTip?  (i.e., without resorting to server side code when the items are databound).

Thanks
Dave
David
Top achievements
Rank 1
 answered on 10 May 2011
3 answers
128 views
I searched the forum and couldn't find anything that fixed my problem, so I'm posting it now in hopes of getting an answer. This is my problem: I am using RadWindow as a popup modal login. The window opens without any problems and I can perform the login without any problems. The issue is when the RadWindow closes. I keep getting an error saying that the javascript method is undefined. This is the relevant code:

<telerik:RadWindow ID="dlgLogin" runat="server" Behaviors="Close" ReloadOnShow="true" OnClientClose="RadWindowOnClientClose" BackColor="Gray" Modal="true" Height="250"></telerik:RadWindow>

function RadWindowOnClientClose(radWindow) {
                document.location.pathname = "/DaytonDefense/Web/Public/Default.aspx";
            }

Now when I change the inside of the function to something like 'window.location.reload' it works without any problems. Also, if I put that line inside another function and call it from a button click it works fine as well, it just won't work in the OnClientClose function. I can't figure out what I'm doing wrong, help please!
Andrew
Top achievements
Rank 1
 answered on 10 May 2011
1 answer
140 views

Hello there!

I'm having an issue with ToolTipManager and RadGrid Detail Table, I programmatic add TargetControls, one control is a templatecolumn on mastertableview the other is also a templatecolumn on detail table same grid, first control triggers perfectly although when I hover template column item on detail table nothing happens.

I'm doing something like http://demos.telerik.com/aspnet-ajax/tooltip/examples/targetcontrolsandajax/defaultvb.aspx sample, I mean, I want to load dynamic data on each ToolTip.

Need some advice.

Thanks.

Alex.

Private Sub UpdateToolTip(ByVal elementID As String, ByVal panel As UpdatePanel)
    Dim ctrl As Control = Page.LoadControl("WUC_PolizaDetail.ascx")
    panel.ContentTemplateContainer.Controls.Add(ctrl)
    Dim details As WUC_PolizaDetail = DirectCast(ctrl, WUC_PolizaDetail)
    details.ProductID = elementID
End Sub
 
Protected Sub OnAjaxUpdate(ByVal sender As Object, ByVal args As ToolTipUpdateEventArgs) Handles RadToolTipManager1.AjaxUpdate, RadToolTipManager2.AjaxUpdate
    Me.UpdateToolTip(args.Value, args.UpdatePanel)
End Sub
 
Protected Sub Grid_2_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles Grid_2.ItemDataBound
    Dim target2 As Control
    If e.Item.ItemType = GridItemType.Item OrElse e.Item.ItemType = GridItemType.AlternatingItem Then
        Dim target As Control = e.Item.FindControl("tooltip")
 
 
        If e.Item.OwnerTableView.Name = "Detail_Table" AndAlso ((e.Item.ItemType = GridItemType.Item) OrElse (e.Item.ItemType = GridItemType.AlternatingItem)) Then
            Dim item As GridDataItem = e.Item
            target2 = item.FindControl("tooltip_detail")
        End If
 
        If Not [Object].Equals(target, Nothing) Then
            If Not [Object].Equals(Me.RadToolTipManager1, Nothing) Then
                Me.RadToolTipManager1.TargetControls.Add(target.ClientID, (TryCast(e.Item, GridDataItem)).GetDataKeyValue("POLIZA").ToString(), True)
            End If
        End If
 
        If Not [Object].Equals(target2, Nothing) Then
            If Not [Object].Equals(Me.RadToolTipManager2, Nothing) Then
                Me.RadToolTipManager2.TargetControls.Add(target2.ClientID, TryCast(e.Item, GridDataItem).GetDataKeyValue("ID_RECIBO").ToString(), True)
            End If
        End If
    End If
End Sub
 
Protected Sub Grid_2_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles Grid_2.ItemCommand
    If e.CommandName = "Sort" OrElse e.CommandName = "Page" Then
        RadToolTipManager1.TargetControls.Clear()
        RadToolTipManager2.TargetControls.Clear()
    End If
End Sub
        <table>
            <tr>
                <td>
                    <br />
                    <asp:SqlDataSource ID="SqlRecibosData" runat="server" ConnectionString="<%$ ConnectionStrings:IVConnectionString %>"
                        SelectCommand="SELECT CONS_RECIBOS_CONCILIA.POLIZA, CONS_RECIBOS_CONCILIA.CLAVEAGENTE AS AGENTE, CONS_RECIBOS_CONCILIA.CLIENTE AS ASEGURADO, CASE ISNULL(dbo.ENDOSOS.ENDOSO , 'LA') WHEN 'LA' THEN CAST(dbo.CONS_RECIBOS_CONCILIA.ENDOSO AS VARCHAR) ELSE dbo.ENDOSOS.ENDOSO END AS ENDOSO, CASE CAST(TIPOCAMBIO.MONEDA AS VARCHAR) WHEN '1' THEN 'PESOS' WHEN '2' THEN 'DOLARES' WHEN '3' THEN 'EUROS' WHEN '4' THEN 'UDIS' END AS MONEDA FROM (SELECT FOLIO_OT, ENDOSO, FECHA_DESCARTE FROM (SELECT FOLIO_OT, 0 AS ENDOSO, FECHA_DESCARTE FROM POLIZAS AS POLIZAS_1 UNION SELECT FOLIO_OT, CONSECUTIVO AS ENDOSO, FECHA_DESCARTE FROM ENDOSOS AS ENDOSOS_1) AS derivedtbl_1) AS DESCARTE RIGHT OUTER JOIN ENDOSOS RIGHT OUTER JOIN CONS_RECIBOS_CONCILIA ON ENDOSOS.FOLIO_OT = CONS_RECIBOS_CONCILIA.FOLIO_OT AND ENDOSOS.CONSECUTIVO = CONS_RECIBOS_CONCILIA.ENDOSO ON DESCARTE.FOLIO_OT = CONS_RECIBOS_CONCILIA.FOLIO_OT AND DESCARTE.ENDOSO = CONS_RECIBOS_CONCILIA.ENDOSO LEFT OUTER JOIN CONS_GRUPOS ON CONS_RECIBOS_CONCILIA.ID_CONTRATANTE = CONS_GRUPOS.ID_CLIENTE LEFT OUTER JOIN CORRESPONSALES RIGHT OUTER JOIN POLIZAS ON CORRESPONSALES.ID_CORRESPONSAL = POLIZAS.ID_CORRESPONSAL1 ON CONS_RECIBOS_CONCILIA.FOLIO_OT = POLIZAS.FOLIO_OT LEFT OUTER JOIN TIPOCAMBIO RIGHT OUTER JOIN COB_LIQUIDACION ON TIPOCAMBIO.ID_TIPCAMBIO = COB_LIQUIDACION.TIPOCAMBIO ON CONS_RECIBOS_CONCILIA.REFER_LIQUIDA = COB_LIQUIDACION.ID_LIQUIDACION LEFT OUTER JOIN CONS_DIF_CONCILIACION ON CONS_RECIBOS_CONCILIA.POLIZA = CONS_DIF_CONCILIACION.POLIZA AND CONS_RECIBOS_CONCILIA.ENDOSO = CONS_DIF_CONCILIACION.ENDOSO AND CONS_RECIBOS_CONCILIA.NUMPAGO = CONS_DIF_CONCILIACION.NUM_PAG AND CONS_RECIBOS_CONCILIA.FOLIO_ASEG = CONS_DIF_CONCILIACION.FOLIO_ASEG AND CONS_RECIBOS_CONCILIA.OFICINA = CONS_DIF_CONCILIACION.OFICINA WHERE (CONS_RECIBOS_CONCILIA.ID_ASEGURADORA = @Aseguradora) AND (CONS_RECIBOS_CONCILIA.CLAVEAGENTE = @Agente) ORDER BY CONS_RECIBOS_CONCILIA.POLIZA, ENDOSO">
                        <SelectParameters>
                            <asp:Parameter Name="Aseguradora" />
                            <asp:Parameter Name="Agente" />
                        </SelectParameters>
                    </asp:SqlDataSource>
                    <asp:SqlDataSource ID="SqlRecibosDetail" runat="server" ConnectionString="<%$ ConnectionStrings:IVConnectionString %>"
                        SelectCommand="SELECT_RECIBOS_CONCILIACION_POLIZA" SelectCommandType="StoredProcedure">
                        <SelectParameters>
                            <asp:Parameter Name="Poliza" Type="String" />
                            <asp:Parameter Name="Endoso" Type="String" />
                        </SelectParameters>
                    </asp:SqlDataSource>
                    <telerik:RadGrid ID="Grid_2" GridLines="None" runat="server" AllowPaging="True" AllowSorting="True"
                        AllowMultiRowEdit="True" AllowMultiRowSelection="True" Width="900px" AutoGenerateColumns="False"
                        AllowFilteringByColumn="True">
                        <MasterTableView EditMode="InPlace" ClientDataKeyNames="POLIZA, ENDOSO" Name="MasterDetail">
                            <ExpandCollapseColumn Visible="True">
                            </ExpandCollapseColumn>
                            <Columns>
                                <telerik:GridBoundColumn DataField="POLIZA" HeaderText="Poliza" SortExpression="POLIZA"
                                    UniqueName="POLIZA">
                                    <HeaderStyle Font-Bold="True" />
                                </telerik:GridBoundColumn>
                                <telerik:GridBoundColumn DataField="ENDOSO" HeaderText="Endoso" ReadOnly="True" SortExpression="ENDOSO"
                                    UniqueName="ENDOSO" ItemStyle-Width="100px" AllowFiltering="False">
                                    <HeaderStyle Font-Bold="True" />
                                    <ItemStyle Width="100px"></ItemStyle>
                                </telerik:GridBoundColumn>
                                <telerik:GridBoundColumn DataField="AGENTE" HeaderText="Agente" SortExpression="AGENTE"
                                    UniqueName="AGENTE" AllowFiltering="False">
                                    <HeaderStyle Font-Bold="True" />
                                </telerik:GridBoundColumn>
                                <telerik:GridBoundColumn DataField="ASEGURADO" HeaderText="Asegurado" SortExpression="ASEGURADO"
                                    UniqueName="ASEGURADO" ReadOnly="True" AllowFiltering="False">
                                    <HeaderStyle Font-Bold="True" />
                                </telerik:GridBoundColumn>
                                <telerik:GridBoundColumn DataField="MONEDA" HeaderText="Moneda" SortExpression="MONEDA"
                                    UniqueName="MONEDA" ReadOnly="True" AllowFiltering="False">
                                    <HeaderStyle Font-Bold="True" />
                                </telerik:GridBoundColumn>
                                <telerik:GridTemplateColumn HeaderText="Detalle" UniqueName="TemplateColumn" 
                                    AllowFiltering="False">
                                    <ItemTemplate>
                                        <asp:Image ID="tooltip" runat="server" ImageUrl="../../Imagenes_LMS/ico_mas_info.gif"/>
                                    </ItemTemplate>
                                </telerik:GridTemplateColumn>
                            </Columns>
                            <ItemStyle Font-Bold="False" Font-Italic="False" Font-Names="Calibri" Font-Overline="False"
                                Font-Size="Small" Font-Strikeout="False" Font-Underline="False" Wrap="True" />
                            <AlternatingItemStyle Font-Bold="False" Font-Italic="False" Font-Names="calibri"
                                Font-Overline="False" Font-Size="Small" Font-Strikeout="False" Font-Underline="False"
                                Wrap="True" />
                            <EditItemStyle BackColor="#DAFCAB" Font-Bold="True" ForeColor="#006600" />
                            <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Names="Calibri" Font-Overline="False"
                                Font-Size="Small" Font-Strikeout="False" Font-Underline="False" Wrap="True" />
                            <DetailTables>
                                <telerik:GridTableView AllowSorting="false" DataSourceID="SqlRecibosDetail" Width="100%"
                                    PageSize="7" AllowFilteringByColumn="False" EditMode="InPlace" DataKeyNames="ID_RECIBO"
                                    ClientDataKeyNames="ID_RECIBO" Name="Detail_Table">
                                    <ParentTableRelation>
                                        <telerik:GridRelationFields DetailKeyField="POLIZA" MasterKeyField="POLIZA" />
                                        <telerik:GridRelationFields DetailKeyField="ENDOSO" MasterKeyField="ENDOSO" />
                                    </ParentTableRelation>
                                    <Columns>
                                        <telerik:GridClientSelectColumn HeaderText="Seleccionar" UniqueName="columnCHec">
                                        </telerik:GridClientSelectColumn>
                                        <telerik:GridBoundColumn DataField="LIQ" HeaderText="Liq." SortExpression="LIQ" UniqueName="LIQ"
                                            ReadOnly="True">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn DataField="ID_RECIBO" HeaderText="Recibo" SortExpression="ID_RECIBO"
                                            UniqueName="ID_RECIBO" ReadOnly="True" Visible="False">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn DataField="FEC_LIQ" HeaderText="FLiq." SortExpression="FEC_LIQ"
                                            UniqueName="FEC_LIQ" ReadOnly="True" DataFormatString="{0:dd/MM/yy}">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn DataField="FECHA_INICIO" HeaderText="Inicio Vig" SortExpression="FECHA_INICIO"
                                            UniqueName="FECHA_INICIO" ReadOnly="True" DataFormatString="{0:dd/MM/yy}">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn SortExpression="SERIE" HeaderText="Serie" DataField="SERIE"
                                            UniqueName="SERIE" ReadOnly="True">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridDropDownColumn DataSourceID="SQLData_Action" EmptyListItemText="Seleccione una opcion..."
                                            EmptyListItemValue="0" EnableEmptyListItem="True" HeaderText="Accion" ListTextField="Action_Desc"
                                            ListValueField="Action_ID" UniqueName="column1">
                                            <HeaderStyle HorizontalAlign="Center" />
                                        </telerik:GridDropDownColumn>
                                        <telerik:GridDropDownColumn DataSourceID="SQLData_Status" EmptyListItemText="Seleccione una opcion..."
                                            EmptyListItemValue="0" EnableEmptyListItem="True" HeaderText="Status" ListTextField="Status_Desc"
                                            ListValueField="Status_ID" UniqueName="column2">
                                            <HeaderStyle HorizontalAlign="Center" />
                                        </telerik:GridDropDownColumn>
                                        <telerik:GridTemplateColumn HeaderText="Autos" UniqueName="TemplateColumn1">
                                            <ItemTemplate>
                                                <asp:Button ID="Button2" runat="server" Text="Detalle" OnClientClick="ConciliacionManual();return false;" />
                                            </ItemTemplate>
                                        </telerik:GridTemplateColumn>
                                        <telerik:GridTemplateColumn HeaderText="Detalle" UniqueName="DetailColumn">
                                            <ItemTemplate>
                                                <asp:Image ID="tooltip_detail" runat="server" ImageUrl="../../Imagenes_LMS/ico_mas_info.gif" />
                                            </ItemTemplate>
                                        </telerik:GridTemplateColumn>
                                        <telerik:GridEditCommandColumn ButtonType="ImageButton" EditImageUrl="../../Imagenes_LMS/Edit.png"
                                            EditText="Editar" UpdateImageUrl="../../Imagenes_LMS/Update.png" UpdateText="Guardar Cambios"
                                            CancelImageUrl="../../Imagenes_LMS/Cancel.png" CancelText="Cancelar">
                                        </telerik:GridEditCommandColumn>
                                    </Columns>
                                    <EditFormSettings>
                                        <EditColumn UniqueName="EditCommandColumn1">
                                        </EditColumn>
                                    </EditFormSettings>
                                </telerik:GridTableView>
                            </DetailTables>
                        </MasterTableView>
                        <ClientSettings>
                            <Selecting AllowRowSelect="True" />
                            <ClientEvents OnRowClick="RowClick" OnRowDblClick="RowDblClick" OnGridCreated="GridCreated"
                                OnCommand="GridCommand" />
                        </ClientSettings>
                    </telerik:RadGrid>
                    <br />
                </td>
            </tr>
            <tr align="center">
                <td>
                    <asp:Button ID="Btn_Conciliacion" runat="server" CssClass="Boton" Text="Conciliar Recibos Seleccionados"
                        Width="180px" />    
                    <asp:Button ID="Button1" runat="server" CssClass="Boton" Text="Cancelar" Width="80px"
                        OnClientClick="returnToParent()" />
                </td>
            </tr>
        </table>
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="AjaxLoadingPanel1">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="Grid_2" LoadingPanelID="AjaxLoadingPanel1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
                <telerik:AjaxSetting AjaxControlID="Grid_2">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="Grid_2" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>
        <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Position="BottomCenter"
            Animation="Fade" RelativeTo="Element" Width="500px" Height="300px" Style="font-size: 18px;
            text-align: center; font-family: Arial;" RenderInPageRoot="true">
        </telerik:RadToolTipManager>
        <telerik:RadToolTipManager ID="RadToolTipManager2" runat="server" 
            Animation="FlyIn" Height="300px" RelativeTo="Element" RenderInPageRoot="True" 
            Width="500px">
        </telerik:RadToolTipManager>
        <telerik:RadAjaxLoadingPanel ID="AjaxLoadingPanel1" runat="server" Skin="Hay" IsSticky="True"
            HorizontalAlign="Center" BackgroundPosition="Top">
        </telerik:RadAjaxLoadingPanel>
    </div>
    <asp:SqlDataSource ID="SqlData_Status" runat="server" ConnectionString="<%$ ConnectionStrings:IVConnectionString %>"
        SelectCommand="SELECT [Status_ID], [Status_Desc] FROM [Status]"></asp:SqlDataSource>
    <asp:SqlDataSource ID="SqlData_Action" runat="server" ConnectionString="<%$ ConnectionStrings:IVConnectionString %>"
        SelectCommand="SELECT [Action_ID], [Action_Desc] FROM [Actions]"></asp:SqlDataSource>
    </form>
</body>
</html>

Alejandro
Top achievements
Rank 1
 answered on 10 May 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?