Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
132 views
Hi
I was trying to do some ajax stuff with RadAjaxPanel.

In the Normal screen, there is a RadGrid inside one of the RadTabStrip + RadMultiPage, and the editform for the RadGrid is a customised popup control which is another   RadTabStrip + RadMultiPage.

In the Ajaxpanel screen, the only difference is I put the RadGrid in a RadAjaxPanel, so it can do some ajax thing, but the screen is missing some icons("Add New", "Filter") and border or layout of the RadTabStrip. However, if I use "UpdatePanel", the screen would looks fine. And I am not using RadAjaxManager, does anyone have clues about that?
thx 
Wenchao
Top achievements
Rank 1
 answered on 25 Nov 2008
1 answer
137 views
Hello all,

I have cloned the radComboBox demo "google-like filtering". I have 4 columns and it is working pretty well. What I need to do next is to preserve the value of each drop down, when the grid has applied the filtering. This to give the user the ability to drill down the search.

i.e. The grid is populated with Project information and has the following columns;

  • Project Title
  • Project Manager
  • Team Lead
  • Team

I want the user to be able to input/select a Team from the Team drop down, giving a result of all projects under that Team. Then a Team Lead from the Team Lead dropdown based on the previous result. This would give me all the projects for that Team Lead/Team.

In my exemple a Team Lead can lead multiple Teams.

Is there any way to do this?

Thanks in advance, Mario

Yana
Telerik team
 answered on 25 Nov 2008
1 answer
108 views
I have a strange problem :

When I click on one of dropdown items, my selection comes visible on the top of the combobox. Everything goes normal for the moment. But after my selection, when I click on another textbox on my form, the first item (of my dropdownlist) comes visible .... ?

I have maded some printscreens :

Step 1 : Click on the combox to see the list
http://www.x-it.be/step1.jpg

Step 2 : The selected items is visible in front of the combox
http://www.x-it.be/step2.jpg

Step 3 : When I now click on the textbox (or type something) ... for some reason the first items comes visible in the combobox
http://www.x-it.be/step3.jpg
Joeri
Top achievements
Rank 2
 answered on 25 Nov 2008
9 answers
248 views
Just upgraded to Q3 2008 and in IE6 and 7, my whole page is gone (blank) even though all the elements are in the page DOM. Disabling CSS and reenabling it, makes everything appear as it should. I use radsplitter and many other controls. This has never happened before!
Firefox and Chrome don't have the problem. This happens not just on my PC but others as well.
Any ideas?
Tsvetie
Telerik team
 answered on 25 Nov 2008
1 answer
153 views
Hi:

Using the asp:GridView, I have been able to successfully display thumbnail images stored in my database in the GridView Cells.  I have done this using Template Fields and a custom control that fetches the bit stream from the database.  I have been trying to do this using the RadGrid but have been unsuccesful.  Any Suggestions?

Regards,
Roger

<asp:TemplateField HeaderText="Image">
                            <itemtemplate>
                            <asp:Image ID="SmallPic2" runat="server" ImageUrl='<%# "~/Controls/Fetch_Pic.ashx?ProductPicID="+ Eval("PicID") + "&Size=Small"  %>' />
                        </itemtemplate>
                        </asp:TemplateField>
Vlad
Telerik team
 answered on 25 Nov 2008
3 answers
162 views
Hi,

i have footer control in master page,after the content placeholder.Then i am having radgrid with gridtemplatecolumn for creating image gallery.Now i am setting pagesize=6,but i am having 7 images .At grid-first page 6 images are dispalying,in second page 1-image is displaying,now what happen is,my footer control will comes within the grid.There is nothing problem in my other Radgrids.Because that grids retrieving datas only.This is the design source for my grid which is haiving problem.and not only footer control,whatever the control placing after the rad grid,it shows the same issues as i mentioned above.

<telerik:RadGrid ID="rgridProduct" runat="server" DataSourceID="dsProduct" GridLines="None"
                        AllowPaging="true" AllowSorting="true" OnItemDataBound="rgridProduct_ItemDataBound"
                        Skin="Office2007" Width="900px" EnableEmbeddedSkins="false">
                        <HeaderContextMenu EnableTheming="True">
                            <CollapseAnimation Duration="200" Type="OutQuint" />
                        </HeaderContextMenu>
                        <PagerStyle Mode="NextPrevAndNumeric" />
                        <MasterTableView DataSourceID="dsProduct" AutoGenerateColumns="False" DataKeyNames="ProductId"
                            TableLayout="Fixed" PageSize="6">
                            <Columns>
                                <telerik:GridBoundColumn DataField="ProductID" Display="false" DataType="System.Int32"
                                    HeaderText="ProductID" ReadOnly="True" SortExpression="ProductID" UniqueName="ProductID">
                                </telerik:GridBoundColumn>
                                <telerik:GridTemplateColumn UniqueName="ImageColumn">
                                    <ItemTemplate>
                                        <%# (((GridItem)Container).ItemIndex != 0)? "</td></tr></table>" : "" %>
                                        <asp:Panel ID="ItemContainer" CssClass='<%# (((GridItem)Container).ItemType == GridItemType.Item)? "item" : "alternatingItem" %>'
                                            runat="server" Width="250px" Height="150px">
                                            <div class="view_rightgrid">
                                                <br />
                                                <asp:Label ID="lblName" runat="server"><%# Eval("ProductName")%></asp:Label>
                                                <br />
                                                <asp:HyperLink ID="hlPreview" runat="server" ToolTip="View" Text="Preview" NavigateUrl='<%# "MarketerViewProduct.aspx?ProductID="+Eval("ProductID")%>'></asp:HyperLink>
                                                <br />
                                                <asp:HyperLink ID="HyperLink1" runat="server" ToolTip="View" Text="Edit" NavigateUrl='<%# "Product.aspx?ProductID="+Eval("ProductID")+"&mode=edit" %>'></asp:HyperLink>
                                            </div>
                                            <asp:Image ImageUrl='<%# String.Format(System.Configuration.ConfigurationManager.AppSettings["virtualPath"].ToString() + "{0}", DataBinder.Eval(Container.DataItem, "PrimaryImage")) %>'
                                                ID="smallImage" runat="server" AlternateText="" Height="100px" />
                                            <asp:HyperLink ID="targetControl" runat="server" NavigateUrl="#" Text="Details"></asp:HyperLink>
                                        </asp:Panel>
                                        <%# (((GridItem)Container).ItemIndex != (((GridItem)Container).OwnerTableView.PageSize - 1))? "<table style='display:none;'><tr><td>" : "" %>
                                    </ItemTemplate>
                                </telerik:GridTemplateColumn>
                            </Columns>
                        </MasterTableView>
                        <FilterMenu EnableTheming="True">
                            <CollapseAnimation Duration="200" Type="OutQuint" />
                        </FilterMenu>
                    </telerik:RadGrid>

Thanks
santhose
Dimo
Telerik team
 answered on 25 Nov 2008
1 answer
152 views
Im dynamically creating treeview nodes at runtime and am using the ImageURL property to set a different image for each node.
I dont want to have the main '+'  and '-' icons to appear, is there a way to 'switch them off'  ??
Shinu
Top achievements
Rank 2
 answered on 25 Nov 2008
3 answers
129 views
Hi,

    Now RadGridFilterMenu is English,but my user are all Chinese. How to change it for Chinese?

Thanks!
Princy
Top achievements
Rank 2
 answered on 25 Nov 2008
1 answer
146 views
Hi,

I'm in need of the following functionality - I need to know whether I can do it using a RADMenu.

I need the children of an element to expand HORIZONTALY exactly under the parent row and once a child is clicked I need the menu to stay open with the selected child highlighted.

Is this possible with RADMenu?

Thanks,
Cristian
Shinu
Top achievements
Rank 2
 answered on 25 Nov 2008
1 answer
68 views
Our users would like to see a label  or tooltip added to

ClientSelectColumn 
I have set the Header Text and Text properties but I am not seeing anything displayed. 

Is there a way to do this?  I would like to label the header check box and maybe the item boxes also.

Thank you,

Damon

Princy
Top achievements
Rank 2
 answered on 25 Nov 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?