Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
63 views
Hi,
I am trying to implement demo from following link
http://demos.telerik.com/aspnet-ajax-beta/Diagram/Examples/overview/defaultcs.aspx#qsf-demo-source

script file having lots of errors as below
1) TypeError: kendo.dataviz.diagram.ArrowMarker is not a constructor
2)drawingElement is undefined.

So iam not able to render UI  and even if UI is rendered iam not able to align path connection text and shape text.
I am also trying to implement startcap and endcap properties but it has no effects in UI.

Iam using Telerik_UI_for_ASP.NET_AJAX_Setup_2014_2_724 trial setup.

Any help will be appreciated.

Kind regards
Ram Mahajan
Slav
Telerik team
 answered on 23 Oct 2014
3 answers
72 views
Have other radtextboxes on user control where I use RadCloudupload to upload images.  I am using RadCloudUpload1_FileUploaded server side event to manipulate the images. All works well accept the other radtextboxes lose there values after image upload.
A simple example:
<script type="text/javascript">
 
    function imagesUploaded(sender, args) {
                $find("<%= RadAjaxPanel1.ClientID%>").ajaxRequest()
       
            }
</script>
 
 <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Width="100%">
<telerik:RadTextBox ID="RadTextBoxReference" runat="server" Skin="MetroTouch" Width="100%" MaxLength="50">
                                </telerik:RadTextBox>
 <telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MultipleFileSelection="Automatic" MaxFileSize="4194304" AllowedFileExtensions="jpeg,jpg,gif,png,bmp" ProviderType="Azure" Skin="MetroTouch" OnClientFilesUploaded="imagesUploaded" OnClientValidationFailed="validationFailed">
                                                                                  </telerik:RadCloudUpload>
  </telerik:RadAjaxPanel>

Note I Switched from using Radasyncupload control to RadCloudupload.  I did not experience the same issue with radasyncupload.

Any help would be greatly appreciated.

Hristo Valyavicharski
Telerik team
 answered on 23 Oct 2014
1 answer
72 views
I have a tooltip manager same your demo : http://demos.telerik.com/aspnet-ajax/tooltip/examples/targetcontrolsandajax/defaultcs.aspx?product=tooltip

On the same page i put 2 RadDatePicker. Each times page load, DatePicker not work until i run tooltip on Radgrid.

Please show me how to solve it.Thanks
Huy
Top achievements
Rank 1
 answered on 23 Oct 2014
3 answers
461 views
Hi.
I need to show route between point that stored in the sql server database and find these threads
http://www.telerik.com/help/aspnet-ajax/map-client-side-data-binding.html
http://demos.telerik.com/aspnet-ajax/map/examples/functionality/cross-layer-integration/defaultcs.aspx
My problem is that in these examples rout point are in json file.
Please help me to bind shapelayer to database.
Thank you.
jaber
Top achievements
Rank 1
 answered on 22 Oct 2014
2 answers
182 views
I need to reverse loop through the parent nodes of a node to get the text of each node.  So if my node structure is parent->child1->child2 I need to go loop child2->child1->parent.  Any suggestions?
Tina
Top achievements
Rank 2
 answered on 22 Oct 2014
2 answers
124 views
I'm trying to export just the data entered in my edit form template and not the radgrid itself when a user has entered in all their information.

Can someone help me out with this? I've looked all over telerik forums and online and haven't found an example to figure this out.

Basically when a user clicks edit on a property, the user would add pictures and edit the sale template. Once they have completed this task and it's approved we want to be able to export this data into a pdf or excel to provide this to potential buyers.

Daniel
Telerik team
 answered on 22 Oct 2014
2 answers
150 views
Attached is an image that helps add a visual component of what is happening to a form that we have loading in a RadWindow.

The pop-up window does seem to load the style-sheets but doesn't apply all the styles.  ie.  RadButtons on primary form pick up the colors but in the RadWindow they do not.  We use a RadDropDownList on both pages and the primary screen picks up the style but the pop-up window does not. 

Any suggestions of why? 

If you were to look at the source of parent window and look at the style for the button it gathers the information from "Telerik.web.ui.webresource.axd" but in the pop-up it reads "Webresource.axd". 
Kurt Kluth
Top achievements
Rank 1
 answered on 22 Oct 2014
0 answers
99 views
Hi everyone,

I wanted to ask about binding data in CodeBehind by SQL - Is that possible? I tried many options and any of them don't work. If could somebody link a demo, which works on newest Visual Studio and Microsoft SQL Server Managment Studio or write some code - I will be glad.

Binding data from ASP.NET doesn't work. I'm using Iron Speed Designer. It generates some extra code, I've got error with InfiniteFrame (what's that? dunno).

I've read some articles about it and still nothing.

Thanks everyone

Kurt
Top achievements
Rank 1
 asked on 22 Oct 2014
3 answers
97 views
Is there any documentation/demos on programmatically creating radToolBarDorpDowns? I am creating a vb.net web application that has a radgrid and I will like to include a radtoolbar with the dropdown items generated from database values.  I am working in Visual Studio 2013.

Thanks
James
Top achievements
Rank 1
 answered on 22 Oct 2014
1 answer
77 views
Hi,

I am trying to show/hide the filter row on the grids initial load.  I have the following script set and based on the alert messages the code is running correctly but the filter row isn't being displayed when it should be.



Can you tell me what I am missing.

Thanks for you assistance.

Tracy
function GridInitialLoad(sender, eventArgs) {
    
    var masterTable = sender.get_masterTableView();
    var rbtFilter = $telerik.findControl(sender.get_element(), "rbtFilters");
    var i = 0;
    var result;
    var toggleList;
     
    if (rbtFilter) {
        toggleList = rbtFilter.get_selectedToggleStateIndex();
        switch (toggleList) {
            case 0:
                rbtFilter.set_toolTip('Show Filter Row');
                masterTable.hideFilterItem();
                alert('hide');
                break;
            case 1:
                rbtFilter.set_toolTip('Hide Filter Row');
                masterTable.showFilterItem();
                alert('show');
                break;
        }
         
    }
 
    var rbtGroup = $telerik.findControl(sender.get_element(), "rbtGrouping");
    if (rbtGroup) {
        toggleList = rbtGroup.get_selectedToggleStateIndex();
        switch (toggleList) {
            case 0:
                rbtGroup.set_toolTip('Show Group Panel');
                result = $telerik.$(".rgGroupPanel");
                for (i = 0; i < result.length; i++) {
                    result[i].className = "hideGroupPanel";
                }
                break;
            case 1:
                rbtGroup.set_toolTip('Hide Group Panel');
                result = $telerik.$(".hideGroupPanel");
                for (i = 0; i < result.length; i++) {
                    result[i].className = "rgGroupPanel";
                }
                break;
        }
    }
 
            
 
   }

<telerik:RadGrid ID="rgvMainGrid"       runat="server"                  DataSourceID="SQLDS_EmailAddresses"  
                    EnableEmbeddedSkins="true"         Skin="Office2010Silver"         EnableAjaxSkinRendering="true"        Height="550px"  Width="1230px"
                    EnableViewState="true"             AutoGenerateColumns="false"     AllowMultiRowSelection="false"     
                    AllowFilteringByColumn="true"      EnableHeaderContextMenu="true"  EnableHeaderContextFilterMenu="true"  ShowGroupPanel="true"  
                      
                    AllowAutomaticDeletes="false"      AllowAutomaticInserts="false"   AllowAutomaticUpdates="false"                                 
                    AllowSorting="true"                EnableLinqExpressions="false"   AllowPaging="true"  PageSize="100"    >                                 
                   <ItemStyle              Wrap="true"  />
                   <AlternatingItemStyle   Wrap="true" />
                   <ActiveItemStyle        BackColor="CornflowerBlue"/>
                   <EditItemStyle           Font-Size="10px" />
                    
                   <HeaderStyle            HorizontalAlign="Center"/>
                   <PagerStyle             AlwaysVisible="true"        Mode="NextPrevNumericAndAdvanced"/>
                   <EditItemStyle      BackColor="CornflowerBlue"/>     
                   <ClientSettings     AllowColumnsReorder="true"      ReorderColumnsOnClient="true"       ColumnsReorderMethod="Reorder"   AllowDragToGroup="true"  EnablePostBackOnRowClick="false"    EnableRowHoverStyle="false"  
                       <ClientEvents   OnGridCreated="GridInitialLoad" OnRowSelected="SetSelectedItem" />
                       <Resizing       AllowColumnResize="true"        EnableRealTimeResize="true"         ResizeGridOnColumnResize="true"  AllowRowResize="false" />
                       <Selecting      AllowRowSelect="true"/>
                       <Scrolling      AllowScroll="true"              UseStaticHeaders="true" />                       
                   </ClientSettings>
                   <GroupHeaderItemStyle Font-Size="11px"              Font-Names="calibri"                Font-Bold="true"  Height="12px"/>
                   <MasterTableView    Name="Users"                    DataSourceID="SQLDS_EmailAddresses"   DataKeyNames="EmailAddressID, EmailName"  ClientDataKeyNames="EmailAddressId, EmailName"
                                       Width="1213px"                  EnableViewState="true"              EditMode="InPlace"            CommandItemDisplay="Top"   TableLayout="Fixed"
                                       EnableGroupsExpandAll="true"    GroupLoadMode="Client"              EnableNoRecordsTemplate="true"  ShowHeadersWhenNoRecords="true" >                                                                                                             
                   <NoRecordsTemplate>There are no records that match the criteria you selected!</NoRecordsTemplate>
                    



Angel Petrov
Telerik team
 answered on 22 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?