
Hi,
Wondering how we can add reorder animation when user is reordering the items in the radlistbox ?
A example would be the list in invisionapp.com as attached.
If cannot be done, I will submit a feature request.
Thanks.
Hi
I have a RadMenu that is populated from an xml file, the definition of the item is
<Item Text="Menu" Url="" >
<Item Text="Item 1" Url="~/test.aspx" Value="itemValue" />
</item>
and then on the clientClicking event I have
function onClicking(sender, eventArgs) {
var item = eventArgs.get_item();
var navigateUrl = item.get_navigateUrl();
var text = item.get_text();
var value = item.get_value();
alert("Text : " + text + " Value : " + value );
}
I get the text attribute but I always get null for the value attribute. I have been searching but found nothing on how to bind the radmenu to an xml using the value property.
THanks
Hi all,
I am currently building an application for one of our clients using some of the Telerik UI for ASP.NET AJAX controls. The deployment process is outlined in the Telerik online documentation (http://docs.telerik.com/devtools/aspnet-ajax/deployment/deploying-a-telerik-enabled-webapplication). So one thing is to include the required Telerik DLLs in the delivered solution.
In order to deliver a web application to a client that is making use of the Telerik UI for ASP-NET AJAX controls, is it sufficient to just deliver the web abblication including the Telerik DLLs or is it also necessary to prevent the client from being able to access the Telerik DLLs for his own purpose as this section in the Documentation suggests? http://docs.telerik.com/devtools/aspnet-ajax/deployment/protecting-the-telerik-asp.net-ajax-assembly
According to this post, every DevCraft license holder should now be able to download the source code for the Telerik.Web.UI dll so it can be included in the project and be hidded in the built project dll. http://www.telerik.com/forums/telerik-source-code#6GEkR8E0p0aXwdcdiokl6
Unfortunately I am not able to download the required source code as it is not visible in the downloadable files under Products & Subscriptions --> DevCraft Complete --> Download --> UI for ASP.NET AJAX --> Browse all product files
Kind regards,
Thomas
Hi!
Is it possible to have pop-up or edit form show up when adding new records to the grid or when "edit" button is clicked, but still have some cells "editable" in a batch edit mode fashion?
I was thinking of switching edit mode from code behind, when "Add" or "Edit" buttons are clicked, but when "batch" mode is enabled, there's no callback. Any ideas?
Thanks!
Andy
Hi Team,
Whenever i drag any Date field in Filter Field (RadPivotGridReportFilterField) , on click of filter icon it just refreshes and not showing the filter window,
Whereas if we use field of any other data type in Filter Field it works well, also if date field is added in Row/Column Field filter works fine.
After debug I just found "Object Reference not set to an instance for object" error at attached Stack Trace.
Just for information the columns bind to Pivot Grid are dynamic not static.
Thanks
Shilpa
Hello,
I am trying to export only selected rows in excel but while exporting, item.selected is always returning false in ItemCommand, GridExporting
case "ExportToExcel": e.Canceled = true; GridDataItem item3 = (GridDataItem)e.Item; if (item3.Selected) { string Str = item3["ITEM_ID"].Text.ToString(); } break;In GridExporting
protected void rgDeviceApproval_GridExporting(object sender, GridExportingArgs e) { foreach (GridDataItem item in this.rgDeviceApproval.MasterTableView.Items) { if (item.selected) { }}}
Hello,
I am trying to export only grid selected rows in excel. While doing that Item.selected is not working in Grid_Exporting Event. Why?
PLUS, is there any way in grid Item Command "ExporttoExcel" like
e.exportoutput = HTML; // In grid_exporting
by which i can modify excel output.?