Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
47 views
Hi
I hav a textbox and a search button. I enter a text to search for a value in the Grid. I want some sort of identification that the search is successful like highlight the selected search text in the grid.please help on this.
Princy
Top achievements
Rank 2
 answered on 27 Nov 2013
1 answer
118 views
Hi there,

I'm having a problem with my hierarchical radgrid. When I expand the details table and try to reorder the table with ReorderColumnsOnClient = "True", the masterTable gets reordered as well. For example, if I have move the column in position 1 and switch it with column 2 on the details table, column 1 and column 2 are switch on the master table as well. This also happens for a 3 level hierarchy except it does not affect the first details table if the second detail table has been reordered, only the master table (i.e. switching column 1 and column 2 on the 2nd detail table (innermost) ONLY switches column 1 and 2 on the master table, NOT the first (outer) detail table).

Any ideas?

Thank you,

Tom
Kostadin
Telerik team
 answered on 27 Nov 2013
1 answer
216 views
Switching from Classic to Auto or Lightweight render mode  (e.g. "Telerik.Web.UI.RenderMode" value="Classic"  --> "Telerik.Web.UI.RenderMode" value="Auto")  seems to cause a break in most places where RadCombo box is used.  
What about Lightweight/Auto rendering could be causing this?

Please refer to screenshots.  

Any and all theories and/or suggestions will be greatly appreciated.
Nencho
Telerik team
 answered on 27 Nov 2013
1 answer
77 views
I have implemented the "Google-Like" filtering in my RadGrid.  I have read about including checkboxes in the radcombobox drop down list for filtering purposes.  Is it possible to also have the "multi-select" filtering functionality as well, and how would this be implemented?

Thanks,
Mark
Viktor Tachev
Telerik team
 answered on 27 Nov 2013
5 answers
624 views
I have a user control with 2 rad buttons and a rad ajax manager. one ajaxs the other. Because of the user control it is the ajaxmanagerproxy
the main page has a multipage and I load several of the user controls in codeadding them to the pageview in the multipage programatically. I have a regular ajaxmanager on the page set to ajax the panel. However. When the page loads I see all the controls I am adding and when I click the page reloads and they are gone.

What is the point of using ajax if a postback still happens. Any assistance would be appreciated.
Viktor Tachev
Telerik team
 answered on 27 Nov 2013
1 answer
85 views
Hi 

I have a requirement to add a watermark/ put a date format hint beside the calander icon in the GridDateTimeColumn.. is there a property that is available on the Telerik grid or can you suggest a way of achieving this... 

This is what i have
<telerik:GridDateTimeColumn HeaderStyle-Font-Bold="true" HeaderText="xxxxx" ColumnEditorID="xxxxDatePicker" 
    DataField="xxxx" DataFormatString={0:dd-MMM-yyyy} UniqueName="xxxxxx" Aggregate="None" HeaderStyle-Width="20%" />


Thanks in advance.
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Nov 2013
1 answer
96 views
Hi,

we have our own custom control to insert flash and video into the website. Within the control we are using the media manager to let the user choose the files.
The problem we have is that we want to hide the media manager icon from the default toolbar but still be able to open the media manager from within our custom control.
If we remove the mediamanager entry in the ToolFile.xml the media manager also won't open in our custom control.
If we leave it there it works, but the default media manager icon is still present.

Is there any possibility to just hide the default media manager icon?

Thanks
Mark

Ianko
Telerik team
 answered on 27 Nov 2013
1 answer
90 views
how to wrap text only for level 1 menu item? as I don't want to wrap text for the menu sub item, is this possible?

Many thanks
Shinu
Top achievements
Rank 2
 answered on 27 Nov 2013
3 answers
145 views
I've subclassed the RadGrid to be able to provide a consistent, customized behavior for it in my web application.

Right now I'm trying to customize the pagesize combobox in the RadGrid, so it will display more options than the default.
The page size combobox correctly displays the new list of options, but selecting one of them does nothing. No event is fired and the grid contents is not updated.

What do I need to do to make it work?

My code:
Protected Overrides Sub OnItemCreated(e As Telerik.Web.UI.GridItemEventArgs)
 
    If TypeOf e.Item Is GridPagerItem Then
        Dim l_oPageSize As RadComboBox = DirectCast(e.Item.FindControl("PageSizeComboBox"), RadComboBox)
 
        l_oPageSize.Items.Clear()
 
        Dim l_oItem As RadComboBoxItem
        For l_iIndex As Integer = 10 To 150 Step 10
            l_oItem = New RadComboBoxItem(l_iIndex)
            l_oPageSize.Items.Add(l_oItem)
        Next
 
        l_oItem = New RadComboBoxItem(200)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(300)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(300)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(350)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(400)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(450)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(500)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(600)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(700)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(800)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(900)
        l_oPageSize.Items.Add(l_oItem)
        l_oItem = New RadComboBoxItem(1000)
        l_oPageSize.Items.Add(l_oItem)
 
        Dim l_iW As Integer = l_oPageSize.Width.ToString.Substring(0, l_oPageSize.Width.ToString.IndexOf("px"))
        l_oPageSize.Width = Unit.Pixel(l_iW + 10)
    End If
 
    MyBase.OnItemCreated(e)
End Sub
Princy
Top achievements
Rank 2
 answered on 27 Nov 2013
1 answer
123 views
I get the following errors when I try to insert/edit a record in the Batch Editing demo at
http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx

Angel Petrov
Telerik team
 answered on 27 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?