Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
330 views
Hi All,

i have a page this used radgrid to retrieve data from database and i used a customized edit form which is shown as popup while editing and inserting records....

i noticed that when this popup is called for the first time...all controls in it are shown correctly in their postions including the update/insert and cancel buttons.... the popup is called when click on the edit/insert columns in the grid...

but after the first time and when the popup is called the update/insert button is moved up its position in the row...

i used html tables to design the popup template....

i don't know what is the reason for this behavior??? and how can be solved?

i have a second question regarding the grid direction attribute if from right to left...
the gird direction becomes from right to left correctly BUT the grid header, pager and filter row is expanded and controls are not in their expected positions.

i have attached a snapshot of the grid when it is left to right and right to left...

i hope can find the reason and solution of this problem????

thanks in adavnced

Asa'ad

Asa'ad
Top achievements
Rank 1
 answered on 10 Jul 2011
2 answers
44 views
Hi

I tried to use radeditor 4.5.6 in my webpart coding. I am getting the error message as "The type 'Telerik.SharePoint.MOSSRadEditor' has no constructors defined". It means "Radeditor Lite version" ?. Can we use this version in my webpart coding?.  I can't craete a instance for MoassRadEditor class. How can I use? if it is possible. Please guide me the correct way.

Thanaks in advance

selva
Top achievements
Rank 1
 answered on 09 Jul 2011
8 answers
691 views
Im reposting this here because someone moved my query to radmenu because i used it as an example. Ill paste my comments below...

Post 1.

After updating to the latest version of rad controls,  Visual Studio is not showing me the control formed correctly.
For example

<telerik:RadMenu ID="RadMenu3" Runat="server"></telerik:RadMenu

works fine, but

 

<telerik:RadMenu ID="RadMenu3" Runat="server" Skin="Forest"><CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation></telerik:RadMenu>

 


doesnt .

...and while you at it, can u put the colour controls in here, there is nothing more annoying then having to format text after copying and pasting.

Post 2.

ok, now the error for the ajax manager comes up as:
Error creating control - Rad Ajax Manager1

'AjaxSettings' could not be initialized. Detailes:[a]Telerik.Web.Ui.RadAjaxManager cannot be cast to[B]Telerik.Web.Ui.RadAjaxManager. Type A originates from 'Telerik.Web.Ui, Version=2008.3.1125.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' in the context 'LoadNeither' at location 'C:\Documents and settingsMatthew\Local Settings\Application Data\Microsoft\VisualStudio\9.0\ProjectAssemblies\y5-i03sn01\telerik.web.ui.dll'. Type B originates from 'Telerik.Web.Ui, Version=2008.3.1125.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' in the context 'LoadNeither' at location 'C:\Documents and settingsMatthew\Local Settings\Application Data\Microsoft\VisualStudio\9.0\ProjectAssemblies\z0ovsobn01\telerik.web.ui.dll'.

I have deleted the contents of 'C:\Documents and settingsMatthew\Local Settings\Application Data\Microsoft\VisualStudio\9.0\ProjectAssemblies' in case it was calling an old version, or it was cached or something.

If I drag a new control from th tool bar, then everything is fine until I try and change a setting


I really need some help on this as I have been able to do no work since installing the new controls


Michael
Top achievements
Rank 1
 answered on 08 Jul 2011
2 answers
166 views
Hi all,

I have grid that on insert / edit opens a RadWindow using functionality I have found on this website.  This default functionality uses a default view to present the edit form and I have amended it slightly changing two of the text boxes to a RadDatePicker and a RadEditor.  These additional RadControls bind properly but the binding appears to only be one way.  Upon update/insert any data in these RadControls is ignored and only the data from the text boxes goes into the database.

Can anyopne help me out please?  I have attached the code below:

PersonEditForm.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonEditForm.aspx.cs" Inherits="HonoursBoard.Admin.PersonEditForm" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
    <head id="Head1" runat="server">  
        <title>Untitled Page</title> 
    </head> 
    <body> 
        <form id="form1" runat="server">  
            <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
            </telerik:RadScriptManager> 
            <div> 
                <script type="text/javascript">  
                function CloseAndRebind(args)  
                {  
                    GetRadWindow().Close();  
                    GetRadWindow().BrowserWindow.refreshGrid(args);  
                }  
                       
                function GetRadWindow()  
                {  
                    var oWindow = null;  
 
                    if (window.radWindow)  
                        oWindow = window.radWindow; //Will work in Moz in all cases, including classic dialog  
                    else if (window.frameElement.radWindow)  
                        oWindow = window.frameElement.radWindow;//IE (and Moz as well)  
                        return oWindow;  
                 }  
                 function CancelEdit()  
                 {  
                    GetRadWindow().Close();    
                 }  
                </script> 
                <asp:DetailsView ID="DetailsView1" DataKeyNames="intPersonID" runat="server" AutoGenerateRows="False" 
                    DataSourceID="SqlDataSource1" Height="50px" Width="125px" OnItemCommand="DetailsView1_ItemCommand">  
                    <Fields> 
                        <asp:BoundField DataField="strTitle" HeaderText="Title" SortExpression="strTitle" /> 
                        <asp:BoundField DataField="strFirstName" HeaderText="First Name" SortExpression="strFirstName" /> 
                        <asp:BoundField DataField="strInitials" HeaderText="Initials" SortExpression="strInitials" /> 
                        <asp:BoundField DataField="strLastName" HeaderText="Last Name" SortExpression="strLastName" /> 
                        <asp:TemplateField HeaderText="Date Of Birth">  
                            <ItemTemplate> 
                                <telerik:RadDatePicker EnableViewState="false" MinDate="01/01/1850" 
                                    MaxDate="01/01/2100" Skin="Telerik" ID="RadDatePicker1" 
                                    DbSelectedDate='<%# DataBinder.Eval(Container.DataItem, "datDateOfBirth") %>' 
                                    Runat="server"></telerik:RadDatePicker> 
                            </ItemTemplate> 
                        </asp:TemplateField> 
                        <asp:TemplateField HeaderText="Biography">  
                            <ItemTemplate> 
                                <telerik:RadEditor EnableViewState="false" ID="RadEditor1" runat="server" Skin="Telerik" 
                                    ToolsFile="~/Editor/BasicTools.xml" Width="400px" Height="200px" 
                                    Content='<%# DataBinder.Eval(Container.DataItem, "strBiography") %>'>  
                                </telerik:RadEditor> 
                            </ItemTemplate> 
                        </asp:TemplateField> 
                        <asp:CommandField ShowEditButton="True" /> 
                        <asp:CommandField ShowInsertButton="True" InsertText="Add" /> 
                    </Fields> 
                </asp:DetailsView> 
            </div> 
            <asp:SqlDataSource ID="SqlDataSource1" runat="server"   
                ConnectionString="<%$ ConnectionStrings:dbGolfHonoursConnectionString %>"   
                InsertCommand="InsertAPerson" InsertCommandType="StoredProcedure"   
                SelectCommand="SelectPersonByPersonID" SelectCommandType="StoredProcedure"   
                UpdateCommand="UpdateAPerson" UpdateCommandType="StoredProcedure">  
                <SelectParameters> 
                    <asp:QueryStringParameter DefaultValue="0" Name="PersonID"   
                        QueryStringField="intPersonID" Type="Int32" /> 
                </SelectParameters> 
                <UpdateParameters> 
                    <asp:Parameter Name="intPersonID" Type="Int32" /> 
                    <asp:Parameter Name="strTitle" Type="String" /> 
                    <asp:Parameter Name="strFirstName" Type="String" /> 
                    <asp:Parameter Name="strInitials" Type="String" /> 
                    <asp:Parameter Name="strLastName" Type="String" /> 
                    <asp:Parameter Name="strBiography" Type="String" /> 
                    <asp:Parameter Name="datDateOfBirth" Type="DateTime" /> 
                </UpdateParameters> 
                <InsertParameters> 
                    <asp:Parameter Name="strTitle" Type="String" /> 
                    <asp:Parameter Name="strFirstName" Type="String" /> 
                    <asp:Parameter Name="strInitials" Type="String" /> 
                    <asp:Parameter Name="strLastName" Type="String" /> 
                    <asp:Parameter Name="strBiography" Type="String" /> 
                    <asp:Parameter Name="datDateOfBirth" Type="DateTime" /> 
                </InsertParameters> 
            </asp:SqlDataSource> 
        </form> 
    </body> 
</html> 


PersonEditForm.aspx.cs
using System;  
using System.Collections;  
using System.Configuration;  
using System.Data;  
using System.Linq;  
using Telerik.Web.UI;  
using System.Web;  
using System.Web.Security;  
using System.Web.UI;  
using System.Web.UI.HtmlControls;  
using System.Web.UI.WebControls;  
using System.Web.UI.WebControls.WebParts;  
using System.Xml.Linq;  
 
namespace HonoursBoard.Admin  
{  
    public partial class PersonEditForm : System.Web.UI.Page  
    {  
        protected void Page_Init(object sender, EventArgs e)  
        {  
            if (Request.QueryString["intPersonID"] == null)  
            {  
                DetailsView1.DefaultMode = DetailsViewMode.Insert;  
            }  
            else 
            {  
                DetailsView1.DefaultMode = DetailsViewMode.Edit;  
            }  
        }  
 
        protected void DetailsView1_ItemCommand(object sender, System.Web.UI.WebControls.DetailsViewCommandEventArgs e)  
        {  
            if (e.CommandName == "Update")  
            {  
                ClientScript.RegisterStartupScript(Page.GetType(), "mykey""CloseAndRebind();"true);  
            }  
            else if (e.CommandName == "Insert")  
            {  
                ClientScript.RegisterStartupScript(Page.GetType(), "mykey""CloseAndRebind('navigateToInserted');"true);  
            }  
            else 
            {  
                ClientScript.RegisterStartupScript(Page.GetType(), "mykey""CancelEdit();"true);  
            }  
        }  
    }  

Thanks in advance for any help offered,

Martyn
Hoon
Top achievements
Rank 1
 answered on 08 Jul 2011
1 answer
109 views
Hi, I would like to have a confirm button. Here what I have done so far:

Code-Behind:

protected void btnClear_Click(object sender, EventArgs e)

 

{

    RadWindowManager1.RadConfirm(

 

"ARE YOU SURE WANT TO CLEAR THE SEARCH FORM?", "buttonConfirm",450, 150, null, "INFO");

 

 

 

    if (hdfConfirm.Value == "true")

 

    {

        resetSearchForm();

    }

    

 

 

}


Javascript:

function

 

 

buttonConfirm(arg)
{
    if (arg)
    {
        //Set hidden field (hdfConfirm) value to true

 

        document.getElementById("<%=hdfConfirm.ClientID%>").value =

 

"true";

 

    }

 

 

    else 
    {
        //Set hidden field (hdfConfirm) value to false

 

        document.getElementById("<%=hdfConfirm.ClientID%>").value =

 

"false";

 

    }
    $find("<%=RadAjaxManager1.ClientID%>").ajaxRequest(arg);


 

But it didn't work. Would you please check to see if I'm missing something here?

 

Thanks

Lamk



LamKhoa
Top achievements
Rank 1
 answered on 08 Jul 2011
5 answers
240 views
I'm looking at your online demo for Exporting from the RadGrid.

http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/exporting/defaultcs.aspx

I immediately click on the "Export to Excel" button.  While reviewing the exported Excel or Word file, I notice that each textbox in the grid's footer has replicated itself 3 times for Page where I believe it should only display once.  Please see attached screenshot (exportexcel.jpg).

I am experiencing something similar when exporting a RadGrid to Excel with a RadTextbox visible on a grid row.  Please see screenshot of grid before exporting (exportgrid.jpg).  Please see screenshot of exported data (exportedtextbox.jpg). I'm my example, the textbox & value are duplicated.

My grid column is defined like this:

<telerik:GridTemplateColumn UniqueName="colUnits" HeaderText="Units">
   <HeaderStyle Width="100px" HorizontalAlign="Left" />
   <ItemStyle Width="100px" HorizontalAlign="Right" />
   <ItemTemplate>
      <telerik:RadNumericTextBox ID="txtUnits" runat="server" Width="40px" AutoPostBack="false"
         NumberFormat-DecimalDigits="0" CausesValidation="false" MinValue="0" MaxLength="3"
         NumberFormat-AllowRounding="false" Style="text-align:right;">
          <ClientEvents OnValueChanged="txtUnits_OnValueChanged" />
          <ClientEvents OnKeyPress="KeyPress" />
      </telerik:RadNumericTextBox>
   </ItemTemplate>
</telerik:GridTemplateColumn>

The grid is NOT in edit mode and I would like to just export the data inside the textbox. 

When I attempt to do the following setting:

grid.ExportSettings.ExportOnlyData = True

The column with the textbox does not get any data exported at all to Excel or PDF.

If

grid.ExportSettings.ExportOnlyData = False

Then I get the issue described above with the replicated data when exporting to Excel.  Still no data get exported for PDF.

I believe this is either an export setting issue, a formatting issue, or a bug with the export functionality.

Please advise.
Daniel
Telerik team
 answered on 08 Jul 2011
1 answer
87 views
Is there any issues with the ability to filter using a filter template with a radcomb box in version 2009.2.826.35?
I can load the grid, create the radcombo and fill it with values but when I select a value from the combo xo nothin happens.

<telerik:RadGrid ID="RadGrid1" runat="server"  AllowPaging="True" EnableLinqExpressions ="false"
                    PageSize="25" AutoGenerateColumns="False" GridLines="None" AllowSorting="True" Width="100%"
                    AllowFilteringByColumn="true" AlternatingItemStyle-BackColor="#eeeeee" ShowStatusBar="True"
                    OnNeedDataSource="RadGrid1_NeedDataSource" OnItemDataBound="RadGrid1_ItemDataBound"
                    OnInsertCommand="RadGrid1_InsertCommand" OnUpdateCommand="RadGrid1_UpdateCommand" 
                    OnItemCreated="RadGrid1_ItemCreated">
                     <PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" />
                            <MasterTableView CommandItemDisplay="Top" DataKeyNames="AuditID" EditMode="InPlace">
                                <AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>
                                <Columns>
                                    <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" HeaderStyle-Width="50px" />                                    
                                    <telerik:GridTemplateColumn HeaderText="Branch" SortExpression="" UniqueName="CRDBranchNumber"  HeaderStyle-Width="160px">                                  
                                       <ItemTemplate>
                                          <asp:Label runat="server" ID="lbCRDBranchNumber" Text='<%# Eval("CRDBranchNumber") %>' />
                                       </ItemTemplate>
                                       <EditItemTemplate>
                                          <telerik:RadComboBox ID="rcbCRDBranchNumber" DataTextField="CRDBranchNumber" DataValueField="CRDBranchNumber" runat="server" Width="115px" />
                                           <asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="rcbCRDBranchNumber" ErrorMessage="*"
                                                 runat="server" ToolTip="Branch is Required" InitialValue="Select Branch"  ForeColor="Red" />
                                          <asp:Label runat="server" ID="ldID" Visible="false" Text='<%# Eval("CRDBranchNumber") %>' />
                                       </EditItemTemplate>
                                    </telerik:GridTemplateColumn>                                        
                                    <telerik:GridTemplateColumn HeaderText="Auditor" SortExpression="" UniqueName="Auditor"  HeaderStyle-Width="225px">
                                       <ItemTemplate>
                                          <asp:Label runat="server" ID="lbAuditor" Text='<%# Eval("AuditorName") %>' />
                                       </ItemTemplate>
                                       <EditItemTemplate>
                                          <telerik:RadComboBox ID="rcbAuditor" DataTextField="AuditorName" DataValueField="AuditorID" runat="server" Width="175px" />
                                           <asp:RequiredFieldValidator ID="RequiredFieldValidator2" ControlToValidate="rcbAuditor" ErrorMessage="*"
                                                 runat="server" ToolTip="Auditor is Required" InitialValue="Select Auditor"  ForeColor="Red" />
                                          <asp:Label runat="server" ID="ldAuditorID" Visible="false" Text='<%# Eval("AuditorID") %>' />
                                       </EditItemTemplate>
                                    </telerik:GridTemplateColumn>                                                                                                
                                    <telerik:GridNumericColumn DataField="AuditYear" HeaderText="Audit Year" SortExpression="AuditYear" UniqueName="AuditYear" 
                                          DataType="System.Decimal" DataFormatString="{0:F0}" />                     
                                    <telerik:GridDateTimeColumn  SortExpression="ScheduledDate" DataField="ScheduledDate"
                                        HeaderText="Scheduled" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}"
                                        AllowFiltering="false" HeaderStyle-Width="100px" UniqueName="ScheduledDate" />
                                    <telerik:GridDateTimeColumn SortExpression="CompletedDate" DataField="CompletedDate"
                                        HeaderText="Completed" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}"
                                        AllowFiltering="false" HeaderStyle-Width="100px" UniqueName="CompletedDate" />                                        
                                    <telerik:GridTemplateColumn HeaderText="Status" SortExpression="" UniqueName="Status"  HeaderStyle-Width="195px">
                                       <FilterTemplate>
                                            <telerik:RadComboBox ID="rcbStatus" DataTextField="Status" DataValueField="Status"
                                                AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("Status").CurrentFilterValue %>'
                                                runat="server" AutoPostBack="true"  OnClientSelectedIndexChanged="TitleIndexChanged">
                                                    <Items>
                                                        <telerik:RadComboBoxItem Text="All" />
                                                    </Items>
                                                </telerik:RadComboBox>
                                                <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
                                                    <script type="text/javascript">
                                                        function TitleIndexChanged(sender,args) {
                                                            var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                                            tableView.filter("Status",args.get_item().get_value(),"EqualTo");                                                            
                                                        }
                                                    </script>
                                                </telerik:RadScriptBlock>
                                       </FilterTemplate>
                                       <ItemTemplate>
                                          <asp:Label runat="server" ID="lblStatus" Text='<%# Eval("Status") %>' />
                                       </ItemTemplate>
                                       <EditItemTemplate>
                                          <telerik:RadComboBox ID="rcbStatus" DataTextField="Status" DataValueField="AuditStatusID" runat="server" Width="150px" />
                                          <asp:RequiredFieldValidator ID="RequiredFieldValidator3" ControlToValidate="rcbStatus" ErrorMessage="*"
                                                 runat="server" ToolTip="Status is Required" InitialValue="Select Status"  ForeColor="Red" />
                                          <asp:Label runat="server" ID="lbAuditStatusID" Visible="false" Text='<%# Eval("AuditStatusID") %>' />
                                       </EditItemTemplate>
                                    </telerik:GridTemplateColumn>                                                                                
                                </Columns>
                                <EditFormSettings>
                                    <EditColumn InsertText="Insert Audit" UpdateText="Update Audit" UniqueName="EditCommandColumn1"
                                        CancelText="Cancel edit">
                                    </EditColumn>
                                </EditFormSettings>
                            </MasterTableView>

I can get this to work in another application but I am using 2009.3.1314.35.
Eric Klein
Top achievements
Rank 1
 answered on 08 Jul 2011
2 answers
53 views
<radTree:RadTreeView ID="treeAddSection" CheckBoxes="true" runat="server" Width="700px"   Skin="HSTM" MultipleSelect="false" EnableEmbeddedSkins="false" RetainScrollPosition="true"   AutoPostBack="true">
<Nodes>
                <radTree:RadTreeNode Text="Node1" SelectedImageUrl="/image1.gif"></radTree:RadTreeNode>
                <radTree:RadTreeNode Text="Node2" SelectedImageUrl="/image1.gif"></radTree:RadTreeNode>
               <radTree:RadTreeNode Text="Node3" SelectedImageUrl="/image1.gif"></radTree:RadTreeNode>
</Nodes>
</radTree:RadTreeView>

The RadTree will populate with three nodes. Initially Select the "Node1" the selectedimageurl will displayed
for the node1. Now select the "Node3" the selectedImageUrl is showing for "Node3", without hiding the "Node1"
selected image url. I just want to only one at the same time.
vijayashankar palanichamy
Top achievements
Rank 1
 answered on 08 Jul 2011
2 answers
81 views
Hi,

I have a Toolbar located above a window manager. When the window manager is empty the Splitbutton menu is visible, but when the window manager loads a window the button menu goes behind the active window. I tried playing with the z-index but by default the toolbar has a higher index than the window.

I am using Telerik.Web.UI version 2011.1.519.35.

Yohancef
Top achievements
Rank 1
 answered on 08 Jul 2011
4 answers
180 views
Hi,

I have a Toolbar located above a window manager. When the window manager is empty the Splitbutton menu is visible, but when the window manager loads a window the button menu goes behind the active window. I tried playing with the z-index but by default the toolbar has a higher index than the window.

I am using Telerik.Web.UI version 2011.1.519.35.

<%

@ Page Language="C#" AutoEventWireup="true" CodeBehind="Main.aspx.cs" Inherits="Company.SecurePages.Main" Async="true" AsyncTimeout="30" %>

 

<%

@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

 

<!

 

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

 

html xmlns="http://www.w3.org/1999/xhtml" >

 

<

 

head runat="server">

 

 

<link href="../Css/General.css" rel="stylesheet" type="text/css" />

 

</head>

 

<

 

body scroll="no" >

 

<

 

form id="form1" runat="server">

 

 

<

 

telerik:RadScriptManager ID="RadScriptManager1" runat="server">

 

</

 

telerik:RadScriptManager>

 

 

 

telerik:RadToolTip Title="Versions" runat="server" ID="HelpToolTip" ManualClose="true" Width="250px" ShowEvent="onclick"

 

TargetControlID

 

="HelpBtn" IsClientID="true" Position="BottomLeft"

 

>

</

 

telerik:RadToolTip>

 

<

 

telerik:RadToolTip Title="Session Timed Out" runat="server" ID="TimeoutToolTip" Width="250px"

 

ShowEvent

 

="onclick" TargetControlID="TimeoutLkBtn" IsClientID="true" HideEvent="FromCode"

 

Position

 

="TopCenter" Modal="true" OnClientBeforeHide="OnClientBeforeHide"

 

RelativeTo

 

="BrowserWindow" CssClass="rtCloseButton" >

 

 

<table width="100%">

 

 

<tr>

 

 

<td>

 

Your session is about to time out.

 

<br />

 

Do you want to continue this session?

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td align="center">

 

 

<asp:Button ID="YesBtn" Text="Yes" runat="server" Width="35px" OnClientClick="HideTimeoutMsg('Y'); return false;"/>

 

 

&nbsp;

 

 

<asp:Button ID="NoBtn" Text="No" runat="server" Width="35px" OnClientClick="HideTimeoutMsg('N'); return false;" />

 

 

</td>

 

 

</tr>

 

 

</table>

 

</

 

telerik:RadToolTip>

 

<

 

telerik:RadSplitter id="Radsplitter3" runat="server" height="99.5%" width="100%" Orientation="Horizontal">

 

 

<telerik:RadPane id="Radpane3" runat="server" Height="20px" Scrolling="None" CssClass="menuPanes" >

 

 

<div class="topBackground" style="height:20px; " >

 

 

<table width="100%" cellpadding="0" cellspacing="0" >

 

 

<tr>

 

 

<td style="width:10%">

 

 

<asp:LinkButton ID="TimeoutLkBtn" runat="server" CssClass="hiddenBtn"></asp:LinkButton>

 

 

<asp:LinkButton ID="PostBtn" runat="server" CssClass="hiddenBtn"></asp:LinkButton>

 

 

</td>

 

 

<td align="right" style="width:85%; ">

 

 

<telerik:RadMenu ID="UserRadMenu" runat="server" EnableEmbeddedSkins="false" style="float:right">

 

 

<Items>

 

 

<telerik:RadMenuItem runat="server" Text="" >

 

 

<Items>

 

 

<telerik:RadMenuItem runat="server" Text="Change Password" NavigateUrl="UserPassword.aspx" >

 

 

</telerik:RadMenuItem>

 

 

<telerik:RadMenuItem Text="Edit Authentication" NavigateUrl="EditMfa.aspx" >

 

 

</telerik:RadMenuItem>

 

 

</Items>

 

 

</telerik:RadMenuItem>

 

 

</Items>

 

 

</telerik:RadMenu>

 

 

</td>

 

 

<td style="width:5%">

 

 

<table width="100px" cellpadding="0" cellspacing="0" >

 

 

<tr>

 

 

<td style="width:10px; text-align:right;border-bottom-style:none; border-spacing:0px; border-right-width:0px; padding-left:0px; padding-right:0px; ">

 

 

<asp:Label ID="lbSeparator1" runat="server" ForeColor="Black" Text="|"></asp:Label>

 

 

</td>

 

 

<td align="center">

 

 

<asp:ImageButton ID="HelpBtn" runat="server" ImageUrl="~/Images/help_16X16.png"></asp:ImageButton>

 

 

</td>

 

 

<td style="width:10px; text-align:left; border-left-width:0px; border-right-width:0px; padding-left:0px; padding-right:0px; ">

 

 

<asp:Label ID="lbSeparator2" runat="server" ForeColor="Black" Text="|"></asp:Label>

 

 

</td>

 

 

<td style="width:50px">

 

 

<asp:LinkButton ID="LogoutLkBtn" OnClick="LogoutLkBtn_Click" runat="server" ForeColor="Black">Logout</asp:LinkButton>

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</div>

 

 

</telerik:RadPane>

 

 

<telerik:RadPane id="Radpane4" runat="server" Height="85px" Scrolling="None" CssClass="ms-globalTitleArea">

 

 

<table width="100%" height="100%" cellpadding="0" cellspacing="0" style="border-bottom-width:0px; padding-bottom:0px;">

 

 

<tr valign="top" align="left">

 

 

<td colspan="2">

 

 

<img runat="server" id="BankImage" />

 

 

</td>

 

 

</tr>

 

 

<tr valign="bottom" align="left">

 

 

<td>

 

 

<telerik:RadToolBar Width="60px" ID="rtbAppMenu" runat="server" EnableEmbeddedSkins="true" OnClientButtonClicked="ClientItemClicked" OnButtonClick="rtbAppMenu_ButtonClick" >

 

 

<Items>

 

 

<telerik:RadToolBarSplitButton ImageUrl="../Images/view_detail.gif" ToolTip="Open Applications" EnableDefaultButton="false" Height="20px" HoveredCssClass="Hovered" >

 

 

<Buttons>

 

 

<telerik:RadToolBarButton runat="server" Text="App1" Value="App1" Visible="True" ></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="App2" Value="App2" Visible="True"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="App3" Value="App3" Visible="True"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="App4" Value="App4" Visible="True"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="IWA_App1" Value="IWA_App1" Visible="False"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="IWA_App2" Value="IWA_App2" Visible="False"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="IWA_App3" Value="IWA_App3" Visible="False"></telerik:RadToolBarButton>

 

 

<telerik:RadToolBarButton runat="server" Text="IWA_App4" Value="IWA_App4" Visible="False"></telerik:RadToolBarButton>

 

 

</Buttons>

 

 

</telerik:RadToolBarSplitButton>

 

 

</Items>

 

 

</telerik:RadToolBar>

 

 

</td>

 

 

<td style="width:100%; ">

 

 

<telerik:RadTabStrip runat="server" ID="RadTabStrip1" OnClientTabSelected="OnClientTabSelected" Width="100%" Skin="Vista" SelectedIndex="0" ScrollChildren="true" EnableEmbeddedSkins="true" Height="25px" >

 

 

<TabTemplate>

 

 

<asp:Label ID="TabTextLbl" runat="server" ></asp:Label>

 

 

<asp:ImageButton ID="CloseBtn" OnClientClick="CloseSelectedApplication(this)" ImageUrl="~/Images/Delete.gif" runat="server" ImageAlign="Middle" />

 

 

</TabTemplate>

 

 

</telerik:RadTabStrip>

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</telerik:RadPane>

 

 

<telerik:RadSplitBar id="Radsplitbar4" runat="server" CollapseMode="Forward"/>

 

 

<telerik:RadPane id="Radpane5" OnClientResized="PaneResized" Scrolling="None" Width="100%" Height="100%" runat="server">

 

 

</telerik:RadPane>

 

</

 

telerik:RadSplitter>

 

 

 

<telerik:RadWindowManager ShowContentDuringLoad="false" VisibleStatusbar="false" VisibleTitlebar="false" Behaviors="Maximize" ID="RadWindowManager" runat="server" RestrictionZoneID="Radpane5" DestroyOnClose="true" Skin="" EnableEmbeddedSkins="false" >

 

 

</telerik:RadWindowManager>

  

</

form>

 

</body>

 

</html>

 

Yohancef
Top achievements
Rank 1
 answered on 08 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?