We are using the masked text box along with a phone number validator in asp.net mvc. We are running into an issue with the phone number autocomplete in chrome where if there is a phone number already stored in the autocomplete it disables the mask resulting in a condition like the attached screenshot. Where the user is unable to fix the phone number. The field name is "Phone". Do you have any suggestions or workarounds for this issue?
Can I make a kendo grid a draggable item? What I would like to do for example is have 2 or more grids on a page and the user can click the header of the grid and move them around to different drop zones on the page. Like a customized widget dashboard.
Is this possible?
Thanks,
Coty
Hi,
Issue: Essentially if you use an optionLabel, the incorrect dataItem is pulled back using the event.item.index() as well as the event.sender.dataItem() methods.
Reproducible demo here: http://dojo.telerik.com/awona
Steps to reproduce:
1) Choose Maria, first real option in the drop down list.
2) Note at the top of screen, index 0 and dataItem is the optionLabel. It should be index = 1 or at the very least, dataItem should = Maria Anders.
Thanks
Hello! I'm developing a master/detail with two kendo grids, as you can see in this kendo dojo: http://dojo.telerik.com/EREHO/20
When you click on a row on top master grid, in the bottom detail grid appears the selected row "projected" in different way.
You can edit the fields in detail grid and this will affect also the master grid.
But there is an unexpected behaviour: looking at bottom field (InsertionDate) in detail grid, when you edit another field the name "InsertionDate" is replaced by the name of edited field, and also the red dirty corner is applyed always at bottom field.
After some debugging I have managed to understand the something goes wrong inside function that handles 'save' event in detail grid, in particullary in these code lines:
row.set(prop, value);var selectedRow = $('#masterGrid').find("tbody>tr[data-uid=" + ctrl.selectedRowUid + "]");$grid.select(selectedRow);Is this some kind of kendo bug or am I achieving this behaviour in a wrong way? Do you have any suggestion for this issue?
Thanks!
Mattia Thiella
Hello,
I am fairly new to Kendo and front end development in general. I am working on trying to populate a grid using local data. My text editor is Sublime Text and when I try to view in browser, I get a blank screen. I tried it the code in Dojo and it works fine but I can't seem to view it in browser. Do I need to set up a local environment in order to view Kendo work?
Here is my code:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>VSP | Client Websites</title> <link rel="stylesheet" href="styles/main.css"> <link rel="stylesheet" href="styles/kendo.common.min.css"> <link rel="stylesheet" href="styles/kendo.default.min.css"> <link rel="stylesheet" href="styles/kendo.mobile.all.min.css"></head><body> <div id="grid"></div> <script> var clients = [ { clientLogo: "#", companyName: "Lowe's Home Improvement", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}]; $("#grid").kendoGrid({ columns: [ { title: "Client Logo", field: "clientLogo" }, { title: "Company Name", field: "companyName"}, { title: "Client ID", field: "clientID"}, { title: "Last Edited", field: "lastEdited"}, { title: "Last Edited By", field: "lastEditedBy"}, { title: "Status", field: "status"}], dataSource: clients }); </script> <script src="js/jquery.min.js"></script> <script src="js/kendo.all.min.js"></script></body></html>Is there a way to set a property autoHide to false in the GANTT Tooltip?
I found this answer
http://www.telerik.com/forums/gantt-tooltip-ignoring-tool-tip-properties
, but I don't found any options to configure the GANTT Tooltip to avoid autoHide
http://docs.telerik.com/kendo-ui/api/javascript/ui/gantt#configuration-tooltip.
Hello,
In my grid, I'd like to make the text in 'field: companyName' a clickable link. I have tried to change it to:
{ title: "Company Name", template: '<a href="#">#= companyName#</a>', width: "300px"}but have no luck. I have also searched around the forums but couldn't find the answer. Can anyone help me. Also, I am looking to add URL link to each client but am not sure how to do that either.
Here is my script code in its entirety.
<script>var clients = [ { clientLogo: "img/lowes.png", companyName: "Lowe's Home Improvement", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/verizon.png", companyName: "Verizon Wireless", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/mcdonalds.png", companyName: "McDonald's Corporation", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/att.png", companyName: "AT&T Wireless & Network Information", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/stjoseph.png", companyName: "St Joseph Healthcare System", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/proteinbar.png", companyName: "Protein Bar", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"}, { clientLogo: "img/invision.png", companyName: "InVisionApp", clientID: 123456, lastEdited: "02/15/2016", lastEditedBy: "Barbara Johnson", status: "In Progress"} ];$("#grid").kendoGrid({ columns: [ { title: "Client Logo", template: '<img src="#= clientLogo #" />' }, { title: "Company Name", field: 'companyName', width: "300px"}, { title: "Client ID", field: 'clientID'}, { title: "Last Edited", field: 'lastEdited'}, { title: "Last Edited By", field: 'lastEditedBy'}, { title: "Status", field: 'status'} ], dataSource: clients }); I would like to remove the ability to re-size the panes (the grid and the graph). I know this uses the Kendo Splitter widget, but I get really wonky results when I try to disable splitter resizable option.
$("#gantt").kendoSplitter({
panes: [ { resizable: false }, { resizable: false } ]
});
It completely messes up the gantt widget.
Any suggestions?
