Hi,
For a certain project I need to enable Jquery 3.0.0
Are there any options to let the Telerik controls work together with Jquery 3.0.0?
When I couple as External Jquery, I see all kinds of JS errors appear in different browsers.
Marc
We are using the RadGrid and it's custom paging abilities.
We have a grid where we only bind the "PageSize" (typically 10) to the grid and set the Virtual Item Count equal to the total number of items. (in this case, 897).
When we export to Excel, we have to set the "Page Size" property on the Grid (not the master table view) to the total number of items, rebind the grid to the full dataset and then allow the export. Otherwise, it will only export the current page.
We've noticed that after doing that, in the PageSize dropdown, there are items for the default (10, 20, 50) as well as the item number i exported which is 897.
How can i prevent that value from being saved into the PageSize dropdown.
Hi I have 8 tabs. The first 2 are General information and Employee Information. I want these to be completely filled out first before tabs 3-8 are accessible.
I just inherited this applicaition so I am new to telerik . Any input is appreciated.
Hi,
When I call Image manager natively from RadEditor Image Properties, the Image Manager automatically shows the picture path and picture of the selected item.
How can I achieve such behavior from a stand alone Image Manager called from a RadDialogOpener?
Marc
Hi,
We are currently using RadChart control, now we are planning to update it with RadHtmlControl.
Please suggest the easiest way to migrate this.
If possible please provide us sample project.
Thanks,
Amol
See http://demos.telerik.com/kendo-ui/grid/column-menu
When using Chrome v 55, the column/filter dialog disappears when mouse enters one of the text fields.
Select a column menu header, select the filter option, move mouse over one of the filter text boxes. The filter popup is hidden.
This appears to be an error specific to chrome 55 (it was not evident in earlier Chrome version).
Hi,
I having problem generating a dictionary object out in a Grid Template, it is saying there a incorrect syntax.
Can anyone help me?
template: '<div id="#=ReferenceNumber#_#=CreateAward#">
<a href="#=EffectiveProcurementURL#" target="_blank">#=CreateAward#</a>
<img src="/images/navdown.gif" style="cursor:pointer;" onclick="toggleDisplay("#=ReferenceNumber#")" />
<ul>
# for (var key in OtherProcurementOption) { #
#=var value = OtherProcurementOption[key];#
<li><a href="#=value#" target="_blank">#=key#</a></li>
# } #
</ul>
</div>'
Hello,
I'm trying to use the drag and drop functionality in the scheduler. As the demo below
https://demos.telerik.com/aspnet-ajax/scheduler/examples/draganddropintegration/defaultcs.aspx?product=scheduler
Everything works fine with drag and drop. Now i'm trying to implement the sorting on the column headers in RagdGrid. After I click any column header the grid disappears . Like there is no data in the grid . I'm using the basic sorting functionality as in one of your demo applications. I also tried using the NeedDataSource. this time I'm getting the data same as not sorted. this is the following code sample i'm using to sort the grid data . Can please help me find a way around it.
Thank you
Protected
Sub
RadGrid1_SortCommand(sender
As
Object
, e
As
GridSortCommandEventArgs)
Dim
sortexpr
As
New
GridSortExpression()
sortexpr.FieldName = e.SortExpression
If
sortexpr.SortOrder = GridSortOrder.Descending
Or
sortexpr.SortOrder = GridSortOrder.None
Then
sortexpr.SortOrder = GridSortOrder.Ascending e.Item.OwnerTableView.SortExpressions.AddSortExpression(sortexpr)
RadGrid1.MasterTableView.Rebind()
ElseIf
sortexpr.SortOrder = GridSortOrder.Ascending
Then
sortexpr.SortOrder = GridSortOrder.Descending
e.Item.OwnerTableView.SortExpressions.AddSortExpression(sortexpr)
RadGrid1.MasterTableView.Rebind()
End
If