Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views

I found one problem when I am creating ribbon structure by code. If I first fill group with buttons and afterwards add Group to tab, buttons dont have correct reference to tab or ribbon and page rendering fails.

RibbonBarTab tab = new RibbonBarTab();
  
RibbonBarGroup group = new RibbonBarGroup();
  
RibbonBarButton button1 = new RibbonBarButton();
group.Items.Add(button1);
  
RibbonBarButton button2 = new RibbonBarButton();
group.Items.Add(button2);
  
tab.Groups.Add(group);
  
ribbon.Tabs.Add(tab);

This works correctly:
RibbonBarTab tab = new RibbonBarTab();
ribbon.Tabs.Add(tab);
  
RibbonBarGroup group = new RibbonBarGroup();
tab.Groups.Add(group);
  
RibbonBarButton button1 = new RibbonBarButton();
group.Items.Add(button1);
  
RibbonBarButton button2 = new RibbonBarButton();
group.Items.Add(button2);



Nikolay Tsenkov
Telerik team
 answered on 09 May 2011
6 answers
533 views
Hi,

I set "AllowMultiRowSelection" to "true" in the grid, which causes GridClientSelectColumn columns to be added in the first column of the grid. The issue is that when I highlight a row, the checkbox is selected.
Is there any property/event that I can set/remove to prevent checking off the checkbox when I highlight the row?


Thanks in advance,
Mohammad
Veli
Telerik team
 answered on 09 May 2011
1 answer
182 views
Hi,

I can't apply style to callout arrow.

Screenshots attached.

I've tried backcolor attribute of tooltip, and background-image & background-color in stylesheet. backcolor does not change anything (attachment 1 - tooltip1.png), instyle background-color change whole background but callout arrow still gray (attachment 2 - tooltip2.png).

Please help.
Marin Bratanov
Telerik team
 answered on 09 May 2011
2 answers
303 views
Dear Telerik Team,

I am using Telerik Rad Grid with GridDateTimeColumn. Please find below code pasted for reference. When this column as empty values and if user filters this date column it shows an error in IE. Also when user adds string like "test" in date picker in filterbar then nothing happens. Please also find the error message below.

Code:
<telerik:GridDateTimeColumn DataField="dtmTermDate" HeaderText="Termination Date" DataFormatString="{0:MM/dd/yyyy}"
SortExpression="dtmTermDate" UniqueName="dtmTermDate" HeaderTooltip="Termination Date" PickerType="DatePicker" ShowFilterIcon="true" ConvertEmptyStringToNull="true">
</telerik:GridDateTimeColumn>


Error in IE: 

Message: Sys.WebForms.PageRequestManagerServerErrorException: Specified cast is not valid.
Line: 4723
Char: 21
Code: 0
URI: http://localhost/Test/ScriptResource.axd?d=6gQs4Ep8lZdvCRTPnRQh8ewwwsj0oRdqcYcj0780GUlE7uHPItLaQBPSqRnOCJ6nFZOBafLdJr9TM4kY6q2ceFVLqoVgM5Nu1uJkbrcLvcU1&t=ffffffffec2d9970

Please help. Thank you.

Regards

Pathan L.
L. M. Pathan
Top achievements
Rank 1
 answered on 09 May 2011
4 answers
508 views
Hi:

I have a RadGrid where I have set EnablePostBackOnRowClick="true".  On special situation, however, when a user click on a specific row (e.g.: if the value on a key is "xyz"), then I don't want the postback to take place. 

I have tried to trap the OnRowSelecting event and was hoping that the following 2 lines of codes could cancel the postback.  However, they don't. The postback occur anyway.
            
eventArgs.set_cancel(true);
return false;

Is there a way to cancel a postback when EnablePostBackOnRowClick="true"?

Justin
Vasssek
Top achievements
Rank 1
 answered on 09 May 2011
6 answers
211 views
I have one form with multiple RadWindows. Each RadWindow has a Radgrid. The grids settings are similar and each is added to an RadAjaxManger.

Grid 1 has it's next / previous buttons renders as follows:

<input name="AccountSearchControl$RadGridSearchResults$ctl01$ctl07$ctl03$ctl20" tabIndex="0" title="Next Page" class="rgPageNext" onclick="return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContentPlaceHolder$radWinAccountSearch$C$AccountSearchControl$RadGridSearchResults$ctl01$ctl07$ctl03$ctl20", "", true, "", "", false, true))" type="button" jQuery1304623369855="88" value=" "/>


Grid 2 has it's next / previous buttons renders as follows:

<input name="PayeeHistoryControl$RadGridPayeeHistory$ctl00$ctl03$ctl01$ctl12" title="Next Page" class="rgPageNext" type="submit" value=" "/>

Why does grid 2 render its button as a submit and grid 1 doesn't? This is causing the RadAjaxLoadingPanel to not appear for grid 2.

Here is grid 2 declaration:

<telerik:RadGrid ID="RadGridPayeeHistory" Skin="Telerik" AllowSorting="True" AllowPaging="True"
           AllowFilteringByColumn="True" AutoGenerateColumns="False" runat="server" GridLines="None"
           CssClass="radgrid" AllowMultiRowSelection="False" Width="100%" PageSize="50" EnableLinqExpressions="false"
           OnNeedDataSource="RadGridPayeeHistory_NeedDataSource"
           OnInit="RadGridPayeeHistory_Onit"   
           OnPreRender="RadGridPayeeHistory_PreRender"
           OnSortCommand="RadGridPayeeHistory_OnSortCommand" 
           OnItemCommand="RadGridPayeeHistory_OnItemCommand"                       
        >
           <MasterTableView AllowNaturalSort="false" CommandItemDisplay="Top" ClientDataKeyNames="DescriptionLineOne, ImportedPaymentMethod.PaymentDescLine3"
               DataKeyNames="DescriptionLineOne, DescriptionLineTwo, ImportedPaymentMethod.AddressLineOne, ImportedPaymentMethod.AddressLineTwo,
               ImportedPaymentMethod.City, ImportedPaymentMethod.State, ImportedPaymentMethod.Zip, ImportedPaymentMethod.PaymentDescLine1,
               ImportedPaymentMethod.PaymentDescLine2, ImportedPaymentMethod.PaymentDescLine3, ImportedPaymentMethod.AccountType">
               <SortExpressions>
                           <telerik:GridSortExpression FieldName="DescriptionLineOne" SortOrder="Ascending" />                           
               </SortExpressions>
               <CommandItemTemplate>
                   <div class="commandLeft">                                                   
                       <asp:Button ID="btnPHClearFilters" runat="server" Text="Clear Filters" OnClick="OnClearFiltersClick"></asp:Button>                                  
                   </div>                   
                   <div class="commandRight">                                                   
                       <span class="labelA">CMS History</span>
                   </div>       
               </CommandItemTemplate>
               <NoRecordsTemplate>
                   <span class="noRecords">No CMS history found for the Accounts.</span>
               </NoRecordsTemplate>
               <Columns>
            
           ...
                    
               </Columns>
           </MasterTableView>
           <PagerStyle AlwaysVisible="true" />
           <GroupingSettings CaseSensitive="False" />
           <ClientSettings EnableRowHoverStyle="true" EnableAlternatingItems="false">
               <Selecting AllowRowSelect="True" />
               <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" ScrollHeight="275px" />
           </ClientSettings>
       </telerik:RadGrid>

BrianS
Top achievements
Rank 1
 answered on 09 May 2011
1 answer
148 views
I am creating a RadGrid dynamically based on data that comes through.  The number of grids can vary.  What I want to do is allow for the collapsing of these grids.  For example, if 10 grids are created, the length is unwieldy and I would like to collapse all but the first, and have the user be able to expand them on click.  I have looked around and do not see a solution within the grid itself.  I would like to keep the header row as the column names, and use something above it sort of detailing the grid like "Number of Customers: #".

My theoretical solution was to use a RadPanelBar, inserting the grid into a RadPanelItem, and then into the PanelBar.  Looking at the demo of the calendar shows:

<telerik:RadPanelBar  runat="server" ID="RadPanelBar1" Height="380px" ExpandMode="FullExpandedItem">
            <Items>
                <telerik:RadPanelItem Text="Calendar" ImageUrl="Img/calendar.gif">
                    <Items>
                        <telerik:RadPanelItem>
                            <ItemTemplate>
                                <telerik:RadCalendar runat="server" ID="Calendar1" Style="margin: 6px auto 0" />
                            </ItemTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
             </Items>
</telerik:RadPanelBar>

However, I am required to create this from the codebehind.  I've gone through quite a few iterations and can't seem to find the syntax.  I am guessing it has to do with ItemTemplate.InstantiateIn(grid), but do I have to extend the ITemplate or something?
Dimitar Terziev
Telerik team
 answered on 09 May 2011
1 answer
64 views
Hi,

we have radcombobox inside a user control (scheduler AdvancedEdit to be exact from a sample on your site). We are populating the RCB with values easily enough and passing a value to set the selected item as follows

 public int EventTypeId
        {
            get
            {
              
                    return Convert.ToInt32(ResrcbActivityType.SelectedValue);
               
            }

            set
            {
                try
                {
                    RadComboBoxItem itm = new RadComboBoxItem();

                    if (value > 0)
                        itm = ResrcbActivityType.FindItemByValue(Convert.ToString(value));
                    if (itm != null)
                    {
                        itm.Selected = true;
                    }
               
                }
                catch (Exception ex)
                {
                }
                
            }
        }

When debugging the value when we set is non zero which is correct, the itm object is a valid radComboBoxItem object and itm.Selected = true; evaluates without error. However, the first item in the radcomboBox list is always displayed no matter what. I am guessing this is something stupid - please anyone?
Dimitar Terziev
Telerik team
 answered on 09 May 2011
3 answers
48 views
Hello,

I want to maintain the gropheader state even though page has a postback event. I found link. Can you please provide it in VB since I am not able to hook up itemcommand event.
Iana Tsolova
Telerik team
 answered on 09 May 2011
3 answers
167 views

I hope someone can help

We have a problem with inline editing on a radgrid.  Code below.  Whenever we click on the Add Row icon, it looks like a postback is happening but no row gets added to the grid.  We're missing something, just can't tell what it is.

Help!

<%@ Page Language="C#" AutoEventWireup="True" CodeBehind="TimesheetEditor.aspx.cs"<br>    Inherits="Tempus.Employees.TimesheetEditor" %><br><br><br>    <br><%@ Register Src="~/UserControls/ucTopMenu.ascx" TagName="ucTopMenu" TagPrefix="uc1" %><br><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><br><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br><html xmlns="http://www.w3.org/1999/xhtml"><br><head id="Head1" runat="server"><br>    <title></title><br><br><br><br><br>    <link rel="Stylesheet" type="text/css" href="../Styles/main.css" /><br>    <script language="javascript" type="text/javascript" src="../Scripts/jquery-1.4.1.js"></script><br></head><br><body><br>    <form id="form1" runat="server"><br>    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"><br>        <Scripts><br>            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /><br>            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /><br>        </Scripts><br>    </telerik:RadScriptManager><br>    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Windows7"><br>    </telerik:RadSkinManager><br>    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"><br>        <script type="text/javascript"><br>            function RowDblClick(sender, eventArgs) {<br>                sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical());<br>            }<br>        </script><br>    </telerik:RadCodeBlock><br>    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"><br>        <AjaxSettings><br>            <telerik:AjaxSetting AjaxControlID="rgridTimesheetProgramEntries"><br>                <UpdatedControls><br>                    <telerik:AjaxUpdatedControl ControlID="rgridTimesheetProgramEntries" LoadingPanelID="RadAjaxLoadingPanel1" /><br>                    <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" /><br>                </UpdatedControls><br>            </telerik:AjaxSetting><br>        </AjaxSettings><br>    </telerik:RadAjaxManager><br>    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" /><br>    <div id="outsideContainer" class="outsideContainer"><br>        <div style="background: #FFFFFF"><br>            <table width="1000px"><br>                <tr><br>                    <td width="25%"><br>                        <img src="../images/timepiece.jpg" width="150px" /><br>                    </td><br>                    <td width="50%" align="center"><br>                        <h1><br>                            Tempus - Time Sheet System</h1><br>                        <br /><br>                        <h2><br>                            Welcome,<br>                            <asp:Literal ID="litUserName" runat="server"></asp:Literal></h2><br>                    </td><br>                    <td width="25%" align="right"><br>                        <img src="../images/TridentLogoFullColor.jpg" width="200px" /><br>                    </td><br>                </tr><br>            </table><br>        </div><br>        <div id="content" class="contentContainer" style="border: 1px,solid,Grey;"><br>            <table border="0" width="1000px" cellspacing="10px" cellpadding="10px"><br>                <tr><br>                    <td valign="top"><br>                        <uc1:ucTopMenu ID="ucLeftMenu1" runat="server"></uc1:ucTopMenu><br>                    </td><br>                </tr><br>                <tr><br>                    <td valign="top"><br>                        <fieldset id="fsetTimesheetDetails" runat="server"><br>                            <legend title="Edit Timesheet"></legend><br>                            <table width="975px" border="0" class="smallBodyText"><br>                                <tr><br>                                    <td width="60%" align="left" class="smallBodyText"><br>                                        <asp:Label ID="lblUserName" runat="server"></asp:Label><br /><br>                                        <b>Timesheet Status:&nbsp;</b><asp:Label ID="lblTimeSheetStatus" runat="server"></asp:Label><br /><br>                                        <b>Timesheet Period:&nbsp;</b><asp:Label ID="lblTimeSheetPeriod" runat="server"></asp:Label><br /><br>                                        <b>Due Date:&nbsp;</b><asp:Label ID="lblTimesheetDueDate" runat="server"></asp:Label><br>                                    </td><br>                                    <td width="40%" align="right"><br>                                        <b>Total Hours:&nbsp;</b><asp:Label ID="lblTotalHours" runat="server"></asp:Label><br /><br>                                        <b>Billable Hours:&nbsp;</b><asp:Label ID="lblBillableHours" runat="server"></asp:Label><br>                                    </td><br>                                </tr><br>                            </table><br>                            <br /><br>                            <br /><br>                            <asp:Label ID="lbl1" runat="server" Text="Program Tasks"></asp:Label><br>                            <telerik:RadGrid ID="rgridTimesheetProgramEntries" GridLines="None" runat="server" <br>                                OnItemUpdated="rgridTimesheetProgramEntries_ItemUpdated" AllowAutomaticDeletes="True"<br>                                AllowAutomaticInserts="True" PageSize="10" AllowAutomaticUpdates="True" AllowPaging="True"<br>                                Width="975px" ShowFooter="true" AutoGenerateColumns="False" DataSourceID="dsTimesheetDetails"><br>                                <PagerStyle Mode="NextPrevAndNumeric" /><br>                                <MasterTableView Width="100%" CommandItemDisplay="Top" DataKeyNames="Sequence" EditMode="InPlace" <br>                                    AllowAutomaticInserts="true" AllowAutomaticUpdates="true" AllowAutomaticDeletes="true"<br>                                    DataSourceID="dsTimesheetDetails" HorizontalAlign="NotSet" AutoGenerateColumns="False"><br>                                    <Columns><br>                                        <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"><br>                                            <ItemStyle CssClass="MyImageButton" /><br>                                        </telerik:GridEditCommandColumn><br>                                        <telerik:GridDropDownColumn DataField="AssignmentID" DataSourceID="dsEmployeeAssignments"<br>                                            HeaderText="Program/Task" ListTextField="AssignmentTask" ListValueField="AssignmentID"<br>                                            UniqueName="AssignmentID"><br>                                        </telerik:GridDropDownColumn><br>                                        <telerik:GridDropDownColumn DataField="BillingType" DataSourceID="dsBillingTypeLookup"<br>                                            HeaderText="Billing" ListTextField="BillingTypeDesc" ListValueField="BillingType"<br>                                            UniqueName="BillingType" HeaderStyle-Width="90px"><br>                                        </telerik:GridDropDownColumn><br>                                        <telerik:GridNumericColumn DataField="Day1Hours" HeaderText="Day 1 Hours" SortExpression="Day1Hours"<br>                                            UniqueName="Day1Hours" ColumnEditorID="GridNumericColumnEditor1" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day2Hours" HeaderText="Day 2 Hours" SortExpression="Day2Hours"<br>                                            UniqueName="Day2Hours" ColumnEditorID="GridNumericColumnEditor2" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day3Hours" HeaderText="Day 3 Hours" SortExpression="Day3Hours"<br>                                            UniqueName="Day3Hours" ColumnEditorID="GridNumericColumnEditor3" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day4Hours" HeaderText="Day 4 Hours" SortExpression="Day4Hours"<br>                                            UniqueName="Day4Hours" ColumnEditorID="GridNumericColumnEditor4" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day5Hours" HeaderText="Day 5 Hours" SortExpression="Day5Hours"<br>                                            UniqueName="Day5Hours" ColumnEditorID="GridNumericColumnEditor5" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day6Hours" HeaderText="Day 6 Hours" SortExpression="Day6Hours"<br>                                            UniqueName="Day6Hours" ColumnEditorID="GridNumericColumnEditor6" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridNumericColumn DataField="Day7Hours" HeaderText="Day 7 Hours" SortExpression="Day7Hours"<br>                                            UniqueName="Day7Hours" ColumnEditorID="GridNumericColumnEditor7" Aggregate="Sum"<br>                                            FooterText=" "><br>                                        </telerik:GridNumericColumn><br>                                        <telerik:GridCalculatedColumn HeaderText="Total Task<br>Hours" UniqueName="TotalTaskHours"<br>                                            DataType="System.Double" DataFields="Day1Hours, Day2Hours, Day3Hours, Day4Hours, Day5Hours, Day6Hours, Day7Hours"<br>                                            Expression="{0}+{1}+{2}+{3}+{4}+{5}+{6}" FooterText="Total : " Aggregate="Sum" /><br>                                        <telerik:GridButtonColumn ConfirmText="Delete this timesheet entry?" ConfirmDialogType="RadWindow"<br>                                            ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete"<br>                                            UniqueName="DeleteColumn"><br>                                            <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /><br>                                        </telerik:GridButtonColumn><br>                                    </Columns><br>                                </MasterTableView><br>                                <ClientSettings><br>                                    <ClientEvents OnRowDblClick="RowDblClick" /><br>                                </ClientSettings><br>                            </telerik:RadGrid><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor1" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor2" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor3" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor4" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor5" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor6" runat="server" NumericTextBox-Width="40px" /><br>                            <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor7" runat="server" NumericTextBox-Width="40px" /><br>                            <br /><br>                            <br /><br>                            <br>                            <telerik:RadButton ID="rbtnSubmit" Text="Submit" OnClick="rbtnSubmit_Click" runat="server"><br>                            </telerik:RadButton><br>                            <br /><br>                            <br /><br>                            <asp:Label ID="lblMessage" runat="server" ForeColor="Red" Visible="true" BorderColor="Aquamarine"></asp:Label><br>                            <telerik:RadWindowManager ID="RadWindowManager1" runat="server"><br>                            </telerik:RadWindowManager><br>                            <asp:SqlDataSource ID="dsTimesheetDetails" runat="server" ConnectionString="<%$ ConnectionStrings:TempusConn %>"<br>                                SelectCommand="dbo.TempusTimeSheetDetails_Select" SelectCommandType="StoredProcedure"<br>                                UpdateCommand="dbo.TempusTimeSheetDetails_Update" UpdateCommandType="StoredProcedure"<br>                                InsertCommand="dbo.TempusTimeSheetDetails_Insert" InsertCommandType="StoredProcedure"<br>                                DeleteCommand="dbo.TempusTimeSheetDetails_Delete" DeleteCommandType="StoredProcedure"><br>                                <SelectParameters><br>                                    <asp:SessionParameter Name="TimeSheetID" Type="Int32" /><br>                                </SelectParameters><br>                                <UpdateParameters><br>                                    <asp:SessionParameter Name="TimeSheetID" Type="Int32" /><br>                                    <asp:Parameter Name="Sequence" Type="Int32" /><br>                                    <asp:Parameter Name="BillingType" Type="String" /><br>                                    <asp:Parameter Name="AssignmentID" Type="Int32" /><br>                                    <asp:Parameter Name="OverrideTaskDescription" Type="String" /><br>                                    <asp:Parameter Name="Day1Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day2Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day3Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day4Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day5Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day6Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day7Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="TotalTaskHours" Type="Decimal" /><br>                                </UpdateParameters><br>                                <InsertParameters><br>                                    <asp:SessionParameter Name="TimeSheetID" Type="Int32" /><br>                                    <asp:Parameter Name="Sequence" Type="Int32" Direction="Output" /><br>                                    <asp:Parameter Name="BillingType" Type="String" /><br>                                    <asp:Parameter Name="AssignmentID" Type="Int32" /><br>                                    <asp:Parameter Name="OverrideTaskDescription" Type="String" /><br>                                    <asp:Parameter Name="Day1Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day2Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day3Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day4Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day5Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day6Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="Day7Hours" Type="Decimal" /><br>                                    <asp:Parameter Name="TotalTaskHours" Type="Decimal" /><br>                                </InsertParameters><br>                                <DeleteParameters><br>                                    <asp:SessionParameter Name="TimeSheetID" Type="Int32" /><br>                                    <asp:Parameter Name="Sequence" Type="Int32" /><br>                                </DeleteParameters><br>                            </asp:SqlDataSource><br><br><br>                            <asp:SqlDataSource ID="dsBillingTypeLookup" runat="server" ConnectionString="<%$ ConnectionStrings:TempusConn %>"<br>                                SelectCommand="dbo.TempusBillingTypes_Select"></asp:SqlDataSource><br>                            <asp:SqlDataSource ID="dsEmployeeAssignments" runat="server" ConnectionString="<%$ ConnectionStrings:TempusConn %>"<br>                                SelectCommand="dbo.Tempus_SelectEmployeeAssignments" SelectCommandType="StoredProcedure"><br>                                <SelectParameters><br>                                    <asp:SessionParameter Name="TempusUserID" Type="Int32" /><br>                                </SelectParameters><br>                            </asp:SqlDataSource><br><br><br><br><br>                        </fieldset><br>                    </td><br>                </tr><br>            </table><br>        </div><br>        <br /><br>        <div class="footer"><br>           <br>        </div><br>    </div><br>    </form><br></body><br></html>


Iana Tsolova
Telerik team
 answered on 09 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?