Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
216 views
Hey,

I have a RadGrid which is filtering (using dynamic LINQ), sorting and paging server side within the NeedDataSource event and everything is working perfectly. However, one of the properties I am binding to is a lookup to another table. This is workable, so in NeedDataSource I perform my lookup and set the value e.g. Say the property is called "CategoryID". I wish to display the category name as opposed to the ID. Because of this, I have the the filter template in my grid where the user can choose from a drop down list. The query will use the value "C1" for Category1 and so on (based on different text/value attributes in the RadComboBoxItem). My query runs fine (selects from table where CategoryID = 'C1') and returns results. Unfortunately, the Grid seems to being filtering client side after the results are returned (so it eliminates results that don't equal 'C1', which is everything). I can tell it's being done client side because:

1. I can put a break point in on the server and see my results after my filtering/sorting/paging.
2. If I name the CategoryID and Caterory name the same thing, the results display as expected.
3. The Grid actually displays the number of results and the correct page numbers successfully at the bottom.

Any help is much appreciated, I'm so close!

<telerik:RadGrid ID="radGridExperienceEntry" runat="server" OnNeedDataSource="GetData">
    <GroupingSettings CaseSensitive="False" />
    <MasterTableView AutoGenerateColumns="false" DataKeyNames="Id">
        <Columns>
            <telerik:GridBoundColumn DataField="Category" UniqueName="Category" HeaderText="Category Type">
                <FilterTemplate>
                    <telerik:RadComboBox ID="RadComboBoxCategory" Height="100px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("Category").CurrentFilterValue %>'
                        runat="server" OnClientSelectedIndexChanged="IndexChanged">
                        <Items>
                            <telerik:RadComboBoxItem Text="All" />
                            <telerik:RadComboBoxItem Text="Category1" Value="C1" />
                            <telerik:RadComboBoxItem Text="Category2" Value="C2" />
                        </Items>
                    </telerik:RadComboBox>
                    <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
                        <script type="text/javascript">
                            function IndexChanged(sender, args) {
                                var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                tableView.filter("Category", args.get_item().get_value(), "EqualTo");
                            }
                        </script>
                    </telerik:RadScriptBlock>
                </FilterTemplate>
            </telerik:GridBoundColumn>
        </Columns>
    </MasterTableView>
</telerik:RadGrid>
Antonio Stoilkov
Telerik team
 answered on 16 Nov 2012
5 answers
107 views
I am trying to execute "Ajaxify particular templated gridview buttons" code from the below link.

http://www.telerik.com/help/aspnet-ajax/ajax-ajaxify-particular-templated-gridview-buttons.html#seeAlsoToggle

the imagebutton works well and updated textbox. but the buttonfield(standard postback on textbox) is not getting updated.Please help.
Maria Ilieva
Telerik team
 answered on 16 Nov 2012
9 answers
684 views
Hi,

I'm using radgrids in my project and would like to change the default texts of "Page size" and "x items in x pages" since my website is in portuguese. I can't seem to figure out where I can access these texts in order to personalize them. Can anyone help please?

Thank you,
Marta
Albert
Top achievements
Rank 1
 answered on 16 Nov 2012
2 answers
952 views
Hi, I have  place RadCombo  inside RADGRID like this
<telerik:GridTemplateColumn   HeaderStyle-HorizontalAlign ="Center" UniqueName="Field" >  
                    <ItemTemplate >
                     <telerik:RadComboBox ID="dropdownfield" runat="server" 
                        EmptyMessage="Choose an instance column" HighlightTemplatedItems="true" AllowCustomText="true"
                        EnableLoadOnDemand="false" EnableVirtualScrolling="true" Filter="Contains" Visible="true" Enabled="false"
                        DropDownWidth="600px" Width="600px"  Skin="WebBlue">
                                <HeaderTemplate>
                                <table cellspacing="0" cellpadding="0">
                                    <tr>
                                          <td style="width:300px;">
                                           Column Name</td>                                    
                                    </tr>
                                </table>
                            </HeaderTemplate>
                            <ItemTemplate>
                                <table  cellspacing="0" cellpadding="0">
                                    <tr>                                        
                                            <td style="width:300px;">
                                            <%# DataBinder.Eval(Container.DataItem, "FieldName")%>
                                        </td>                                                                             
                                    </tr>
                                </table>
                            </ItemTemplate>
    </telerik:RadComboBox>

Below is my javascript to enable/disable RadComboBox 

 function EnableDisbledropdown(chkbox, index) {
         var grid = $find("<%= raggrid.ClientID %>");
        var masterTableView = grid.get_masterTableView();
        var item = masterTableView.get_dataItems()[index];     // here i'm getting specific row of that grid 
        var combo= item.findControl("dropdownfield");
      
         if (chkbox.checked) {
                 combo.enable(); /* for RadComboBox  */
        }
        else {
               combo.disable(); /* for RadComboBox  */
        }

Well my scenerio is that when user check the checkbox Control of that specific row , that corresponding RadComboBox has to be get enabled.
When i run the code i got this following error msg:-
"Object doesn't support this property or method 'enable'

Can someone please  show me how to achieved that functionality ?




Shinu
Top achievements
Rank 2
 answered on 16 Nov 2012
1 answer
144 views
Hi,
     How can I hide the add new button of the child items in the radtreelist with two levels of hierarchy. thanks in advance
Savyo
Princy
Top achievements
Rank 2
 answered on 16 Nov 2012
6 answers
261 views
Dear TELERIK,

I'm using custom user control as AdvancedEditTemplate in RadScheduler.

Obviously, such a user control has COMMIT and CANCEL buttons.

The sample which I found in your sample library suggested making both these buttons as server side buttons, with different command names.

But as it often the case, CANCEL button in my application must do nothing but close the "popup" window, with no postback.

Is it possible to set CANCEL button in this way?

Many thanks!

- Stepan.
Plamen
Telerik team
 answered on 16 Nov 2012
4 answers
116 views
Hi,

I am very new to using Telerik tools, I have just about got a grasp on EF, UnitOfWork and repository pattern which was further complicated by the fact I using Devart's dotConnect for Oracle.

What I would like to know is, based on the fact I am working with Oracle and have abstracted this issue in to a repository pattern, how can I work with my repository pattern methods and RadControls.

Perhaps we could start with a very basic populate a listbox?

I have a method that returns an Enumerable List:

public IEnumerable GetNodesByParent(string Jid)
{
    UnitOfWork unitofwork = new UnitOfWork();
    return (from r in unitofwork.PsldwRepository.Get()
            where r.RELRELAT01A == Jid
            select r.PDTCODEA).ToList();
}

I then have a standard telerik web form and have dropped a listbox object on to it. Please can you tell me how I go about using the method above, which is in my Project.BL namespace, to populate the list box?

Many thanks,

Andy

Peter Filipov
Telerik team
 answered on 16 Nov 2012
8 answers
385 views
I am using the new Q3 2011 bits and noticed the OnClientItemChecked event doesn't fire when I have checkboxes enabled and click the "Check All" option. Selecting/Deselecting any option underneath fires the event, but "Check All" doesn't.

Any tips on how to make that happen?
Kalina
Telerik team
 answered on 16 Nov 2012
1 answer
94 views
Hi,

I am using RadTreeList control and currently experiencing the following issue:
RadTreeList is populating correctly on the page and by default all the the nodes are collapsed.
When I click on the node1 + sign, it expands. When I click again on the same node it DOES NOT collapse.
Anyhow, if I click on node2 (node1 still expanded), node1 collapses and node2 remains collapsed.

RadTreeList is located on on of the tabs on the page.

Any advice is appreciated.

Tanya
Kostadin
Telerik team
 answered on 16 Nov 2012
3 answers
223 views
The Goal:
I would like for CTRL+V to paste a "PasteFromWordNoFontsNoSizes" action without going through the pop-up window when in a non IE browser.

The Code:
<tool name="PasteFromWordNoFontsNoSizes" shortcut="CTRL+V" />

When I test your demo product page, I notice that I am able to do the following:
  1. I can paste using CTRL+V, this doesn't require the pop-up, in all major browsers.
  2. I can paste both normal, and plain text using the built in browser options by right-click (no pop-up).
  3. If I use the action menu items in the toolbar, I am forced to use the pop-up.

I'm wondering, since I can paste normally using Chrome/Safari/FF on your demo, can we apply content stripping automatically at this level?

What I have tried:
I tried to only reference the "PasteFromWordNoFontsNoSizes" action in the contextMenu, and not in the toolbar.

<ContextMenu forElement="*">
      <tool name="PasteFromWordNoFontsNoSizes" shortcut="CTRL+V" />
</ContextMenu>

This results in the following:

  1. Chrome: I cannot paste using CTRL+V at all.
  2. FireFox: I can paste using CTRL+V, but it's treating it like a normal PASTE action, font formatting is not getting striped.
  3. IE: I can paste using CTRL+V and it works as anticipated.

Bottom line:

Is there anyway I can allow paste through CTRL+V that will strip formatting like "PasteFromWordNoFontsNoSizes" without using a pop-up to do so?

Rumen
Telerik team
 answered on 16 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?