Hello,
I have a grid with a custom editor on a column that uses a drop-down list. The dataSource of the drop-down list is built on-the-fly, and I set data-text-field, data-value-field and data-bind="value:XXX".
In Kendo 2015Q2 and Q3, clicking the cell to show the drop-down list will show an empty value (but the list will be properly populated). In any version prior to 2015Q2, clicking the cell will show a drop-down set to the correct initial value.
Would you have any workaround or advice?
Here is the DOJO: http://dojo.telerik.com/ofOdi. Change the library to either 2015Q2 or Q3 to see the difference.
Thanks,
Marc.
Are there plans to try to keep cell formatting (rich text stuff like like bold, underline, etc) when importing an excel file to the new spreadsheet component? I tried importing a basic spreadsheet using the online demo and it imported row background color, but bolded and underlined text in a cell was not imported - was just plain text.
If this is not currently planned, is it possible? If so, I'll start a request on which to vote to see if it gains traction.
I've created a map that adds shapes with a label in the middle similar to this example
http://dojo.telerik.com/eXUL/4
Around the label I've put a colored rectangle
//Create the Label Rectangle Area
var draw = kendo.drawing;
var Rect = kendo.geometry.Rect;
path = draw.Path.fromRect(new Rect([labelX - 5, labelY - 2], [label.bbox().width() + 10, label.bbox().height() + 4]), {
fill: {
color: "#307496",
opacity: .8
}
});
//Render the rectangle for the label to sit on
e.layer.surface.draw(path);
// Render the label on the layer surface
e.layer.surface.draw(label);​
Is there a way to add a click function to this rectangle so I can open a window when it is clicked? Similar to how this example works with the click of the triangle
http://dojo.telerik.com/​
Hi,
I am using kendo grid with angular ​environment. One of the issue I am facing here is that I need to get the kendo grid id in the angular controller and then replace the header title with some value.
Here is the code I am using in controller
$("#​Test.kendoGrid th[data-field=DateSubmitted]").html("TestFrequency");​ ​//Tried using jquery
<div kendo-grid="​Test.kendoGrid" k-options="​Test.kendoGridOptions" k-ng-delay="​Test.kendoGridOptions"></div>
As in above, the kendo grid has field 'DateSubmitted' and the title initially while page load is 'Submission Date'. Now on some event, I need to change the title.
But the title is never replaced. Its seems the kendo gird id is not found using jquery.
Let me know if there is any way to accomplish this.
Thanks.
Lets say I have three dropdown lists that are cascading. The way my data works, sometimes when you select something ​dropdown #2, the​n dropdown#3 will not have any items in it, because none of them match the value in dropdown #2.
Is it possible to make it so that the third list remains disabled if there are no items in it after selecting from the second list? Right now it becomes enabled because dropdown #2 has a selected value, but then when you click on it, it's empty.
I am using AngularJS, if this makes any difference.
We upgraded our application from Q2 to Q3 build 2015.3.930 this week. Our select event handlers for ComboBoxes are no longer respecting e.preventDefault(). We use this technique to display a confirmation dialog in certain cases.
I recreated the issue in the dojo to confirm the issue exists in the Q3 ​release and not the Q2 release: http://dojo.telerik.com/olIsi
fabric.bind("select", function(e){ e.preventDefault(); });
This pops up over the text box, because we are in a model popup.
<div class="form-group"> <label class="col col-md-5">Enter part of Customer number</label> <div class="col col-md-7"> <input name="number" kendo-masked-text-box pattern=".{0}|.{3,}" type="text" ng-model="filterData.number" data-pattern-msg="{{resources.validation.minLength3}}" data-required-msg="{{resources.validation.required}}" ng-required="!filterData.name"> </div> </div>
​
Here the inspected source.
<span class="k-widget k-tooltip k-tooltip-validation k-invalid-msg" data-for="number" role="alert"><span class="k-icon k-warning"> </span> This field is required</span>
I need this to display to the right of the input box, not above it because it covers up other stuff that needs to remain visible.
Thanks