Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
43 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
72 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
63 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
246 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
83 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
138 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
4 answers
203 views
I have been tasked to use the PanelBar with Radio Buttons.   

The mock up below pretty much explains my needs.    Attendee logs in.  Then they see Thursday, Friday, Saturday, and Sunday as Top Panel bar items.  When they click on Thursday, the time slot followed by courses represented with Radio buttons is displayed for user to select a course taken for that time slot.

I have this all working with a combo box that the user selects which day they want and then the list shows.   However they have not changed there mind and want to use the PanelBar.

Any how to and code examples will be welcome, I didn't find anything to help with this yet.

Ivan Danchev
Telerik team
 answered on 26 Mar 2015
1 answer
67 views
I have attempted to recreate this demo on my local PC with the northwind DB:

http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/programmatic/defaultcs.aspx

Unfortunately, the clientside call in the client pageload event:

PageMethods.GetData(0, tableView.get_pageSize(),

does not initiate the following serverside code:

public static List<Employee> GetData(int startIndex, int maximumRows,

string sortExpressions, List<GridFilterExpression> filterExpressions)

this function fails here:

function RadGrid1_RowDataBound(sender, args) {

var radTextBox1 = args.get_item().findControl("LastName"); 

radTextBox1.set_value(args.get_dataItem()["LastName"]); fails here

}

Can someone please explain why the client side call does not work or provide me with a better example of clientside data binding.

Thanks in advance.

Mark

Pavlina
Telerik team
 answered on 26 Mar 2015
1 answer
40 views
Hi Team,

We are using Telerik version 2014.1.225.40 version in our application but some of the controls like RadMonthYearPicker not working in IE 9.Kindly suggest what would be the solution for this issue.

thanks,
Sarath
Pavlina
Telerik team
 answered on 26 Mar 2015
7 answers
141 views
I can only get the AccessKey funcionality of the RadTreeView to work in IE8. It is not working in Firefox 3.5, or Safari 4.0.

I copied and pasted the example provided under the control demo, and added accesskey="W".

When I press Alt+W in Firefox or Safari, nothing happens. The treeview is not focused, and I cannot use the arrow keys for navigation.
Dimitar
Telerik team
 answered on 26 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?