Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
79 views

I applied suggested settings(Excel-fromat="HTML",Exportonlydata="true") by Princy but I could not see any difference and I'm getting same thing which I have sent you screenshot.

Prasad.
Prasad
Top achievements
Rank 1
 asked on 21 Jul 2011
2 answers
59 views
1)I have done my hirarchy grid export excel functionality but it is showing button types (Hirarchy simbles) left side as mentioned in the screenshot.

Suggest me how to overcome above one.

2)The content (rows) of exported excel file data cannot be understood by user means that is not showing properly, is there any property to set to show columns and rows data properly.

Advance Thanks.
Prasad
Top achievements
Rank 1
 answered on 21 Jul 2011
5 answers
70 views
I am currently evaluating the controls, especially the RadViewTree, I was just recommending them to my manager when he reminded me to test behind our Alteon server.  This has thrown up a lot of problems with the controls not working correctly. 

For example when I click on the expand symbol nothing happens.

Can anyone help me.
Nikolay Tsenkov
Telerik team
 answered on 21 Jul 2011
4 answers
58 views
Dear Support,

I have grouping enabled server-side. In the attached image you see that my grid is grouped by 2 columns: Status and Priority.  I don't want the "Status" label to be visible in my group header, but the problem is that if I set 
gridGroupByField.HeaderText = " ";

then the group panel header shows up as empty.  All my groups are dynamically defined, so I don't know ahead of time which will want the column name to show up and which won't.  Is there a way for me to set the GroupPanel header values?
Dasha
Top achievements
Rank 1
 answered on 21 Jul 2011
1 answer
45 views
Hi,

I want to display browse button as a hyper link. Is this possible to changes button to hyper link.

Please suggest.
Regards,
Reyaz


Dimitar Terziev
Telerik team
 answered on 21 Jul 2011
11 answers
201 views
Hi,

according to advice from your forum, I'm putting there my question:

I'm using SF 3.7 and I'm trying to put customized action for inserting control for JW Player. I have code, which works, and which is using script tags. But, if I insert this code via pasteHtml method, then the part with script tags is omitted. the same code with set_html works - but I don't want to lost previous content, so I have to use pasteHtml method.

So, it is known bug or I have to use another method?

Thanks

Petr
Radoslav Georgiev
Telerik team
 answered on 21 Jul 2011
4 answers
579 views
<telerik:RadGrid ID = "RadGrid1" AutoGenerateColumns = "false" runat = "server" AllowPaging="True"
                    Width="97%" GridLines="None" Skin="WebBlue"
                    onneeddatasource="RadGrid1_NeedDataSource"
                    onitemcommand="RadGrid1_ItemCommand"
                    onprerender="RadGrid1_PreRender" >
                    <%--onitemcreated="RadGrid1_ItemCreated"
                    onselectedindexchanged="RadGrid1_SelectedIndexChanged">--%>
                  <ClientSettings EnableRowHoverStyle="false" EnablePostBackOnRowClick = "true">
                            <Selecting AllowRowSelect="true" />
                  </ClientSettings>
 
      <MasterTableView ShowHeader="false">
        <Columns>
            <telerik:GridTemplateColumn UniqueName="TemplateColumn">
                <ItemTemplate>
                  <table>
                    <tr>
                      <%# Eval("CategoryName") %>
                    </tr>
 
                    <tr>
                      <td>
                        <telerik:RadButton ID="Button1" runat="server" ButtonType="LinkButton" Text="Button1"
                                    CommandName="Button1Click" OnClick="Button1_Click" />
                      </td>
                      <td>
                        <telerik:RadButton ID="Button2" runat="server" ButtonType="LinkButton" Text="Button2"
                                    CommandName="Button2Click" OnClick="Button2_Click" />
                      </td>
                    </tr>
                  </table>
                   
                </ItemTemplate>
            </telerik:GridTemplateColumn>
        </Columns>
      </MasterTableView>
    </telerik:RadGrid>
  So, I'm new to this whole Telerik thing and I'm having a little problem...
 I have a RadGrid and one of its columns is a Template Column.. Inside the template column, I have a button... I can't seem to get the event handler of that button to fire....
   I also need to know the button of which row was clicked... I tried the ItemCommand and it didn't work.. any ideas? thnx for the help...
Gavin
Top achievements
Rank 1
 answered on 21 Jul 2011
8 answers
867 views
Hello,

I've been unable to get the RadAjaxLoadingPanel to work. I'm using a Master page which contains the RadScriptManager. The content page contains a RadAjaxManager, RadAjaxLoadingPanel, and RadAjaxPanel. I think I'm missing client side code that triggers the Loading Panel to appear and disappear. You can see below, I've set the Ajax Panel "LoadingPanelID" to my loading panel. I also added the RadAjaxManager in attempt to wire up the AjaxPanel & Loading Panel. I also set the Loading Panel to have absolute positioning so I could search for it using the IE developer toolbar. I did find it on the page, but it was hidden (display:none). This is why I'm assuming I'm missing the code to trigger the appearance of the Loading Panel. Suggestions are greatly appreciated.

Thanks!

Content.aspx
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadAjaxPanel1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadAjaxPanel1" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>

    
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default" Transparency="30" ZIndex="9999999" style="position:absolute; left:200px; top:200px;">
        <asp:Label ID="lbl" runat="server" ForeColor="Red">Loading...</asp:Label>
        <asp:Image ID="img" runat="server" Height="40px" Width="40px" ImageUrl="~/images/SpinIndicator.gif" />
    </telerik:RadAjaxLoadingPanel> 


 <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" OnAjaxSettingCreating="RadAjaxPanel1_AjaxSettingCreating">
>
>
>



Content.aspx.cs
    protected void RadAjaxPanel1_AjaxSettingCreating(object sender, AjaxSettingCreatingEventArgs e)
    {
        e.UpdatePanel.UpdateMode = UpdatePanelUpdateMode.Always;
    } 

MasterPage.master
- Contains RadScriptManager
Maria Ilieva
Telerik team
 answered on 21 Jul 2011
1 answer
145 views
Hello all,
Here the markup of my code.

<div class="search-filter-categories">
<asp:UpdatePanel runat="server" ID="updatePanelCategories" UpdateMode="Conditional">
<ContentTemplate>
<telerik:RadListView  ID="categoriesList" runat="server"  OnItemDataBound="CategoryDataBound"  >
    <ItemTemplate>    
        <div class="search-filter-categories-item">
            <telerik:RadButton AutoPostBack="false" ButtonType="ToggleButton" ToggleType="CheckBox" CommandArgument='<%# Eval("Id") %>' runat="server" ID="chkOption" OnClientCheckedChanged="showMyToolTip" Text='<%# Eval("Name") %>' /><div class="cb"></div>
        </div>        
    </ItemTemplate>
    <LayoutTemplate>
        <div class="search-filter-categories-columns"><div id="itemPlaceholder" runat="server"></div></div>
        <div class="cb"></div>
    </LayoutTemplate>
</telerik:RadListView>
</ContentTemplate>
</asp:UpdatePanel>
<telerik:RadToolTipManager ID="toolTipManager" ShowEvent="FromCode" HideEvent="FromCode" runat="server" EnableShadow="true"
        Position="BottomCenter" Modal="true" Animation="Fade" AutoTooltipify="false" OnAjaxUpdate="OnAjaxUpdate" RelativeTo="Mouse"
        Width="180px" Height="150px" Style="font-size: 18px; text-align: center; font-family: Arial;"
        RenderInPageRoot="true">
</telerik:RadToolTipManager>
</div>

i have a javascript function called showMyTooltip(sender, args).
The function is correctly called when check/uncheck the checkbox but sender is just the ClientID of the control and args is alwais null.
So i can't use args.get_checked() to see if is checked or not.
Why args is always null?

Thanks,
Mattia
Slav
Telerik team
 answered on 21 Jul 2011
7 answers
351 views
hello,

i have a grid with detail table, default detail tables are disable, the master table has a GridClientSelectColumn, when GridClientSelectColumn checked, the row details table is enable, when unchecked, the row detail table is disable again. i try to use client events to change it, but can't make it. Anyone can give some helps? Thanks.
Shinu
Top achievements
Rank 2
 answered on 21 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?