Telerik Forums
Kendo UI for jQuery Forum
1 answer
104 views
When I open themebuilder on top of my site all of the charts go blank to just seeing a generic axis.  This happens as soon as I run the applet.  Any suggestions on how to get this working?

Attached is a screenshot of what it looks like when i open themebuilder. Prior to opening it there are a series of mostly bar charts and pie charts.

Thanks
J
Iliana Dyankova
Telerik team
 answered on 04 Nov 2013
1 answer
265 views
I have used this before, and it worked, but for some reason it is ceasing to out of nowhere. I have a situation where I am using nested templates like this ...

using the following model, this doesn't display the second level results, for some reason. But SOMETIMES it does. I cannot reproduce the behavior consistently.

{
  "Id": null,
  "Name": "Test Item",
  "Prototypes": [
    {
      "Id": "items/prototypes/shield",
      "Name": "Shield",
      "Mutations": [
        {
          "Name": "Shield",
          "Measurement": 4,
          "Statistic": {
            "Id": "statistics/damage-reduction-physical",
            "Name": "Damage Reduction/Physical"
          }
        },
        {
          "Name": "Shield",
          "Measurement": 15,
          "Statistic": {
            "Id": "statistics/health",
            "Name": "Health"
          }
        }
      ],
      "Consumable": false,
      "Equipable": true,
      "Tags": [
        {
          "Id": "tags/shielding",
          "Name": "Shielding",
          "Description": "This  is capable of somehow shielding the user, either with mitigation or abilities"
        }
      ]
    }
  ]
}
<div
     data-role="listview"
     style="margin: 0px;"
     data-template="templates-admin-inherited-prototypes"
     data-bind="source: Prototypes"></div>
<script type="text/html" id="templates-admin-inherited-prototypes">
    <h2 data-bind="text: Name"></h2>
    <div
         data-template="templates-admin-inherited-mutation"
         data-bind="source: Mutations"></div>
  
</script>
<script type="text/html" id="templates-admin-inherited-mutation">
    ${ Statistic.Name }
</script>
Petyo
Telerik team
 answered on 04 Nov 2013
8 answers
253 views
Hello ,

We are trying to to make the tooltip of one of the series visible as false ( dont show it ) on the shared tooltip on Kendo Line chart.
Somehow with the given help/examples it is not working .

Secondly whenever we mouse hover on the Legend the shared tooltip shows upto and stick , which we definitely dont want ..

Can you please look into these two issues.

Thanks

Attached the sample.
Sebastian
Telerik team
 answered on 04 Nov 2013
4 answers
780 views
Tried this:

.k-scheduler-table td{
    height: 72px !important;
}.k-scheduler-table td{
    height: 72px !important;
}

The elements inspector shows my style is being applied, but the height of each day cell is still 105px.  How can I control the height?  These cells have no content so that's not an issue, just empty cells.
Vladimir Iliev
Telerik team
 answered on 04 Nov 2013
4 answers
786 views
Is it possible to set the column.values property after the grid has been initialized?

I tried this with no luck:

        var rankList = [
            { value: 1, text: "Rank 1" },
            { value: 2, text: "Rank 2" },
            { value: 3, text: "Rank 3" },
            { value: 4, text: "Rank 4" },
            { value: 5, text: "Rank 5" }
        ];
 
$kendoGrid.columns.filter(function (item) {
            return item.field === "Rank";
        }).forEach(function (item) {
            item.values = rankList;
        });
        //reset the grids columns
        $kendoGrid.setOptions({ columns: $kendoGrid.columns });
        $kendoGrid.refresh();

The grid was initially created using the MVC wrapper
   
.Columns(columns =>
{
    columns.Bound(p => p.UserAccountKey);
    columns.Bound(p => p.FirstName);
    columns.Bound(p => p.LastName);
    columns.Bound(p => p.EmailAddress);
    columns.Bound(p => p.Rank);
    columns.Command(command =>
    {
        command.Edit();
        command.Destroy();
    });
})
Kiril Nikolov
Telerik team
 answered on 04 Nov 2013
5 answers
290 views

I have a single page with a tabstrip of grids. I use popup editing to perform crud operations in each grid.

In my grid views I am sending the AntiForgeryToken via the data transport.
For example:
Create(create => create.Action("CreateObject", "Editor").Data("sendAntiForgery"))
which calls:
function sendAntiForgery() {
    return { "__RequestVerificationToken": $('input[name=__RequestVerificationToken]').val() }
}

In my EditorTemplates (from inside the Html.BeginForm()) I am calling @Html.AntiForgeryToken().

This was all working perfectly until I made a small change and broke everything. 
I removed a call to @Html.AntiForgeryToken() from a simple form in my main view. (Nothing to do with the tabstrip or grids). All of my CRUD operations in my grids were now failing - it was telling me the token wasn't passed. 

It turns out, if I simply placed a Html.AntiForgeryToken() in my main view somewhere it fixed everything - I could even remove the Html.AntiForgeryToken from my editor templates.

This doesn't seem right. Can somebody explain this behaviour?
Daniel
Telerik team
 answered on 04 Nov 2013
1 answer
192 views
Why is the list of selected files just one comma delimited string? I've tried both with and without a template.
Dimiter Madjarov
Telerik team
 answered on 04 Nov 2013
1 answer
97 views
I am a Kendo user, and a subscriber of the complete package. I subscribed mostly for the technical support, since our project is open source. That said, the technical support is extremely good, but there is one overall feature that is sorely lacking.

It is like herding cats to get back to the root of the kendo forums if I do any kind of "search" on the kendo site. The link to the Support area is gone from that view, and in order to get back to it, I have to go all the way back to the root site usually. This isn't generally a problem, just a minor annoyance.
Iva
Telerik team
 answered on 04 Nov 2013
1 answer
124 views
Does kendo mobile work with the MVC extensions?

I am guessing none of the razor extensions work, but what about the datasource extensions for controllers?

We currenly use Kendo Web with the MVC extensions (because the razor stuff is so limited and poorly documented compared to the regular Kendo Web), and it seems to work fine. I am hoping we could use the mobile stuff with it.

~Shea M.
Kiril Nikolov
Telerik team
 answered on 04 Nov 2013
7 answers
270 views
I can't find any demos\examples of binding to large complex data?...does it not support this scenario?

We have thousands of events to show so I can't have a single callback to pull in 2500 events, but instead want it to send up the visible date range so the service can return the events in that time range.

...I mean that would work for day, week, month, not sure how I could get that to work in Agenda...is there a "View more"?

Anyway...yes...no....lots of custom code?
Rosen
Telerik team
 answered on 04 Nov 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
Drag and Drop
Application
Map
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
DropDownTree
ListBox
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
LLM Kit
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?