Telerik Forums
Kendo UI for jQuery Forum
5 answers
121 views
I am making a C# Razor MVC web app that is geared for Ipad. I am using JQuery mobile and Kendo UI. Kendo has presented me with some tough bugs that I cannot seem to fix.

My Kendo grid is double firing in Ipad (Safari). This is unnoticeable in desktop apps such as Google Chrome or Firefox but in Safari it is showing up. Is this a known issue or is my code wrong? I have 2 input forms that use Kendo grid that sit in a JQuery popup window.

Are there any known issues running JQuery Mobile and Kendo UI. The reason I ask is that I have have to comment out either the JQuery scripts that comes with Kendo or Vice versa to make everything play nice. This has come at a cost where JQuery pluggins such as Fittext which needs JQuery to run does not work.

attached are 2 pics of the problem forms (waste and downtime) and below is my _Layout.cshtml and Ham.cshtml (which is my view) code. Any help is greatly appreciated!

_Layout.cshtml

<!DOCTYPE html>
<html lang="en">
<head>
    @{

        if (Session["currentDate"] == null)
        {
            HttpContext.Current.Session["currentDate"] = DateTime.Today.ToString("yyyy-MM-dd");
        }

        if (Session["currentShift"] == null)
        {
            HttpContext.Current.Session["currentShift"] = 1;
        }

        if (Session["ReportType"] == null)
        {
            HttpContext.Current.Session["ReportType"] = "Daily";
        }
            
    }

    <title>@ViewBag.Title</title>
    <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width=device-width" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <link href="~/Resources/Triangle.ico" rel="shortcut icon" type="image/x-icon" />

    @Styles.Render("~/Content/mobileCss", "~/Content/css")
    @Scripts.Render("~/bundles/modernizr")
    @Scripts.Render("~/bundles/jquery", "~/bundles/jquerymobile")

    <link href="@Url.Content("~/Content/kendo/2013.1.319/kendo.common.min.css")" rel="stylesheet" type="text/css" />
    <link href="@Url.Content("~/Content/kendo/2013.1.319/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" />
    <link href="@Url.Content("~/Content/kendo/2013.1.319/kendo.silver.min.css")" rel="stylesheet" type="text/css" />
    <link href="@Url.Content("~/Content/kendo/2013.1.319/kendo.dataviz.silver.min.css")" rel="stylesheet" type="text/css" />

    @*<script src="@Url.Content("~/Scripts/kendo/2013.1.319/jquery.min.js")"></script>*@
    <script src="@Url.Content("~/Scripts/kendo/2013.1.319/kendo.all.min.js")"></script>
    <script src="@Url.Content("~/Scripts/kendo/2013.1.319/kendo.aspnetmvc.min.js")"></script>
    @*<script src="@Url.Content("~/Scripts/kendo.modernizr.custom.js")"></script>*@
    <script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>

    <script type="text/javascript">


        //prevents ipad vertical bounce scrolling
        document.ontouchmove = function (event) {
            event.preventDefault();
        }

        function UpdateDate() {
            UpdateSessionDate();
            UpdateSessionShift();
            UpdateSessionReportType();

            //$('#datepick').val('AT(Session["currentDate"])');

            var DatePageType = '@(ViewBag.DatePageType)';

                if (DatePageType == "Reporting") {

                    UpdateCharts();
                }
                if (DatePageType == "LiveView") {
                    UpdateViews($('#hoursaver').val());
                    UpdateLineViews($('#hoursaver').val());
                    UpdateOverallInfoBox($('#linesaver').val());
                    UpdateOverviewOfLabourChart()
                }
                if (DatePageType == "LabourEntry") {
                    // UpdateViews($('#hoursaver').val());
                    refreshLabourEntry();
                }

            }

            function UpdateShift() {
                UpdateSessionDate();
                UpdateSessionShift();

                //$('#datepick').val('AT(Session["currentDate"])');

                var DatePageType = '@(ViewBag.DatePageType)';

                if (DatePageType == "Reporting") {
                    UpdateCharts();
                }
                if (DatePageType == "LiveView") {
                    UpdateViews($('#hoursaver').val());
                    UpdateLineViews($('#hoursaver').val());
                    UpdateOverallInfoBox($('#linesaver').val());
                }
                if (DatePageType == "LabourEntry") {
                    refreshLabourEntry();

                }
            }

            function pullfrompeviousLoad(objThis) {
                var url = $(objThis).data('url') + '?hour=' + $(objThis).data('hour') + '&Shift=' + $(objThis).data('shift') + '&LineName=' + $(objThis).data('line');
                window.location.href = url;
            }

            function menuLoad(objThis) {
                var url = $(objThis).data('url');
                window.location.href = url;
            }

            function buttonLoad(objThis) {
                var url = $(objThis).data('url') + '?hour=' + $(objThis).data('time');
                window.location.href = url;
            }

            function saveLoad(objThis) {

                $('#labourform').submit();
                var url = $(objThis).data('url') + '?hour=' + $(objThis).data('time');
                window.location.href = url;
                return false;
            }

            // update date session data
            function UpdateSessionDate() {

                $.post('/SetSession/SetVariable',
                       {
                           key: "currentDate",
                           value: kendo.toString($("#datepicker").data("kendoDatePicker").value(), "yyyy-MM-dd")
                       });

            };

            // update shift session data
            function UpdateSessionShift() {

                $.post('/SetSession/SetVariable',
                       {
                           key: "currentShift",
                           value: $('#shift').val()
                       });

            };


            // update report type session data
            function UpdateSessionReportType() {

                $.post('/SetSession/SetVariable',
                       {
                           key: "ReportType",
                           value: $('#ReportType').val()
                       });

            };

            function UpdateButtons(h) {
                var arrayToModify = [];
                var i = 0, j, k, buttonsToCreate, buttonContainer, newButton;
                var buttonsToCreate = [];
                var now = parseInt(h);

                for (var j = (now - 7) ; j <= (now + 7) ; j++) {

                    if (j >= 0 && j <= 23) {
                        buttonsToCreate[i] = j;
                        i++;
                    }
                }

                buttonContainer = document.getElementById('ddShift');

                for (k = 0; k < buttonsToCreate.length; k++) {

                    if (buttonsToCreate[k] == parseInt(h) + 1) {
                        newButton.style.cssText = 'background-color: red;';
                    }

                    newButton = document.createElement('input');
                    newButton.type = 'button';
                    newButton.value = buttonsToCreate[k];
                    newButton.id = buttonsToCreate[k];
                    newButton.onclick = function () {
                        arrayToModify[arrayToModify.length] = this.id;
                        $('#hoursaver').val(this.id);
                        UpdateViews(this.id);
                        UpdateLineViews(this.id);
                    };

                    buttonContainer.appendChild(newButton);
                }
            };

            kendo.culture("en-US");

    </script>

</head>

<body>

    <div data-role="page" data-theme="b" id="index">

        <div data-role="header" data-position="fixed">
            <h1>@ViewBag.Title</h1>
            <a href="#nav-panel" data-icon="bars" data-iconpos="notext" class="ui-btn-left">Menu</a>

            @if (Request.IsAuthenticated)
            {
                @Html.ActionLink("My Account", "Index", "Account", routeValues: null, htmlAttributes: new { data_icon = "gear" })
            }
            else
            {
                @Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { data_icon = "gear" })
            }


            <div class="datepickerbtn" style="width: 212.5px;">

                @(Html.Kendo().DatePicker()
                      .Name("datepicker")
                      .Events(e =>
                          {
                              e.Change("UpdateDate");
                          })
                  .Format("yyyy-MM-dd")
                  .Value((String)Session["currentDate"])
                )
            </div>

            <div class="shiftpickerbtn" id="btnshift">
                <select id="shift" name="shift" onchange="UpdateShift()">
                    <option value="1">Shift 1</option>
                    <option value="2">Shift 2</option>
                </select>
            </div>


        </div>
        <div data-role="content">

            @RenderBody()
        </div>
        <div data-role="footer" style="text-align: center" data-position="fixed">
            @RenderSection("footer", false)
        </div>
        <div data-role="panel" data-position-fixed="true" data-theme="b" data-content-theme="d" id="nav-panel">
            <ul data-role="listview" data-theme="a" class="nav-search">
                <li data-icon="delete"><a href="#" data-rel="close">Close menu</a></li>
                <li><a data-url="@Url.Action("Index", "Home")" onclick="menuLoad(this)">Home</a></li>
                <li><a data-url="@Url.Action("Index", "LabourEntry")" onclick="menuLoad(this)">Labour Entry</a></li>
                <li><a data-url="@Url.Action("Index", "LiveView")" onclick="menuLoad(this)">Live View</a></li>
                <li><a data-url="@Url.Action("Index", "Report")" onclick="menuLoad(this)">Reporting</a></li>
                <li><a data-url="@Url.Action("Loin", "ScheduleBuilder")" onclick="menuLoad(this)">Schedule Builder</a></li>
                <li><a data-url="@Url.Action("About", "Home")" onclick="menuLoad(this)">About</a></li>
                <li><a data-url="@Url.Action("Contact", "Home")" onclick="menuLoad(this)">Contact</a></li>
            </ul>

        </div>

    </div>

    @RenderSection("scripts", required: false)
</body>
</html>


Ham.cshtml (my view)

@model IEnumerable<OPS.Models.LabourSchedule>

@{
    ViewBag.Title = "Ham";
    Layout = "~/Views/Shared/_Layout.cshtml";
    ViewBag.DatePageType = "LabourEntry";
}

<script>

    $(document).ready(function () {

        //set the value of the datepicker and Shift via session variables
        $('#datepicker').val('@(Session["currentDate"])');
        $('#shift').val('@(Session["currentShift"])');
        $('#shift').selectmenu('refresh');

        $('#lblWasteFormDate').html('@(Session["currentDate"])');

    });

        function Update_Data() {
            return {
                CurDate: kendo.toString($("#datepicker").data("kendoDatePicker").value(), "yyyy-MM-dd")
            };
        }

        function Read_Data() {
            return {
                LineName: "Ham",
                CurDate: kendo.toString($("#datepicker").data("kendoDatePicker").value(), "yyyy-MM-dd"),
                ShiftName: @(Session["currentShift"]) + ""
            };
        }

        function Read_DT_Data() {
            return {
                LineName: "Ham",
                CurDate: kendo.toString($("#datepicker").data("kendoDatePicker").value(), "yyyy-MM-dd"),
                ShiftName: $("#shift").val() + ""
            };
        }

</script>


@section footer
            {
    <div data-inline="true">

        <div data-inline="true">
            @if (ViewBag.curHour > 0)
            {                                    
                <a data-role="button" href="#" data-url="@Url.Action("Ham", "LabourEntry")" onclick="buttonLoad(this)"  data-icon="arrow-l" data-iconpos="notext" data-theme="c" data-inline="true" data-time="@ViewBag.prevHour"></a>                  
            }
            @for (var i = ViewBag.curHour - 7; i <= ViewBag.curHour + 7; i++)
            {

                if (ViewBag.curHour == i)
                {                            
                <a data-role="button" href="#" data-theme="b" data-inline="true">@i</a>                                
                }
                else if (@i >= 0 && @i <= 23)
                {                             
                <a data-role="button" href="#" data-url="@Url.Action("Ham", "LabourEntry")" onclick="buttonLoad(this)" data-theme="c" data-inline="true" data-time="@i">@i</a>                                          
                            
                }

            }
            @if (ViewBag.curHour < 23)
            {                                                          
                <a data-role="button" href="#" data-url="@Url.Action("Ham", "LabourEntry")" onclick="buttonLoad(this)"  data-icon="arrow-r" data-iconpos="notext" data-theme="c" data-inline="true" data-time="@ViewBag.nextHour">Arrow right</a>                    
            }
            <a href="#popupMenu" data-rel="popup" data-role="button" data-inline="true" data-transition="slideup" data-icon="grid" data-iconpos="notext" data-theme="b">Options</a>
        </div>

    </div>
    <div data-role="popup" id="popupDownTime" class="ui-content" data-theme="d" data-overlay-theme="a" data-dismissible="false" style="width: 80%; position: relative; margin: 20px auto;">
        <a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>

        <div id="update-message"></div>
        @using (Html.BeginForm(null, null, FormMethod.Post, new { id = "DTForm" }))
        {
                
            <input type="hidden" name="LineName" value="Ham" />
            <table>
                <tr>
                    <td colspan="3">
                        <label for="categories">Downtime Reason:</label>
                        @(Html.Kendo().DropDownList()
                                    .Name("DTCatId")
                                    .OptionLabel("Select downtime...")
                                    .HtmlAttributes(new { style = "width:90%;" })
                                    .DataTextField("Name")
                                    .DataValueField("ID")
                                    .DataSource(source =>
                                    {
                                        source.Read(read =>
                                        {
                                            read.Action("GetDowntimeCategories", "LabourEntry");
                                        });
                                    })
                            )
                    </td>
                </tr>
                <tr>
                    <td>
                        <label for="txt_DT_Duration">Duration (minutes):</label>
                        <input type="number" name="DT_Duration" pattern="[0-9]*" id="txt_DT_Duration" value="" />
                    </td>
                    <td>
                        <label for="txt_DT_People"># of People:</label>
                        <input type="number" name="DT_People" pattern="[0-9]*" id="txt_DT_People" value="" />
                    </td>
                    <td>
                        <label for="sl_Hrs_Type">Hours Type:</label>
                        <select name="Hrs_Type" id="sl_Hrs_Type" data-role="slider">
                            <option value="OT">OT</option>
                            <option value="REG" selected="selected">Reg</option>
                        </select>
                    </td>

                </tr>
                <tr>
                    <td colspan="3">
                        <label for="txt_DT_Desc">Description Detail:</label>
                        <textarea rows="12" name="DT_Desc" id="txt_DT_Desc"></textarea>
                    </td>
                </tr>
                <tr>
                    <td colspan="3">
                        <input type="submit" name="submit" value="Add Downtime" />
                    </td>

                </tr>
                <tr>
                    <td colspan="3">
                        @(Html.Kendo().Grid<OPS.Models.DownTime>()
                                .Name("DTGrid")
                                .Columns(columns =>
                                {
                                    columns.Bound(p => p.ID).Hidden(true);
                                    columns.Bound(p => p.DT_ID).Hidden(true);
                                    columns.Bound(p => p.HR_TYPE).Hidden(true);
                                    columns.Bound(p => p.LINE_ID).Hidden(true);
                                    columns.Bound(p => p.SHIFT).Hidden(true);
                                    columns.Bound(p => p.USER_ID).Hidden(true);
                                    columns.Bound(p => p.DT_REASON).Title("Reason");
                                    columns.Bound(p => p.DT_DETAIL).Title("Details");
                                    columns.Bound(p => p.DURATION).Title("Duration (mins)");
                                    columns.Bound(p => p.NUM_EFFECTED).Title("# of People");
                                })
                                 .ToolBar(toolbar =>
                                    {
                                        toolbar.Save();
                                    })
                                .Editable(editable => editable.Mode(GridEditMode.InCell))
                                .Sortable()
                                .Scrollable()
                                .Resizable(resize => resize.Columns(true))
                                .DataSource(dataSource => dataSource
                                    .Ajax()
                                    .Model(model =>
                                    {
                                        model.Id(p => p.ID);
                                    })
                                    .Batch(true)
                                    .ServerOperation(false)
                                    .Events(events => events.Error("error"))              
                                    .Read(read => read.Action("DT_Read", "LabourEntry")
                                                        .Data("Read_DT_Data"))
                                    .Update(update => update.Action("DT_Update", "LabourEntry"))
                                )
                            )
                    </td>
                </tr>
            </table>
            
        }
    </div>

    <div data-role="popup" id="popupWaste" class="ui-content" data-theme="d" data-overlay-theme="a" data-dismissible="false" style="width: 90%; position: relative; margin: 20px auto;">
        <a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>

        <div style="width: 100%;">

                <h3>Date: <label id="lblWasteFormDate"></label>
                    </h3>


            @(Html.Kendo().Grid<OPS.Models.LineProductWasteEntry>()
            .Name("WasteGrid")
            .Columns(columns =>
            {

                columns.Bound(p => p.Id).Hidden(true);
                columns.Bound(p => p.BucketWeight).Hidden(true);
                columns.Bound(p => p.LineCategoryId).Hidden(true);
                columns.Bound(p => p.LineCategoryProduct).Hidden(true);
                columns.Bound(p => p.LineProductId).Hidden(true);
                columns.Bound(p => p.ShiftId).Hidden(true);
                columns.Bound(p => p.SourceId).Hidden(true);
                columns.Bound(p => p.UserId).Hidden(true);
                columns.Bound(p => p.CategoryName);
                columns.Bound(p => p.ProductName);
                columns.Bound(p => p.Value);
                columns.Bound(p => p.SourceName);
                columns.Bound(p => p.Source);
                columns.Bound(p => p.Weight);
                columns.Bound(p => p.Weight2);
                columns.Bound(p => p.Weight3);
            })
            .ToolBar(toolbar =>
            {
                toolbar.Save();
            })
            .Editable(editable => editable.Mode(GridEditMode.InCell))
            .Sortable()
            .Scrollable()
            .Resizable(resize => resize.Columns(true))
            .DataSource(dataSource => dataSource
                .Ajax()
                .Model(model =>
                {
                    model.Id(p => p.Id);
                    model.Field(p => p.SourceName).Editable(false);
                    model.Field(p => p.CategoryName).Editable(false);
                    model.Field(p => p.ProductName).Editable(false);
                    model.Field(p => p.Value).Editable(false);
                })
                .Batch(true)
                .ServerOperation(false)
                .Events(events => events.Error("error"))        
                .Read(read => read.Action("Waste_Read", "LabourEntry")
                                    .Data("Read_Data"))
                .Update(update => update.Action("Waste_Update", "LabourEntry")
                                    .Data("Update_Data"))

            )

        )

        </div>
    </div>
    <div data-role="popup" id="popupMenu" data-theme="a">
        <ul data-role="listview" data-inset="true" style="min-width: 270px;" data-theme="a" class="nav-search">
            <li><a href="#popupWaste" data-rel="popup" data-position-to="window" data-transition="pop">Add Waste</a></li>
            <li><a href="#popupDownTime" data-rel="popup" data-position-to="window" data-transition="pop">Add Downtime</a></li>

        </ul>
    </div>

}










Petur Subev
Telerik team
 answered on 19 Jun 2013
6 answers
3.7K+ views
I want to add multiple command buttons (let's say, for View, Edit and Print) in a single grid column so that I see them for each row.
I was also able to add icon to custom command and I was able to easily add one command button in one column as explained in the custom command demo but I really want all three "buttons/icons" in the same column.

Any suggestions?
Alexander Valchev
Telerik team
 answered on 19 Jun 2013
1 answer
84 views
hello , i am new to kendoui , the server side wrapper : asp.net , jsp , php , is it only for web? not for mobile ? 
do you have any plan for mobile?
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
94 views
Hi,
Can you please see this website: http://kiwi.saykor.com/

Please, click on Harry Potter :) you will see the grid.
1 issue: The data is loaded from mongolab.com binded to the controls and it seems is here but not show on the grid as long as not click on any column header. Then the first issue is fixed automatically.

2 issue: see the dropdown Choose University. On the first load it seems is empty but is not. When you click it will see the index 1 is selected but is not show on the label as long as not click on the dropdown.

tested on last version of browsers: FF, Chrome and IE 

Last row resize problem: refresh the page pls. Click on Harry Potter, all is ok. Click on Morticia, add 2 students, all is ok. Click back on Harry Potter and now we have a space between last row and pagination/total row. This behavior is happen on IE10.
On Chrome and FF the first click on HP after refresh the page break the last row.

Maybe some of this problems is for missing configuration I am not sure. Please advise.

Best regards
Saykor
Top achievements
Rank 2
 answered on 19 Jun 2013
2 answers
162 views
Hi!

We are developing an app using kendoMobileDataviz version 2013.1.319 and jQuery 1.9.1. We have a view with a kendoChart and it is showing a bar chart, and the user can select from a drop down to have the data presented as a pie chart as well.

The problem is that when the user touches any of the bars or the pie, the App sort of hangs. Is there any way to disable the click events for the whole chart? The events we find in the documentation are 'plotAreaClick' and 'seriesClick', we have tried using e.preventDefault() on both the events but that doesnt help.

- Any idea on why touching the chart hangs the app?
- How do we disable touch events on the whole chart?


Thanks!
Andreas
Top achievements
Rank 1
 answered on 19 Jun 2013
1 answer
135 views
Hi,


I want to use Kendo upload into kendow window, but I am getting issue while uploading it. Below code for kendo upload in page.


ISSUE : I am getting multiple times response in "onSuccessWnd" function and also in my controller. So that same image will display multiple times. Please me solution for same.

It is working perfectly without window.


/********************** image.cshtml page  *********************/

@(Html.Kendo().Upload()
                  .Name("attachments")
                  .HtmlAttributes(new { id = "FilesToUploadWnd", style = "width:100%" })
                  .Messages(m => m.Select("select files from your computer… "))
                  .ShowFileList(false)
                  .Async(async => async
                            .Save("SaveWnd", "Log")
                        )
                  .Events(e => e
                            .Success("onSuccessWnd")
                          )
 
                )


/********************** javascript function  *********************/

function onSuccessWnd(e) {
 
        var url = "../FolderName/" + e.response.status.toString();
 
        var elem = document.createElement("img");
 
        elem.setAttribute("height", "70");
        elem.setAttribute("width", "70");
         
        elem.setAttribute("src", url);
 
        document.getElementById(appendID).appendChild(elem);
  
}
Please let know if any body have a solution for that.
Daniel
Telerik team
 answered on 19 Jun 2013
1 answer
42 views
Hi!

When the page is zoomed in Chrome and FF (haven't checked other browsers) at approximately 150%, and you try to slide over the tree nodes with a mouse from top to bottom, the whole tree shakes along with its nodes. It's subtle but very inconvenient. Can anything be done to get rid of this behavior? At 100% zoom it's cool. 

This can be reproduced even in a demo: http://demos.kendoui.com/web/treeview/index.html

Thanks in advance!
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
2.0K+ views
Inside selContentItem() shouldn't e.sender be the kendoListView and thus the same as (in this case) $('#contentListView').data('kendoListView')? When I break and debug, it looks like it (though == returns false), but e.sender.dataSource is empty.

$('#contentListView').kendoListView({
        dataSource: data
        , template: kendo.template($("#template").html())
        , selectable: "single"
        , schema: {
            model: {
                children: "Children"
                , id: "id"
                , hasChildren: "hasChildren"
            }
        }
        ,change: selContentItem
    });
  
function selContentItem(e) {
    //I would expect the following to return true and if it did (and similar logic followed), the next line would work nicely but it doesn't because the first line returns false. Why?
  
    console.log(e.sender == $('#contentListView').data('kendoListView'));
    console.log(e.sender.dataSource.view()[e.sender.select().index()]);
  
}
Michael
Top achievements
Rank 1
 answered on 18 Jun 2013
1 answer
7.6K+ views
Hi, 

I want to restrict the number of files that can be uploaded to the server for a single Upload click to a maximum of 20.

Is there any way to achieve this in the Kendo UI file upload control. ? 
Roberto
Top achievements
Rank 1
 answered on 18 Jun 2013
7 answers
399 views
Hello,

I have a few questions about globalization :
1) Why don't you use the browser language by default ? If the script of the current culture of the browser was added, why not use it by default ? For the moment, it's always 'en-US'
2) I added the script <script src="scripts/js/cultures/kendo.culture.fr.min.js"></script> in my application. If I set the culture to 'fr-FR' (kendo.culture("fr-FR")), it doesn't work, the default 'fr' script is not used (I think it should be).
3) Is it possible (and how) to use your globalization framework to localize our own strings ?

Cordially,
Kakone.
Georgi Krustev
Telerik team
 answered on 18 Jun 2013
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?