Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
124 views
Hi,
I have a RadGrid in a RadWindow that has a couple of time entries in it.
I have a form template with 2 RadTimePiickers on it to enter/edit data & everything is going fine.

However, the RadTimeView is opening in the bottom left of the windo and some of the times are getting cut off by the modal window edge.

What I would like to do is similar to the help file on positioning the time view. The example shows how to do this from a keypress (ie have an OnKeyPress client event in the TimePicker while the button is rendered invisible) but there is nothing to say how to do it from the button press. I was thinking of adding my own button & adding the javascript but how do I get the Telerik button image.

I have found a really good article on finding a control in a form template Access FormTemplate controls from javascript when using UpdatePanel by Ruth Dahan but still having problem with the actual positioning code.

function showStartTimePopUp(sender, eventArgs) {  
            var picker = $find(pickerStartClientID);  
            showTimePopUp(picker, eventArgs);  
        }  
        function showEndTimePopUp(sender, eventArgs) {  
            var picker = $find(pickerEndClientID);  
            showTimePopUp(picker, eventArgs);  
        }  
        function showTimePopUp(picker, eventArgs) {  
            var popup = eventArgs.get_popupControl();  
            var textBox = picker.get_textBox();  
            var popupElement = picker.get_timePopupContainer();  
            var dimensions = picker.getElementDimensions(popupElement);  
            var position = picker.getElementPosition(textBox);  
            picker.showTimePopup(position.x, position.y - dimensions.height);              
        }    

The pickerStartClientID and pickerEndClientID were provided by Ruth's code but all the javascript does is loop. I tried  using a eventArgs.set_cancel(true); in both showStartTimePopUp and showEndTimePopUp but this did nothing.

Any ideas?

Regards
Roger
Sebastian
Telerik team
 answered on 04 Jun 2009
1 answer
209 views
Hi,
         I am using command item template in radgrid.
In my command item template i am using Radcombobox.
I set 

CommandItemDisplay

="TopAndBottom"

on both sides
RadCombobox conatins various items
Eg "DELETE"
     "Convert"
    "Add to Cart"
When i select any item from combo it sholud be reflect in both the top and bottom combos.
when i select "Delete"  from top combo ,bottom combo should also display "Delete"

How can i access the same combos in javascript differently.
So that i can change their value on their 

 

OnClientSelectedIndexChanged event.
Or Is their any way to do that?
Please let me know as soon as possible.
Thanks

Princy
Top achievements
Rank 2
 answered on 04 Jun 2009
1 answer
233 views

Hi,

As I want modified vista skin so I use Custom skin for grid.

I have added below code in grid section
Skin="Vista" EnableEmbeddedSkins="false"

Added css file into Theme folder and also include
<link href="App_Themes/Default/Grid.Vista.css" rel="stylesheet" type="text/css" />

All work fine in grid except filter button when I click on filter button it popup with all option (NoFilter, EqualTo, NotEqualTo....) but background display transparent instead of similar vista skin.

I am stuck with this problem so please help me as soon as early.

Dimo
Telerik team
 answered on 04 Jun 2009
13 answers
670 views
Hi,
In version 2008.1.416.35 of the controls I've noticed that the RadGrid's gridlines are missing when the grid first loads. When you click another row, all the gridlines magically re-appear.

Any idea why?

Cheers,
Daron
Dimo
Telerik team
 answered on 04 Jun 2009
1 answer
49 views
Hi,

I'm using telerik editor for my development. when the cursor in the editor is on the last charter of the string then the bullet point is not working. i wonder if this is a bug from the control or there is way to fix this issue.

interestingly, i have notice if you have  few characters in the editor then you delete them all. then bullet point works fine. that is the only place that bullet point works correctly when the cursor is on the last character of the string in editor.

is there any way to over come is problem ?


Thanks,
Sami
Rumen
Telerik team
 answered on 04 Jun 2009
2 answers
145 views
I  have Radcombobox inside Radgrid . I want it change focus to the next cell when enter key is pressed . I tried following the client events to blur the combobox but it does not work .


function blurComboBox(comboBox)
{
    if (comboBox.get_dropDownVisible() && comboBox.get_closeDropDownOnBlur())
        comboBox.hideDropDown()  ;
        comboBox.get_tableElement().className = "";
        comboBox._selectItemOnBlur() ;
        comboBox._focused = false ;
}

function HandkeKeyPress(sender, eventArgs) {
 
  
    if (eventArgs.get_domEvent().keyCode == 13) {

         blurComboBox(sender ) ;
            
            
            }
        }

 Please kindly help me .




Tsvetoslav
Telerik team
 answered on 04 Jun 2009
1 answer
109 views
Hi

My table have the columns

EventID
EventName
StartTime
EndTime
Location
Speakers

This is my radScheduler control code

<

 

telerik:RadScheduler ID="RadScheduler1" runat="server" Skin="Mac" Style="position: static">

 

 

</telerik:RadScheduler>

 


RadScheduler1.DataKeyField =

"EventID";

 

RadScheduler1.DataSubjectField =

"EventName";

 

RadScheduler1.DataStartField =

"StartTime";

 

RadScheduler1.DataEndField =

"EndTime";

 

RadScheduler1.DataBind();


What i want is Event Name should be display as a link .When i click on the link it will go to event edit page instead of reoccurrence page and also when i mouse over the event name it will display all the  information about the event(Location,Speakers,StartTime,EndTime) in tooltip.How can i do this?


Regards
Vairam


Peter
Telerik team
 answered on 04 Jun 2009
1 answer
125 views
Hello everyone,
I use RadChar with SqlDatasource and its working fine but when i try to use RadChart control with LINQ2Entity Model, It gives some error like  "Index was out of range. Must be non-negative and less than the size of the collection.Parameter name: index" .Can anyone guide me that how i can use RadChart control with Linq Entity Model. Because in our application i use LINQ2Entity model so i am trying to use it also with RadChart. Waiting for immediate reponse.

Regards,


Ves
Telerik team
 answered on 04 Jun 2009
8 answers
292 views
Finally glad to see a datalist-type solution for the Radgrid at http://demos.telerik.com/aspnet-ajax/Grid/Examples/Programming/ListView/DefaultCS.aspx.

I would like to retain the multi-row select method that is available in a standard radgrid - how can I implement a GridClientSelectColumn and Rowclicking in this new datalist format?

Thanks
Sebastian
Telerik team
 answered on 04 Jun 2009
8 answers
249 views
In a project I am currently working on, I am using the AjaxManager in conjunction with a RadToolBar and jQuery. However, when the ajax request returns, blank space is injected above my toolbar and I can't seem to find the source of the problem. I am using jQuery to show a div containing a status message of the user's interaction with the page. If I disable ajax, the page renders properly.

Before Postback
After Postback

Here is the page definition (sorry, it's a very complex page).
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="TicketDetails.aspx.vb" Inherits="SubPages_TicketDetails" %> 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<%@ Register Src="../Controls/UserLookupControl.ascx" TagName="UserLookupControl" 
    TagPrefix="uc1" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title>Ticket Details</title> 
    <link href="../Styles/HelpDesk.css" rel="Stylesheet" type="text/css" /> 
    <telerik:RadScriptBlock ID="scriptBlock" runat="server">  
 
        <script src="../Scripts/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script> 
 
        <script type="text/javascript">  
            function showStatusPanel(message) {  
                $("#divStatusUpdatePanel").fadeIn(1500, function() { window.setTimeout('hideStatusPanel()', 2000) }).text(message);  
                $("#divStatusUpdatePanel").css('color', 'black');  
            }  
 
            function showErrorInStatusPanel(message) {  
                $("#divStatusUpdatePanel").fadeIn(1500, function() { window.setTimeout('hideStatusPanel()', 15000) }).html(message);  
                $("#divStatusUpdatePanel").css('color', 'red');  
            }  
 
            function hideStatusPanel() {  
                $("#divStatusUpdatePanel").fadeOut(3000);  
            }  
 
            function rebindTicketDetails() {  
                $find("<%= ramControlManager.ClientID %>").ajaxRequest("rebindTicket");  
            }  
 
        </script> 
 
    </telerik:RadScriptBlock> 
    <style type="text/css">  
        </style> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
    </telerik:RadScriptManager> 
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Vista" /> 
    <telerik:RadAjaxManager ID="ramControlManager" runat="server">  
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="tbTicketDetails">  
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="tbTicketDetails" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblCategory" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblType" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblStatus" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblQueue" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblGoal" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblOwner" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblSubmitBy" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblSubmitDept" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblSubmitOffice" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblSubmitTelephone" /> 
                    <telerik:AjaxUpdatedControl ControlID="lnkEmail" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblLockedBy" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblDeleteBy" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblCreateBy" /> 
                    <telerik:AjaxUpdatedControl ControlID="lblModifyBy" /> 
                    <telerik:AjaxUpdatedControl ControlID="divTicketID" /> 
                    <telerik:AjaxUpdatedControl ControlID="divTicketSubject" /> 
                    <telerik:AjaxUpdatedControl ControlID="divProblemDescription" /> 
                    <telerik:AjaxUpdatedControl ControlID="gridHistory" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
    </telerik:RadAjaxManager> 
    <telerik:RadToolBar ID="tbTicketDetails" runat="server" Skin="Office2007" Width="100%" 
        AutoPostBack="true">  
        <Items> 
            <telerik:RadToolBarSplitButton> 
                <Buttons> 
                    <telerik:RadToolBarButton runat="server" Text="Add Notes" ImageUrl="~/Images/notebook_pencil.png" 
                        Value="AddNotes" CommandName="AddNotes">  
                    </telerik:RadToolBarButton> 
                    <telerik:RadToolBarButton runat="server" Text="Close" ImageUrl="~/Images/door.png" 
                        Value="CloseTicket" CommandName="CloseTicket">  
                    </telerik:RadToolBarButton> 
                </Buttons> 
            </telerik:RadToolBarSplitButton> 
            <telerik:RadToolBarButton runat="server" Text="Lock" ImageUrl="~/Images/lock.png" 
                Value="LockTicket" CommandName="LockTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Unlock" ImageUrl="~/Images/lock_unlock.png" 
                Value="UnlockTicket" CommandName="UnlockTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Create Ticket Tasks" CommandName="CreateTasks" 
                ImageUrl="~/Images/tasks_create.png" Value="CreateTasks">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Claim Ticket" CommandName="ClaimTicket" 
                ImageUrl="~/Images/card_claimticket.png" Value="ClaimTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Release Ticket" CommandName="ReleaseTicket" 
                ImageUrl="~/Images/card_releaseticket.png" Value="ReleaseTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Assign Ticket" CommandName="AssignTicket" 
                ImageUrl="~/Images/card__assignticket.png" Value="AssignTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Move Ticket" CommandName="MoveTicket" 
                ImageUrl="~/Images/pin_moveticket.png" Value="MoveTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Reopen Ticket" CommandName="ReopenTicket" 
                Value="ReopenTicket" ImageUrl="~/Images/reopenticket.png" /> 
            <telerik:RadToolBarButton runat="server" Text="Delete Ticket" CommandName="DeleteTicket" 
                ImageUrl="~/Images/delete.png" Value="DeleteTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Restore Ticket" CommandName="RestoreTicket" 
                ImageUrl="~/Images/restore.png" Value="RestoreTicket">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Edit Ticket Details" CommandName="EditDetails" 
                ImageUrl="~/Images/ticket_pencil.png" Value="EditDetails">  
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton runat="server" Text="Assign Goal" CommandName="AssignGoal" 
                ImageUrl="~/Images/accreditationgoal.png" Value="AssignGoal">  
            </telerik:RadToolBarButton> 
        </Items> 
    </telerik:RadToolBar> 
    <asp:HiddenField ID="hfCategoryID" runat="server" /> 
    <asp:HiddenField ID="hfSubmitByAccount" runat="server" /> 
    <div id="divStatusUpdatePanel">  
    </div> 
    <telerik:RadTabStrip ID="tabTicketDetails" runat="server" SelectedIndex="0" MultiPageID="mpTicketDetails" 
        Skin="Outlook" Width="100%" Orientation="HorizontalTop" ShowBaseLine="true">  
        <Tabs> 
            <telerik:RadTab Text="Ticket Details" PageViewID="viewDetails" Selected="True" Value="Details">  
            </telerik:RadTab> 
            <telerik:RadTab Text="Ticket History" PageViewID="viewHistory" Value="History">  
            </telerik:RadTab> 
            <telerik:RadTab Text="Tasks" PageViewID="viewTasks" Value="Tasks">  
            </telerik:RadTab> 
            <telerik:RadTab Text="Related Tickets">  
                <Tabs> 
                    <telerik:RadTab Text="Associated Tickets" PageViewID="viewAssociatedTickets" Selected="true" /> 
                    <telerik:RadTab Text="Other Tickets By Submitter" PageViewID="viewSubmitByTickets" /> 
                    <telerik:RadTab Text="Other Tickets In Category" PageViewID="viewTicketsInCategory" /> 
                    <telerik:RadTab Text="Create Association" PageViewID="viewCreateAssociation" OnLoad="SetCreateAssociationVisibility" /> 
                </Tabs> 
            </telerik:RadTab> 
        </Tabs> 
    </telerik:RadTabStrip> 
    <telerik:RadMultiPage ID="mpTicketDetails" runat="server" SelectedIndex="0" ScrollBars="Horizontal">  
        <telerik:RadPageView runat="server" ID="viewDetails" Selected="true">  
            <table id="TicketDetailsTable">  
                <tr> 
                    <td colspan="2">  
                        <div id="divTicketHeader">  
                            <div id="divTicketID" runat="server" class="TicketID">  
                                42</div> 
                            <div id="divTicketSubject" runat="server" text="Ticket Subject" class="TicketSubject">  
                                Subject</div> 
                        </div> 
                    </td> 
                </tr> 
                <tr> 
                    <th colspan="2" class="TableHeaderLabel">  
                        Problem:  
                    </th> 
                </tr> 
                <tr> 
                    <td colspan="2">  
                        <div id="divProblemDescriptionContainer">  
                            <div id="divProblemDescription" runat="server">  
                                <h1> 
                                    Problem Description</h1> 
                            </div> 
                        </div> 
                    </td> 
                </tr> 
                <tr> 
                    <td colspan="2">  
                        <table class="InternalTable">  
                            <tr> 
                                <th class="TableHeaderLabel">  
                                    Category:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Type:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Status:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Queue:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Accreditation Goal:  
                                </th> 
                            </tr> 
                            <tr> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblCategory" runat="server" Text="Ticket Category" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblType" runat="server" Text="Ticket Type" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblStatus" runat="server" Text="Status Name" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblQueue" runat="server" Text="Queue Name" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblGoal" runat="server" Text="Accreditation Goal for Weave" /> 
                                </td> 
                            </tr> 
                        </table> 
                    </td> 
                </tr> 
                <tr> 
                    <td colspan="2">  
                        <table class="InternalTable">  
                            <tr> 
                                <th class="TableHeaderLabel">  
                                    Owned By:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Submitted By:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Locked By:  
                                </th> 
                                <th class="TableHeaderLabel">  
                                    Deleted By:  
                                </th> 
                            </tr> 
                            <tr> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblOwner" runat="server" Text="Owner Name" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <div> 
                                        <asp:Label ID="lblSubmitBy" runat="server" Text="Submitter Name" /></div>  
                                    <div> 
                                        <asp:Label ID="lblSubmitDept" runat="server" Text="Department" /></div>  
                                    <div> 
                                        <asp:Label ID="lblSubmitOffice" runat="server" Text="Office" /></div>  
                                    <div> 
                                        <asp:Label ID="lblSubmitTelephone" runat="server" Text="Telephone" /></div>  
                                    <div> 
                                        <asp:HyperLink ID="lnkEmail" runat="server" Text="email@swbts.edu" NavigateUrl="mailto:email@swbts.edu" /></div>  
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblLockedBy" runat="server" Text="Locked By" /> 
                                </td> 
                                <td class="DataContainer">  
                                    <asp:Label ID="lblDeleteBy" runat="server" Text="Delete By" /> 
                                </td> 
                            </tr> 
                        </table> 
                    </td> 
                </tr> 
                <tr> 
                    <th class="TableHeaderLabel">  
                        Created:  
                    </th> 
                    <th class="TableHeaderLabel">  
                        Modified:  
                    </th> 
                </tr> 
                <tr> 
                    <td class="DataContainer">  
                        <asp:Label ID="lblCreateBy" runat="server" Text="Create By Information" /> 
                    </td> 
                    <td class="DataContainer">  
                        <asp:Label ID="lblModifyBy" runat="server" Text="Modify By Informtion" /> 
                    </td> 
                </tr> 
            </table> 
        </telerik:RadPageView> 
    </telerik:RadMultiPage> 
    <telerik:RadAjaxLoadingPanel ID="alpMainLoadingPanel" runat="server" Transparency="2" 
        InitialDelayTime="0" MinDisplayTime="250">  
        <asp:Image ImageUrl="~/Images/loading_large.gif" AlternateText="Loading..." runat="server" 
            ID="imgLargeLoad" /> 
    </telerik:RadAjaxLoadingPanel> 
    <telerik:RadAjaxLoadingPanel ID="alpGridLoadingPanel" runat="server" Transparency="2" 
        InitialDelayTime="0" MinDisplayTime="250">  
        <asp:Image ImageUrl="~/Images/loading_grid.gif" runat="server" AlternateText="Refreshing..." 
            ID="imgGridLoad" /> 
    </telerik:RadAjaxLoadingPanel> 
    <telerik:RadAjaxLoadingPanel ID="alpControlLoadingPanel" runat="server" Transparency="2" 
        InitialDelayTime="0" MinDisplayTime="250">  
        <asp:Image ID="imgControlLoad" ImageUrl="~/Images/loading_control.gif" runat="server" 
            AlternateText="Refreshing..." /> 
    </telerik:RadAjaxLoadingPanel> 
    <telerik:RadWindowManager ID="rwmPageWindowManager" runat="server" Skin="Office2007">  
        <Windows> 
            <telerik:RadWindow Animation="Slide" Width="300px" Height="400px" Behavior="None" 
                Modal="true" runat="server" Overlay="true" Title="Set Accreditation Goal" ID="winAccreditationView" /> 
        </Windows> 
    </telerik:RadWindowManager> 
    </form> 
</body> 
</html> 
 

Here's the CSS
body  
{  
    width: 100%;  
    height: 100%;  
    margin0px;  
    overflowhidden;  
}  
 
/*
    USER LOOKUP CONTROL STYLES
*/ 
.UserLookupControlContainer  
{  
    background-color#C9DAEE;  
    background-imageurl('../Images/GlassBack_200.png');  
    background-repeatrepeat-x;  
    background-position15px;  
    border1px solid #7991A9;  
    padding2px;  
    width500px;  
}  
.UserLookupControlSelectedUserContainer  
{  
    padding3px;  
    border-collapsecollapse;  
}  
.spanCurrentUserName  
{  
    font-familyArialHelveticasans-serif;  
    font-size14pt;  
    font-weightbold;  
    color#2F3F50;  
}  
.UserSelectModeTitle  
{  
    font-familyArialHelveticasans-serif;  
    background-color#C9DAEE;  
    background-imageurl('../Images/TicketHeaderBack.png');  
    background-repeatrepeat-x;  
    background-positiontop;  
    border-bottom-style: solid;  
    border-bottom-width1px;  
    border-bottom-color#4F6379;  
    height25px;  
    font-size14pt;  
    color#2F3F50;  
}  
.UserLookupTable TH  
{  
    vertical-alignmiddle;  
    font-familyArialHelveticasans-serif;  
    font-size10pt;  
    font-weightbold;  
}  
.UserLookupTable  
{  
    border-collapsecollapse;  
    width: 100%;  
}  
/*
TICKET DETAILS STYLES
*/ 
#TicketDetailsTable  
{  
    background-color#7991A9;  
    border-stylesolid;  
    border-width1px 2px 2px 1px;  
    border-color#4F6379 #2F3F50 #2F3F50 #4F6379;  
    padding3px;  
    margin5px 5px 5px 10px;  
    width: 97%;  
    table-layoutauto;  
    border-collapsecollapse;  
    empty-cellshide;  
}  
#divTicketHeader  
{  
    padding4px;  
    background-color#C9DAEE;  
    background-repeatrepeat-x;  
    background-positiontop;  
    background-imageurl('../Images/TicketHeaderBack.png');  
    height29px;  
    vertical-alignmiddle;  
}  
#divTicketSubject  
{  
    displayinline;  
    font-familyArialHelveticasans-serif;  
    font-size14pt;  
    font-weightbold;  
    font-stylenormal;  
    font-variantnormal;  
    text-transformnone;  
    color#000000;  
    text-alignleft;  
}  
#divTicketID  
{  
    displayinline;  
    floatrightright;  
    font-familyArialHelveticasans-serif;  
    font-size14pt;  
    font-weightbold;  
    color#2F3F50;  
}  
.TableHeaderLabel  
{  
    font-familyArialHelveticasans-serif;  
    font-size10pt;  
    font-weightbold;  
    font-stylenormal;  
    color#DCE6F4;  
    text-alignleft;  
    padding2px;  
}  
.DataContainer  
{  
    font-familyArialHelveticasans-serif;  
    font-size10px;  
    vertical-aligntop;  
    background-color#FFFFFF;  
    padding5px;  
}  
#divProblemDescriptionContainer  
{  
    border1px solid #2F3F50;  
    padding5px;  
    margin8px;  
    background-color#4F6379;  
}  
#divProblemDescription  
{  
    padding4px;  
    border1px solid #2F3F50;  
    background-color#FFFFFF;  
}  
.InternalTable  
{  
    border-collapsecollapse;  
    empty-cellsshow;  
    width: 98%;  
    margin3px;  
}  
#divStatusUpdatePanel  
{  
    positionabsolute;  
    z-index: 5000;  
    width300px;  
    top35px;  
    rightright2px;  
    background-color#C9DAEE;  
    background-imageurl('../Images/TicketHeaderBack.png');  
    background-repeatrepeat-x;  
    background-positiontop;  
    border1px solid #7991A9;  
    font-familyArialHelveticasans-serif;  
    color#2F3F50;  
    font-size12pt;  
    font-weightbold;  
    text-aligncenter;  
    vertical-alignmiddle;  
    displaynone;  
    padding5px;  
}  
 
.SWBTS_HistoryEntry  
{  
    padding4px;  
    background-color#C9DAEE;  
    border-collapsecollapse;  
    border-stylesolid;  
    border-width1px;  
    border-color#7991A9;  
    width: 100%;  
}  
.SWBTS_HistoryHeader  
{  
    background-imageurl('../Images/TicketHeaderBack.png');  
    background-repeatrepeat-x;  
    background-positiontop;  
    border-bottom2px solid #7991A9;  
    border-collapseseparate;  
}  
.SWBTS_HistoryEntry .NoteText  
{  
    border1px solid #7991A9;  
    padding8px;  
    background#ffffff;  
}  
.SWBTS_HistoryEntry .Label  
{  
    font-weightbold;  
}  
.SWBTS_HistoryEntry .Data  
{  
    font-weightnormal;  
    padding-left8px;  
}  
.TicketHistoryControlBar  
{  
    font-familyArialHelveticasans-serif;  
    font-size10pt;  
    color#4F6379;  
    text-alignrightright;  

And the code-behind that is relevant to the problem:
    Private Sub SetLastExecutedCommand(ByVal text As String)  
        ScriptManager.RegisterStartupScript(Me, Page.GetType"ShowMessage""showStatusPanel('" & text & "');"True)  
    End Sub 
 
    Protected Sub tbTicketDetails_ButtonClick(ByVal sender As ObjectByVal e As Telerik.Web.UI.RadToolBarEventArgs) Handles tbTicketDetails.ButtonClick  
        If e.Item.GetType Is GetType(UI.RadToolBarButton) Then 
            Dim button As UI.RadToolBarButton = DirectCast(e.Item, UI.RadToolBarButton)  
            Select Case button.CommandName  
                Case "ClaimTicket" 
                    RaiseEvent ClaimTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("You have claimed this ticket")  
                Case "ReleaseTicket" 
                    RaiseEvent ReleaseTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("You have released this ticket")  
                Case "DeleteTicket" 
                    RaiseEvent DeleteTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("The ticket has been deleted from the system")  
                Case "RestoreTicket" 
                    RaiseEvent RestoreTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("The ticket has been restored")  
                Case "LockTicket" 
                    RaiseEvent LockTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("Ticket Locked - You are the only person able to edit this ticket.")  
                Case "UnlockTicket" 
                    RaiseEvent UnlockTicket(Me, EventArgs.Empty)  
                    SetLastExecutedCommand("Ticket Unlocked - Anyone can edit this ticket.")  
                Case "AddNotes" 
                    ramControlManager.Redirect("NoteEditor.aspx?TID=" & _ticketID & "&MD=E")  
                Case "MoveTicket" 
                    ramControlManager.Redirect("NoteEditor.aspx?TID=" & _ticketID & "&MD=M")  
                Case "AssignTicket" 
                    ramControlManager.Redirect("NoteEditor.aspx?TID=" & _ticketID & "&MD=A")  
                Case "AssignGoal" 
                    winAccreditationView.NavigateUrl = "UpdateAccreditationGoal.aspx?TID=" & _ticketID  
                    winAccreditationView.VisibleOnPageLoad = True 
            End Select 
            RaiseEvent LoadTicketDetails(Me, EventArgs.Empty)  
            RaiseEvent LoadHistory(Me, EventArgs.Empty)  
            SetDetailsUI()  
        End If 
    End Sub 
 

Again, I apologize for the amount of code, but perhaps I'm just overlooking something on the page.

Thanks,
Chris
Eric
Top achievements
Rank 1
 answered on 04 Jun 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?