Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
Hello,

After some test I found that seems that theres a limit with exceptions. After some filter added to the recurrence rukle the result is that  we are nmot able to delete some parts of the recurrence rule if older are present. Theres any limit about?
Peter Filipov
Telerik team
 answered on 27 Mar 2015
1 answer
116 views
Hi Telerik

How can i change the color of browse button when clicked.

Please advise.

Thanks!
Dimitar
Telerik team
 answered on 27 Mar 2015
3 answers
248 views
Hello, 

I have a radgrid in edit mode (Inline editMode) and multi rows edit. 
In this grid a have a Date Column (GridTemplateColumn with a raddatepicker in edit template)

I change the date and type enter. This  save the item  automatically and will go to the next row in the same column


To do this a have used OnKeyPressed on the grid and set to radAjaxmanager a methode to execute (javascrip) OnResponseEnd.

My code works fine in Firefox and Mozilla .
With IE the first time it is working than not 

Can some one help me ?

Thanks
Eyup
Telerik team
 answered on 27 Mar 2015
1 answer
61 views
How can I use different FormDecorator skin for different telerik:GridCheckBoxColumn?
I want to use black for GridCheckBoxColumn DataField="admin" and Metro for GridCheckBoxColumn DataField="writer" and Office2010Silver for telerik:GridTemplateColumn with a asp:CheckBox?
Konstantin Dikov
Telerik team
 answered on 27 Mar 2015
3 answers
47 views
Afternoon,

I am currently having a problem with drag and drop and Renaming folders in the left panel.  I can drag from the right to the left and I can rename folders in the right panel just fine, but some reason not within the left panel.  Seem to be missing a switch somewhere that I can't find.

What's different in the panels.

thanks,
Steve.
Vessy
Telerik team
 answered on 27 Mar 2015
1 answer
80 views
Hi,

In my requirements I have to dynamically generate editable columns, something like batch editing here: http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx

However, I need a column with related DropDownLists - is it possible to achieve this?

Thanks,
Catalin
Konstantin Dikov
Telerik team
 answered on 27 Mar 2015
1 answer
72 views
Hello,

I have converted my Project from VS2008 to VS 2010 , and after that when i open the Rad Editor , and click on Image Control / web Hyperlink --> hte Pop up opens they lost thier CSS, and i am not able to find any way to get back..

Can you help me here how should i set so the GUI of the Pop should be back.

Please find attachment for more details


Regards
Samir
Ianko
Telerik team
 answered on 27 Mar 2015
3 answers
251 views
I'm using RadNavigation to create a responsive menu for my website. 

I have run into two issues. 


1.
How can I make certain NavigationNodes right aligned? So I can have a log out button be right aligned, away from the rest of the options. Here is my code 
<telerik:RadNavigation runat="server" ID="nav1" EnableTheming="true">
    <Nodes>
        <telerik:NavigationNode Text="Home" NavigateUrl="Default.aspx">
 
        </telerik:NavigationNode>
        <telerik:NavigationNode Text="Causes" >
            <Nodes>
                <telerik:NavigationNode Text="My Causes"></telerik:NavigationNode>
                <telerik:NavigationNode Text="Manage Causes"></telerik:NavigationNode>
            </Nodes>
        </telerik:NavigationNode>
        <telerik:NavigationNode Text="Log Out" NavigateUrl="LogOut.aspx">
 
        </telerik:NavigationNode>
    </Nodes>
</telerik:RadNavigation>

I want the 'Log Out' navigation node to be right aligned. I've attached an image of what the menu bar currently looks like. 

2. I want to be able to hover over the elements to see the drop down. I Don't know where to change this with RadNavigation

Plamen
Telerik team
 answered on 27 Mar 2015
2 answers
87 views
Are there any plans to add a FitlerTextBox property to the ImageManager and DocumentManager like the FileExplorer control has?

EnableFilterTextBox="true" doesn't exist for the Editor managers?


Ianko
Telerik team
 answered on 27 Mar 2015
5 answers
140 views
So here is the situation:

I have a RadGrid with 4 columns and am allowing filtering. I'm using the <FilterTemplate> for all four columns and am binding using the NeedDataSource event.

Everything is working great except that for one of the fields I want to actually requery the database rather than just filter. It is a date field and I would rather limit the results from the database on this filter rather than just filter the existing data.

Sooo...here is what I tried:

    Public Sub RadComboboxEmployeeDateSubmittedFilter_SelectedIndexChanged(ByVal sender As ObjectByVal e As RadComboBoxSelectedIndexChangedEventArgs)  
 
        _startDate = String.Format(CultureInfo.CurrentCulture, "1/1/{0} 12:00:00 AM", e.Value)  
        _endDate  = String.Format(CultureInfo.CurrentCulture, "12/31/{0} 11:59:59 PM", e.Value)  
 
        Session.Item("TransactionLogYearFilter") = e.Value   
 
        RadGridEmployeeTransactions.Rebind()  
 
    End Sub 

RadComboboxEmployeeDateSubmittedFilter is the combobox that is inside the DateSubmitted column <FilterTemplate>, so the code above fires when the user selects an item from the combobox.

Here is my NeedDataSource handler:

    Private Sub RadGridEmployeeTransactions_NeedDataSource(ByVal source As ObjectByVal e As GridNeedDataSourceEventArgs) Handles RadGridEmployeeTransactions.NeedDataSource  
 
        Dim lTransactions As DataSet = Nothing 
 
        If UserType <> EnumHelper.UserType.Employee Then 
            Return 
        End If 
 
        Try 
 
            lTransactions = MiBenefitsHelper.GetEmployeeTransactions(GroupNumber, _  
                                                                     FamilyNumber, _  
                                                                     _startDate, _  
                                                                     _endDate)  
 
            RadGridEmployeeTransactions.DataSource = lTransactions  
 
        Catch ex As WcfException  
 
            PanelEmployeeTransactionLog.Visible = False 
            PanelUpdateStatus.Visible = True 
            LabelUpdateStatus.Text = "There was an error returning your transactions and they cannot be displayed at this time. EBMS has been notified of the problem and will have it resolved as soon as possible." 
            LabelUpdateStatus.ForeColor = Color.Red  
            ExceptionPolicy.HandleException(ex, "Global Policy")  
 
        End Try 
 
    End Sub 

As you can see it is referencing the _startDate and _endDate fields which get populated when the user makes a selection from the dropdown.

The problem is that RadGridEmployeeTransactions.Rebind() does not cause the RadGridEmployeeTransactions_NeedDataSource event to fire, which means the database is not re-queried and the results are not filtered.

How do I go about forcing the RadGridEmployeeTransactions_NeedDataSource event to fire so that it queries the database with the correct _startDate and _endDate values??

Thanks!

Subhashini
Top achievements
Rank 1
 answered on 26 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?