Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
324 views
I've been using some of your competitors' diagramming products over the years and was pretty excited to see this addition to the Telerik toolset.

That said, there are several features that prohibit my move to the Telerik diagram control. Is there a feature roadmap to help me see if/when these might appear?

Note: its possible these are implemented somehow and I just missed how to do it - if so, please advise!

#1: Click and double click events on a shape.
#2: Events associated with creating connections between shapes (I need an event that fires when the "drag" operation starts and one that fires when the user finishes by selecting the target shape).
#3: Fix the bug that prohibits the EndCap feature from working.
#4: Allow shapes to be dragged and dropped between 2 diagram controls (and fire the associated drag-drop events on the target diagram container).
#5: Click/double click event on connections.
#6: Shapes currently support text inside the shape - how about text as a label above (or below) the shape. I want to have shapes in the form of small circles that have a text label above showing the user what the shape represents.

Whew - these are the top ones I can think of right off. I'm sure there are more - but if your new control could support the above, I get to drop the other vendor solutions and go 100% Telerik.

Thanks!
Dave
Vessy
Telerik team
 answered on 16 Mar 2016
3 answers
284 views
Hi,

i'm trying to do the following.....

I want to validate a username is unique from a RadTextBox and handle TextChanged which calls the database.  What I subsequently need to do is get the client to display a radalert or a radwindow to display saying the name is already in use.

I have a RadAjaxManager, and enabled the textbox within it.

In textchanged handler I try to inject a radalert

RadAjaxManager1.ResponseScripts.Add("radalert('UserName is already in use!')");

but it never displays.

Is this something that is possible, or not?

Regards
Paul.



Bijoy Mohanta
Top achievements
Rank 1
 answered on 16 Mar 2016
27 answers
1.3K+ views
I just update my project from radControls for ASP.NET Ajax Q2 2012 to Q3 2012 and now I am getting the following error:

Telerik.Web.UI.RadFormDecorator with ID='RadFormDecorator1' was unable to find an embedded skin with the name 'WebBlue'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false.


I checked and I DO have a reference to Telerik.Web.UI.Skins.dll in my project! I even tried deleting and re-adding the reference with no luck. I checked the version of the Telerik.Web.UI.Skins.dll Telerik.Web.UI.Skins.dll file in my /Bin folder and it is the correct version. I've restarted Visual Studio repeatedly and it doesn't help!
Maria Ilieva
Telerik team
 answered on 16 Mar 2016
3 answers
221 views
Is there any way to get the number of nodes an object of type RadDropDwonTree contains?
Nencho
Telerik team
 answered on 16 Mar 2016
2 answers
155 views

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.

 

HSLaw
Top achievements
Rank 1
 answered on 16 Mar 2016
0 answers
157 views

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

 

 

 

 

 

 

Alejandro
Top achievements
Rank 1
 asked on 15 Mar 2016
3 answers
625 views

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

 
Pavlina
Telerik team
 answered on 15 Mar 2016
5 answers
374 views

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

Andy
Top achievements
Rank 1
 answered on 15 Mar 2016
3 answers
77 views

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

Maria Ilieva
Telerik team
 answered on 15 Mar 2016
3 answers
234 views

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)
            {
           }
}
}

Atif
Top achievements
Rank 1
 answered on 15 Mar 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?