Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
131 views
Hi ,


Could you please explain what is the major difference between ASP.NET AJAX chart and HTML5 based  Chart . Currently we are using Dundas Chart also we using Telerik Controls .Now we need to migrate Dundas to Telerik .Currently we have

Telerik.web.UI.dll - 2008.2.826.20
Telerik.QuickStart.dll-1.0.2827
Telerik.Charting.dll -2.0.4

What we need to do achieve the Bar, Column ,Pie , Stacked Column, Stacked Bar same as dundas . As the reference I could  find Bar, Column ,Pie ,  Stacked Bar but Stacked Column I could not find .so kindly guide me the  exact details of chart and how to achieve this .



Petar Kirov
Telerik team
 answered on 26 Jul 2013
3 answers
94 views
Hi, I have a RadEditor control which is returning "empty". The ID of the control is reComment and reComment.Content is returning empty, any ideas?

        <telerik:RadEditor ID="reComment" runat="server" EditModes="Design" ToolbarMode="ShowOnFocus" ToolsWidth="170px" Width="412px" Height="72px">
 
            <Tools>
                <telerik:EditorToolGroup>
                    <telerik:EditorTool Name="Bold" />
                    <telerik:EditorTool Name="Italic" />
                    <telerik:EditorTool Name="StrikeThrough" />
                    <telerik:EditorTool Name="Underline" />
                    <telerik:EditorTool Name="InsertUnorderedList" />
                    <telerik:EditorTool Name="InsertOrderedList" />
                </telerik:EditorToolGroup>
            </Tools>
        </telerik:RadEditor>
            <asp:Button ID="btSubmit" runat="server" Text="Valider" OnClick="btSubmit_Click" />
code:
        if (reComment.Content.Trim() != "") <<<<<<<< HERE RETURNING "EMPTY"
        {

The reComments is inside a Panel and is being declared inside onInit

        protected override void OnInit(EventArgs e)
        {
            Page.Init += delegate(object sender, EventArgs e_Init)
            {                
                    reComment = this.FindControl("reComment"as RadEditor;
 

thanks

Ianko
Telerik team
 answered on 26 Jul 2013
3 answers
318 views
Hi,

I am looping through the BatchEditCommand in vb and need to get the row index and column index of each row that was edited?  Is it possible?

            For Each item As GridBatchEditingCommand In e.Commands
                Dim editedRow = item

                iRowIndex = ?
                iColIndex = ?

                End Select
            Next


Thanks
Konstantin Dikov
Telerik team
 answered on 26 Jul 2013
10 answers
1.1K+ views
Hi All!

I was wondering if it is possible to filter from multiple columns?  For example you have columns: Name, Alias 1, Alias 2, Alias 3.  The three Alias columns are added to the RadGrid but are hidden.  When the User tries to filter on the Name column I would like them to be able to enter in values for Alias 1, Alias 2 or Alias 3 and get a result.  Is this possible?

I am especially interested in adding this functionality to the following demo:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandcombo/defaultcs.aspx

Thanks,
Mark
Mark
Top achievements
Rank 1
 answered on 26 Jul 2013
2 answers
120 views
I have a problem with EnableScreenBoundaryDetection in Chrome. (It does happen in Firefox and IE, but we're seeing it only rarely.)

I have RadComboBoxes that appears in a RadWindow.

All of them have EnableScreenBoundaryDetection turned on.

However, sometimes the RadComboBoxes at the bottom of the RadWindow do not expand "up". They expand "down" and the users cannot work with them.

So far, it appears to be random. Sometimes some of them work while others don't. 
screenshot attached.

 Can you advise on how to troubleshoot this?

Thanks
Plamen
Telerik team
 answered on 26 Jul 2013
1 answer
190 views
Hello!

So, I see we can define how many rows exist, but I am trying to get a different type of control then its current behavior.

I would ideally like to build 5 x 4 grid. basically
Tile1   Tile2   Tile3   Tile4   Tile5
Tile6   Tile7   Tile8   Tile9   Tile10
Tile11 Tile12 Tile13 Tile14 Tile15

Lastly, I am limited to a specific resolution (aiming for 800x600 with browser in fullscreen mode). So, we are trying to avoid scrolling.
Is this possible at this time?

I am very glad you guys added this RadTileList. Absolutely cool, and hope we can get it to work for us!

Thanks.
Marin Bratanov
Telerik team
 answered on 26 Jul 2013
8 answers
129 views
I am using a tooltip as a lightweight window/div to enter additional information when I drag drop from grid to grid or use a button to move an item from one grid to another. The tooltip should be centered over the 2nd grid(grdItemSplit).

The tooltip show up correctly until I select a row from the first grid or when I start to edit a row from the 2nd grid.  Then the tooltip is positioned in the wrong place.

here are my settings and here is a photo showing the differences.

<telerik:RadToolTip ID="RadToolTip1" runat="server" Modal="true" ShowEvent="FromCode"
            Position="Center" RelativeTo="Element" TargetControlID="grdItemSplit"
            HideEvent="FromCode" Title="Add Item To Split" ShowCallout="true" RenderInPageRoot="true">
more here...
</telerik:RadToolTip>


javascript:

<script type="text/javascript">
                //<![CDATA[
                function onRowDropping(sender, args) {
                    showToolTip();
                    args.set_cancel(true);
                }
                function showToolTip() {
                    var tooltip = $find("<%=RadToolTip1.ClientID%>");
                    window.setTimeout(function () { tooltip.show(); }, 1);
                }
                function CloseToolTip() {
                    var toolTip = $find('RadToolTip1');
                    toolTip.hide();
                }
                function OnCommand(sender, args) {
                    if (args.get_commandName() == "Moveit") {
                        args.set_cancel(true);
                        showToolTip();
                    }
                }
                //]]>
            </script>



Marin Bratanov
Telerik team
 answered on 26 Jul 2013
1 answer
135 views
I'm trying to use Progress area with ajaxfileupload. is it possible?


 <asp:AjaxFileUpload ID="fileUpload" runat="server"
                                    OnUploadComplete="UploadComplete"
                                  Width="700px" OnClientUploadCompleteAll="teste"
OnUploadCompleteAll="fileUpload_UploadCompleteAll"
OnUploadStart="fileUpload_UploadStart"
EnableTheming="True" />
Hristo Valyavicharski
Telerik team
 answered on 26 Jul 2013
4 answers
281 views
Hello,
 I want to validate file extension and ask user in a alert to continue or cancel upload with a invalid file extension if they choose to continue i need to upload files and if they choose cancel, I need to cancel the upload but how to have control  the uplaoding process or do we have any in built method to call stop upload on click of cancel by user.

Thank you

Shinu
Top achievements
Rank 2
 answered on 26 Jul 2013
1 answer
107 views
Is there an example of creating optgroups with the rad ajax dropdownlist
Bozhidar
Telerik team
 answered on 26 Jul 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?