Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
223 views
Hi -
I'm using the RadTreeView and I'm loading on demand using a web service.  All works fine, but the image that appears once the service call has been placed does not appear.  I have the Treeview1.LoadingStatusPosition set to "AfterNodeText".  When I click on a node, I see the node "shift" as if it's going to show the loading status icon/image/gif.  But this icon/image/gif is NOT visible.  Once the service call is complete then this "shift" is undone and the results are properly displayed.

It seems obvious that the white space I'm seeing is the Loading status image. I just can't see it... it expands when it's supposed to and it collapses when it's supposed to.... I just can't see it.

How can I get this icon/image/gif to be visible again?  Can something be done either using a stylesheet or page level style.  I thought I might even try changing the image itself to something more consistent with my site.

Thanks in advance for any help!

FWIW... the Node.Text can be very long and may wrap.  Also, The TreeView is on a RadAjaxPanel that uses a RadAjaxLoadingPanel.
Veselin Vasilev
Telerik team
 answered on 30 Oct 2009
2 answers
161 views
Hi,

I have a website where via the menu (based on RadTabStrip) a number of pages can be accesses which all have one or more telerik components in them. E.g. Radcomboboxes, grids, etc.

For script combination, the RadScriptManager is included in the masterpage.

The webresource.axd file for all separate pages is pretty big, but different for every page.

What I would like to do is include all the javascript for all the used telerik controls in the masterpage.
This way, the generated webresource.axd file is slightly bigger initially, but will be used from cache on any subsequent page access.

So, I am wondering, is there an easy way to do this?
In the documentation I have found that when UseEmbeddedResource is disabled for the controls, the javascript can be included manually. However, the RadScriptManager can not combine them this way because they are not embedded as resources.
I guess I can include all those javascript files in a dll as embedded resources, however, I am a bit reluctant to do this since this must be done then for every new release.

Has anybody advise on the direction to go with this?

Best Regards,
Mark

Mark Hubert
Top achievements
Rank 1
 answered on 30 Oct 2009
5 answers
189 views
Hi,

we are using a panelbar having 6 panelitems.during pageload,by default,the first panelitem will be expanded and there is a label and button control present inside it.our requirement is ,on load the focus should be on button.
if we press enter the next panelitem should get expanded.

my code:

Button

 

btnNext = (Button)pnlbarRegn.FindItemByValue("Welcome").FindControl("BtnNext");

 

btnNext.TabIndex = 0;

btnNext.Focus();

need help.

Thanks,
Bharathwajan

Bharathwajan Venkatanarayanan
Top achievements
Rank 1
 answered on 30 Oct 2009
1 answer
123 views
Hello!

I have a very simple scenario with a radcolorpicker with "visible=false" and showicon="true" inside an updatepanel.
After I press a button the radcolorpicker becomes visible - however the formatting is now lost (see error.gif). I have tried to include the css for the radcolorpicker but so far no succes.

<

 

asp:updatepanel runat="server">

 

 

<contenttemplate>

 

 

<asp:button text="Click Me" runat="server" id="btn1" />

 

 

<telerik:radcolorpicker runat="server" id="Radcolorpicker1" showicon="true" visible="false" >

 

 

</telerik:radcolorpicker>

 

 

</contenttemplate>

 

 

</asp:updatepanel>

 



I use the latest release (Q2 2009)
Tsvetie
Telerik team
 answered on 30 Oct 2009
3 answers
91 views

I am having couple of user controls on page. one user control is taking very long time to load. so the page completely freezes until it loads. Is there a way to show rest of the page and show "loading message" for first user control until it finishes loading?
cognos s
Top achievements
Rank 1
 answered on 30 Oct 2009
2 answers
183 views
I have a RadGrid that I am trying to get into edit mode by pressing the edit button on the GridEditCommandColumn. I have followed the demos and any other forum or documentation I can find and have not had any luck. Could someone please point out what I'm missing. Thank you.

<rad1:RadAjaxManager ID="radAjaxManager" runat="server">
    <AjaxSettings>
        <rad1:AjaxSetting AjaxControlID="grdImpRecords">
            <UpdatedControls>
                <rad1:AjaxUpdatedControl ControlID="grdImpRecords" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </rad1:AjaxSetting>
        <rad1:AjaxSetting AjaxControlID="btnDiscardRecords" EventName="Click">
            <UpdatedControls>
                <rad1:AjaxUpdatedControl ControlID="pnlGridImpRecords" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </rad1:AjaxSetting>
        <rad1:AjaxSetting AjaxControlID="btnCommitRecords" EventName="Click">
            <UpdatedControls>
                <rad1:AjaxUpdatedControl ControlID="pnlGridImpRecords" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </rad1:AjaxSetting>
    </AjaxSettings>
</rad1:RadAjaxManager>
                            
<div style="text-align:center; vertical-align:middle; ">
                                
<rad1:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="WebBlue">
</rad1:RadAjaxLoadingPanel>
                            
<rad1:RadGrid ID="grdImpRecords" runat="server"  AutoGenerateColumns="false" Skin="WebBlue"
         OnUpdateCommand="grdImpRecords_UpdateCommand"
         DataSourceID="grdImpRecords_DataSource" >
     <ClientSettings>
         <Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="true"  />
     </ClientSettings>
     <MasterTableView DataKeyNames="BatchRequestID, AssignmentID, LoanNumber, ProductCodeID"
           EditMode="InPlace"
           DataSourceID="grdImpRecords_DataSource" >
         <EditItemStyle Width="165px" />
         <ItemStyle Width="165px" />
         <EditItemTemplate>
             <rad1:GridTextBoxColumnEditor ID="editLoanNumber" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editInvestorLoanNumber" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editBorrowerFirstName" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editBorrowerLastName" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editCoBorrowerFirstName" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editCoBorrowerLastName" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editBorrowerHomePhone" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editBorrowerOtherPhone" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editStreetAddress" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editStreetAddress2" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editCity" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editState" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editZip" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editPrincipalBalance" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editPreviousListPrice" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editCurrentListPrice" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingID" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingAgentFirst" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingAgentLast" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingAgentEmail" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingAgentPhone" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompany" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyPhone" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyAddress1" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyAddress2" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyCity" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyState" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridTextBoxColumnEditor ID="editListingCompanyZIP" runat="server" TextBoxStyle-Width="100px" />
             <rad1:GridDateTimeColumnEditor ID="editListingDate" runat="server" TextBoxStyle-Width="100px" />
         </EditItemTemplate>
                                    
         <NoRecordsTemplate>
             <div style="font-size:90%; color:Maroon; padding-left:20px;">There are no records to display at this time.</div>
         </NoRecordsTemplate>
        
        <HeaderStyle Width="165px" HorizontalAlign="Center" VerticalAlign="Middle" Font-Bold="true" />
                                    
        <Columns >
            <rad1:GridTemplateColumn HeaderButtonType="None" HeaderText="Discard" UniqueName="DiscardColumn">
                <HeaderStyle Width="105px" />
                <ItemStyle Width="105px" HorizontalAlign="Center" />
                <HeaderTemplate>
                    <input type="checkbox" class="DiscardCheckbox" id="HeaderCheckbox" onclick="" />
                    <label for="HeaderCheckbox" id="HeaderCheckBoxLabel" >Check All</label>
                </HeaderTemplate>
                <ItemTemplate>
                    <asp:CheckBox runat="server" CssClass="DiscardCheckBox" ID="chkDiscard" />
                </ItemTemplate>
            </rad1:GridTemplateColumn>
            <rad1:GridEditCommandColumn UniqueName="EditColumn"  >
                <HeaderStyle Width="100px" />
                <ItemStyle Width="100px" HorizontalAlign="Center" />
            </rad1:GridEditCommandColumn>
            <rad1:GridBoundColumn DataField="LoanNumber" UniqueName="LoanNumber" HeaderText="Loan Number" ColumnEditorID="editLoanNumber"></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="InvestorLoanNumber" UniqueName="InvestorLoanNumber" HeaderText="Investor Loan Number" ColumnEditorID="editInvestorLoanNumber" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="BorrowerFirstName" UniqueName="BorrowerFirstName" HeaderText="Borrower First Name" ColumnEditorID="editBorrowerFirstName" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="BorrowerLastName" UniqueName="BorrowerLastName" HeaderText="Borrower Last Name" ColumnEditorID="editBorrowerLastName" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="CoBorrowerFirstName" UniqueName="CoBorrowerFirstName" HeaderText="Co-Borrower First Name" ColumnEditorID="editCoBorrowerFirstName" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="CoBorrowerLastName" UniqueName="CoBorrowerLastName" HeaderText="Co-Borrower Last Name" ColumnEditorID="editCoBorrowerLastName" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="BorrowerHomePhone" UniqueName="BorrowerHomePhone" HeaderText="Borrower Home Phone" ColumnEditorID="editBorrowerHomePhone" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="BorrowerOtherPhone" UniqueName="BorrowerOtherPhone" HeaderText="Borrower Other Phone" ColumnEditorID="editBorrowerOtherPhone" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="StreetAddress" UniqueName="StreetAddress" HeaderText="Mailing Address1" ColumnEditorID="editStreetAddress" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="StreetAddress2" UniqueName="StreetAddress2" HeaderText="Mailing Address2" ColumnEditorID="editStreetAddress2" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="City" UniqueName="City" HeaderText="Mailing City" ColumnEditorID="editCity" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="State" UniqueName="State" HeaderText="Mailing State" ColumnEditorID="editState" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="Zip" UniqueName="Zip" HeaderText="Mailing Zip" ColumnEditorID="editZip" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="PrincipalBalance" UniqueName="PrincipalBalance" HeaderText="Amount Due"  ColumnEditorID="editPrincipalBalance" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="PreviousListPrice" UniqueName="PreviousListPrice" HeaderText="Previous List Price" ColumnEditorID="editPreviousListPrice" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="CurrentListPrice" UniqueName="CurrentListPrice" HeaderText="Current List Price" ColumnEditorID="editCurrentListPrice" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingID" UniqueName="ListingID" HeaderText="Listing ID" ColumnEditorID="editListingID" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingDate" UniqueName="ListingDate" HeaderText="Listing Date" DataType="System.DateTime" DataFormatString="{0:d)" ColumnEditorID="editListingDate" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingAgentFirst" UniqueName="ListingAgentFirst" HeaderText="Listing Agent First" ColumnEditorID="editListingAgentFirst" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingAgentLast" UniqueName="ListingAgentLast" HeaderText="Listing Agent Last" ColumnEditorID="editListingAgentLast" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingAgentEmail" UniqueName="ListingAgentEmail" HeaderText="Listing Agent Email" ColumnEditorID="editListingAgentEmail" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingAgentPhone" UniqueName="ListingAgentPhone" HeaderText="Listing Agent Phone" ColumnEditorID="editListingAgentPhone" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompany" UniqueName="ListingCompany" HeaderText="Listing Company" ColumnEditorID="editListingCompany" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyPhone" UniqueName="ListingCompanyPhone" HeaderText="Listing Company Phone" ColumnEditorID="editListingCompanyPhone" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyAddress1" UniqueName="ListingCompanyAddress1" HeaderText="Listing Company Address1" ColumnEditorID="editListingCompanyAddress1" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyAddress2" UniqueName="ListingCompanyAddress2" HeaderText="Listing Company Address2" ColumnEditorID="editListingCompanyAddress2" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyCity" UniqueName="ListingCompanyCity" HeaderText="Listing Company City" ColumnEditorID="editListingCompanyCity" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyState" UniqueName="ListingCompanyState" HeaderText="Listing Company State" ColumnEditorID="editListingCompanyState" ></rad1:GridBoundColumn>
            <rad1:GridBoundColumn DataField="ListingCompanyZIP" UniqueName="ListingCompanyZIP" HeaderText="Listing Company ZIP" ColumnEditorID="editListingCompanyZIP" ></rad1:GridBoundColumn>
        </Columns>
                                    
    </MasterTableView>
</rad1:RadGrid>
                            
                            
                            
<div style="width:100%; text-align:right;" >
     <asp:Button ID="btnDiscardRecords" runat="server" OnClientClick="if (!ConfirmDiscard()) return false;" OnClick="btnDiscardRecords_Click" ToolTip="Discard all records that are checked." Text="Discard" />
     <asp:Button ID="btnCommitRecords" runat="server" OnClientClick="if (!CheckForSelectedRows()) return false;" OnClick="btnCommitRecords_Click" ToolTip="Commits all records." Text="Submit" />
</div>
                                
</asp:Panel>
                        
                        <asp:SqlDataSource ID="grdImpRecords_DataSource" runat="server"
                                 SelectCommand="usp_Import_GetStagingImportRecords" SelectCommandType="StoredProcedure">
                                    <SelectParameters>
                                        <asp:Parameter DefaultValue="0" Name="BatchRequestID" />
                                        <asp:Parameter DefaultValue="0" Name="ProductCodeID" />
                                    </SelectParameters>     
                            </asp:SqlDataSource>
Josh Horton
Top achievements
Rank 1
 answered on 30 Oct 2009
1 answer
193 views
Hello,

I try to implement a Combobox inside a radgrid.
I have a problem to display fully the radcombo multicolumns table width which seems to be the same as the column size instead of a bigger width.

here is my code for my column template. any idea? Thanks

  <telerik:GridTemplateColumn DataField="LongAccount"  HeaderStyle-HorizontalAlign="Center"
                                UniqueName="LongAccount" HeaderText="Account" ReadOnly="true" ShowSortIcon="false"
                                FooterText="Sub Total">
                                <ItemTemplate>
                                    <asp:Label ID="lblAccount" runat="server" Text='<%#Bind("LongAccount") %>'></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <asp:Label ID="lblAccntPrefix" runat="server"></asp:Label>
                                    <telerik:RadComboBox ID="ddlAccount" HighlightTemplatedItems ="true" MarkFirstMatch="true" Width="50px" DataTextField="Desc" DataValueField="Account" runat="server">
                                        <HeaderTemplate>
                                            <table style="width: 275px" cellspacing="0" cellpadding="0">
                                                <tr>
                                                    <td style="width: 50px;">
                                                        Account
                                                    </td>
                                                    <td style="width: 220px;">
                                                        Description
                                                    </td>
                                                </tr>
                                            </table>
                                        </HeaderTemplate>
                                        <ItemTemplate>
                                            <table style="width: 275px" cellspacing="0" cellpadding="0">
                                                <tr>
                                                    <td style="width: 50px;">
                                                        <%# DataBinder.Eval(Container, "Text")%>
                                                    </td>
                                                    <td style="width: 220px;">
                                                        <%#DataBinder.Eval(Container, "Value")%>
                                                    </td>
                                                </tr>
                                            </table>
                                        </ItemTemplate>
                                        
                                    </telerik:RadComboBox>
                                    <asp:Label ID="lblAccntSuffix" runat="server"></asp:Label>
                                </EditItemTemplate>
                                <HeaderStyle HorizontalAlign="Center"></HeaderStyle>
                                <ItemStyle HorizontalAlign="Left" Width="100px" CssClass="BorderRight BorderBottom" />
                                <FooterStyle CssClass="BorderRight BorderBottom" />
                            </telerik:GridTemplateColumn>
Veselin Vasilev
Telerik team
 answered on 30 Oct 2009
4 answers
232 views
Hi I have some transactions that I am trying to bind to a radgrid. The transactions are being read from an XML file. I am using VB.NET and would like to change some of the values being bound from string to decimal.

Here is my code for the grid.
            <telerik:RadGrid ID="_pastItemsGrid" runat="server" AllowMultiRowSelection="true" 
                ShowFooter="true" AutoGenerateColumns="false" OnItemDataBound="_pastItemsGrid_ItemDataBound"
                <HeaderStyle Font-Bold="true" HorizontalAlign="Left" /> 
                <PagerStyle Mode="NextPrevAndNumeric" /> 
                <ClientSettings> 
                    <Selecting AllowRowSelect="true" /> 
                </ClientSettings> 
                <MasterTableView DataKeyNames="TranID"
                    <Columns> 
                        <telerik:GridBoundColumn HeaderText="Date" DataField="Date" /> 
                        <telerik:GridBoundColumn HeaderText="Description" DataField="Description" /> 
                        <telerik:GridBoundColumn HeaderText="Miles" DataField="Miles" DataType="System.Double" /> 
                        <telerik:GridBoundColumn HeaderText="Amount" DataField="Amount" DataType="System.Decimal" 
                            DataFormatString="{0:C2}" /> 
                        <telerik:GridClientSelectColumn HeaderText="Select" UniqueName="checkSelect" /> 
                    </Columns> 
                    <NoRecordsTemplate> 
                        <div> 
                            There were no records found.</div> 
                    </NoRecordsTemplate> 
                </MasterTableView> 
            </telerik:RadGrid> 
 

Here is the XML:
<Transcations> 
  <Transaction TranID="01"
    <Date>01/22/09</Date> 
    <Description>Target</Description> 
    <Miles>50400</Miles> 
    <Amount>504.46</Amount> 
  </Transaction> 
  <Transaction TranID="02"
    <Date>01/23/09</Date> 
    <Description>Ann Taylor Loft</Description> 
    <Miles>30500</Miles> 
    <Amount>305.50</Amount> 
  </Transaction> 
  <Transaction TranID="03"
    <Date>01/24/09</Date> 
    <Description>Dick's Sporting Goods</Description> 
    <Miles>5000</Miles> 
    <Amount>50.32</Amount> 
  </Transaction> 
</Transcations>

The grid is being bound with all the proper values but the miles value needs to be a long and the amount needs to be a decimal.

Here is how im binding the grid:
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 
        Dim ds As New DataSet 
        ds.ReadXml(Server.MapPath("../Transactions.xml")) 
        _pastItemsGrid.DataSource = ds 
        _pastItemsGrid.DataBind() 
    End Sub 
 

Now I tried the following to but it does not work.
    Protected Sub _pastItemsGrid_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles _pastItemsGrid.ItemDataBound 
        If TypeOf e.Item Is GridDataItem Then 
            Dim accrued As New Double 
            Dim amount As New Decimal 
            accrued = CDbl(e.Item.DataItem(2)) 
            e.Item.DataItem(2) = accrued 
            amount = CDec(e.Item.DataItem(3)) 
            e.Item.DataItem(3) = amount 
        End If 
    End Sub 

Can anyone please point me in the right direction? The end reason is that I would like to have totals for those two columns in the footer and the Aggregate="Sum" does not work if the bound item is of type string. Thanks

Mustafa
Tsvetoslav
Telerik team
 answered on 30 Oct 2009
2 answers
156 views
hello, I am trying to find a control where I can show a map, along with some basic features like zoom in/out, collapse and move it around. Can we do this with binaryimage control? if not what other control can I use?

many Thanks
Ivo
Telerik team
 answered on 30 Oct 2009
1 answer
91 views

Vs2008

Q2 2009

 

Hiya,

 

You have a lovely radLoadingPanel effect on the following page:

http://demos.telerik.com/aspnet-ajax/grid/examples/programming/webmailgrid/defaultcs.aspx

 

.When the user sorts the grid, the effect comes into play.

 

I’m trying to replicate it. However, even after wading though the masses of code etc, I still can’t isolate where the effect is coming from.

On the page itself, the grid is associated with a radLoadingPanel.

I’d have thought that it was a simple matter of the grid/ loadingpanel grabbing the image from the skin, but obviously not.

 

It seems that there’s a header.ascx and a headtag.ascx, which in turn reference other js and App_Code…

 

That’s a  LOT of additional stuff.

 

My question, can you tell me the bare minimum that I need to achieve this effect?

1)      radGrid

2)      radLoadingPanel

3)      skin

4)      ?????? etc

Or, even better yet, could you post a tiny project?

 

Many thanks,

 

yogi

 

Dimo
Telerik team
 answered on 30 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?