Telerik Forums
Kendo UI for jQuery Forum
1 answer
102 views
My company is working on a project where they are using Microsoft Dynamics AX7 as the platform. Dynamics doesn't currently support the addition of third party controls into their platform, though it does allow for extending existing controls or the creation of custom controls using other AX Native controls.

We have experimented with embedding a Kendo grid on an AX form with limited success. This is more due to our lack of knowledge of AX than issues with Kendo.

Does anyone have any experience integrating Telerik controls into the AX7 platform? Are there any plans to create controls that could be integrated with AX7?
Kiril Nikolov
Telerik team
 answered on 28 Jul 2016
4 answers
720 views
Hi, I'm looking for a way to catch when a user types in a value that is higher than the max of a numericTextBox before it gets trimmed down by the component. The point of this is to alert the user that they have entered invalid data and inform them of the max possible value.

For example, if I type 120 into a textbox with a max of 100, I would like to let the user know that they have gone over the max value.

Is there any way to handle such an event? I've already tried using the change method to no avail, as I am unable to access the original value typed into the textbox. The only thing I can think of is removing the max and min parameters on my numericTextBox and handling everything with a Kendo Validator, but this option seems pretty intensive for what seems like a relatively simple task.

Thanks for any help!
Mihail
Top achievements
Rank 1
 answered on 28 Jul 2016
5 answers
517 views
How to avoid temporary File upload while using Kendo().Upload() , Can we directly save to DB ?
Dimiter Madjarov
Telerik team
 answered on 28 Jul 2016
5 answers
1.0K+ views
Is there a Kendo UI MVC NuGet package available for download, especially the version 2014.2.716.440? I can only find Kendo UI Core and Kendo Professional on Nuget manager.  Thanks!
Arjun
Top achievements
Rank 1
 answered on 28 Jul 2016
1 answer
909 views

hi, i want to modify grid column format, i do it, but didn't work : 

var grid = $("#grid").data("kendoGrid");

grid.columns[1].format = "{0:C0}";

sample is here

Thank a lot 

 

Konstantin Dikov
Telerik team
 answered on 28 Jul 2016
2 answers
256 views

Hi,

I'm using kendo grid with resizable and scrollable on. The problem is when i double click the resize handle, the column gets resized but the scroll position changes and i have to scroll back to the resized column to see it.

http://dojo.telerik.com/oNOPe

Any help would be really appreciated.

Thanks

revanth
Top achievements
Rank 1
 answered on 27 Jul 2016
1 answer
225 views

I am trying to filter an Angular ComboBox with a dynamic set of filters.  However, when I add more than one filter, the combobox is empty.  I have tried setting this up on one of your examples, and still cannot get this to work.  Here is the code I wrote:

<div id="example" ng-app="KendoDemos">
    <div class="demo-section k-content" ng-controller="MyCtrl">
 
    <div style="padding-top: 1em;">
        <h4>Remote data</h4>
        <select kendo-combo-box
                k-placeholder="'Select product'"
                k-data-text-field="'ProductName'"
                k-data-value-field="'ProductID'"
                k-filter="'contains'"
                k-auto-bind="false"
                k-min-length="3"
                k-data-source="productsDataSource"
                style="width: 100%" >
        </select>
    </div>
</div>
</div>
 
<script>
  var filters = [];
  filters.push({ field: "CategoryID", operator: "eq", value: 4 });
  filters.push({ field: "ProductID", operator: "eq", value: 1 });
  angular.module("KendoDemos", [ "kendo.directives" ])
      .controller("MyCtrl", function($scope){
          $scope.productsDataSource = {
              type: "odata",
              serverFiltering: false,
              filter: { logic: "or", filters: filters},
              transport: {
                  read: {
                      url: "//demos.telerik.com/kendo-ui/service/Northwind.svc/Products",
                  }
              }
          };
  console.log($scope.productsDataSource.filter);
      })
</script>

If I remove either of the filters, the ComboBox displays exactly as expected.  What am I doing wrong?

Thanks!

Stefan
Telerik team
 answered on 27 Jul 2016
1 answer
84 views
Hello I'm trying to load a load-on-demand treeview on document.ready and trigger the select event of a child node according to a path like shows this jsbin:
http://jsbin.com/ESOjAmi/8/edit?html,css,output
The problem in my case is that exist child nodes that have the same id as parents, because are two different entities, so in those cases the parent is expanded but the children that I want to select and trigger the select event is not selected I guess because the method get in the datasource returns the first node that match the id.
The problem is in this part of the code in the jsbin example because in the case of the path [1,1] for example it expands the parent node but not the children with id 1 and i want to trigger the select event of the children node. In the other cases for example with path [1,2] the treeview is expanded and the select event of the child node with id = 2 is triggered correctly
 else {
        // otherwise select
        node = treeview.findByUid(ds.get(path[0]).uid);
        treeview.select(node);
        treeview.trigger("select", { node: node });
      }
Maybe someone can modify the JSbin example to reflect my case please?
Thank you
Dimiter Topalov
Telerik team
 answered on 27 Jul 2016
1 answer
101 views

Hi,

i have a grid which displays and updates the data. I have implemented paging with virtual scroll. I am facing issue where the records on the grid doesn't match with page number. 

Ex- If you scroll the grid or click on the bar below (attached screen shot) order id-10256 shows page as 11-15 but it is 6-8 ie 9th record.

May be because of this mismatch, when i edit a row and try to save, it doesn't retain the page.

Sample js i have created only for display of records. Please suggest , if i need to do anything for saving and retaining the page for saved record.

http://jsfiddle.net/Voswal/u1kwuqsu/

Thanks

 

Dimiter Topalov
Telerik team
 answered on 27 Jul 2016
1 answer
1.5K+ views
1. We are using Kendo read-only grid.http://demos.telerik.com/kendo-ui/grid/index

2. The Kendo grid will fetch latest data from backend at a regular interval.

3. We want to notify the user what has changed between current and last fetch where inserting new rows, updating or deleting existing rows constitute change.

Questions
1. Does Kendo datasource provide a built-in api which we could leverage to track changes?.

2. If aforesaid requirement is not supported out of box then how best this can be achieved by using Kendo api, jQuery and raw javascript. A code snippet demonstrating the notion will be appreciated.
Dimiter Topalov
Telerik team
 answered on 27 Jul 2016
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
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?