Telerik Forums
Kendo UI for jQuery Forum
0 answers
89 views
I am able to load menu inside the list view.I want to retrieve the selected item id value.I used onSelect event and i am able to get the selected item text using      
$(e.item).text();
can u tell me how to get the selected id value from the list view.
charan
Top achievements
Rank 1
 asked on 22 Aug 2012
1 answer
102 views
I am intenrested on the commertial licence of Kendo Mobile, and i am a little confused about the section of the developing team, i have my team of developers, like 4, and this year we are going to grow to 18, if i buy the licence of Mobile, $200, in the shoppingCart in the checkout i see that i can buy more than 1 licence, but i dont see how much people is covered per licence, anyone with info about this?
Donna
Telerik team
 answered on 22 Aug 2012
0 answers
111 views
Hi there,

First thing first: I am not a programmer, i know a bit of two about HTML and PHP, but no; i am not a programmer. I want to see things visualy :)

So, with that in mind lets continue.

I found out about Kendo UI a couple days ago, and am really suprised about the features, as i mentioned in the start; i am someone who likes to visualize things. At this moment i visualize things for me (and programmers) with Bootstrap (Foundation could also do the trick) Only i want my next project to include Kendo UI Web + DataViz (i havent purchased anything, first want to start with the web). Why? Beceause my new project needs:

#1. Speed (just like 99 of the 100 projects right?)
#2. Many Grid functionalitys (administration software..)
#3. Needs to be updateable easaly
#4. In the feature charts + mobile.

 Now my question, how can i make the frame of my project visualy with /for Kendo UI? "Normally" I would take bootstrap, get some grids, get some tables, navigation, setup some forms and voila.. you get the idea.

My goal is an fullwidth desktop application for administration tasks.

Any suggestion / tips?
HR
Top achievements
Rank 1
 asked on 22 Aug 2012
1 answer
60 views
We're evaluating Kendo Mobile. How fast it's DataSource implementation is. What it uses internally to get data from external server. I guess, it is jquery.ajax() method. Or it's some custom AJAX call implementation. Could someone please clarify?
Dimo
Telerik team
 answered on 22 Aug 2012
1 answer
277 views

   
THIS GRID IS LOCATED IN A PARTIAL-
@(Html.Kendo()
      .Grid<USARAFSyncMVC.Areas.Event.Models.PaxModel>(Model.EventPaxBreakDowns)
      .Name("PaxGrid")
      .DataSource(dataSource => dataSource
                                          .Ajax()


                                          .Model(model => model.Id(p => p.PaxBDID))
                                          .Create(update => update.Action("_InsertPax", "Event", new { Area = "Event" }))
                                          .Update(update => update.Action("_SavePax", "Event", new { Area = "Event" }))
                                          .Destroy(update => update.Action("_DeletePax", "Event", new { Area = "Event" })))
      .Columns(columns =>
      {
          columns.Bound(p => p.CountryTitle);
          columns.Bound(p => p.MilitaryPlanned);
          columns.Bound(p => p.MilitaryActual);
          columns.Bound(p => p.CivilianPlanned);
          columns.Bound(p => p.CivilianActual);
          columns.Command(command => { command.Edit(); command.Destroy(); }).Width(200).Title("Actions");
      })

      .Pageable()
      .Scrollable()
      .ToolBar(toolbar => toolbar.Create())
      .Sortable()
)

IT IS THEN LOADING DYNAMICALLY INTO THIS WINDOW-

 $("#windowcontainer").append("<div id='window'></div>");


    var mywindow = $("#window").kendoWindow({
        title: title,
        content: { url: url },
        visible: false,
        draggable: false,
        modal: true,
        animation: false,
        onclose: onclose,
        onopen:onOpen, 
        deactivate: function () {
            this.destroy();
        }
    }).data("kendoWindow");
    mywindow.center();
    mywindow.open();


It centers then the grid throws it off and it seems to anchor to the right of the screen. When I try to drag it, it expands, and it's right side stays anchored to the right side of the browser. When I resize, then I am able to drag it. 

But I do not want any of that to happen, I would like it to just center in the first place. 

BTW: It works fine without a grid!


Thanks





Dimo
Telerik team
 answered on 22 Aug 2012
0 answers
150 views
Hello I have an issue with intial sected index of tab strip

I tried:

$("#mobilePeriodChooser").kendoMobileTabStrip({
            selectedIndex: 2
        });

but this causing some duplications and still first is active.

I also tried:
$("#mobilePeriodChooser").data("kendoMobileTabStrip").selectedIndex = 2
But this one is showing error becuase data("kendoMobileTabStrip") is undefined.

So how to setup it ?

Marcin
Top achievements
Rank 1
Veteran
 asked on 22 Aug 2012
1 answer
91 views
Can I assign XML data to kendo DataSource without configuring the field of the object, like one we do with JSON data?
Alexander Valchev
Telerik team
 answered on 22 Aug 2012
1 answer
104 views
I have following code according to spec:

<a  href="#chartView?period=7" >This Year</a>
        <a  href="#chartView?period=8" >Last Year</a>
and
<div data-role="view" id="chartView" data-title="@ViewBag.Title" data-layout="databinding" data-show="initChart">

However wen I click on button I have error in console and nothing happens:

Error: Syntax error, unrecognized expression: #chartView?period=8
throw new Error( "Syntax error, unrecognized expression: " + msg );
jquery-1.8.0.js (wiersz 4512)

I'm not able to make my aplication working with spec.

It looks there were breaking changes in jquery 1.8.0, everything is working in 1.7.1, so please could you look?
Petyo
Telerik team
 answered on 22 Aug 2012
6 answers
5.7K+ views
I've just downloaded a KendoUI from your web-site, and I can see everything but binaries folder where, if I understand correctly, should be a Kendo.Mvc.dll. I can see /examples, /styles, /js, /source and /LicenseAgreement, but no /binaries.
So which download actually has a dll which is expected to be referenced from a project instead of Telerik.Mvc.dll?
pawan
Top achievements
Rank 1
 answered on 22 Aug 2012
3 answers
1.9K+ views
Hi:
I was getting the following:
Compiler Error Message: CS1061: 'System.Web.Mvc.HtmlHelper<dynamic>' does not contain a definition for 'Kendo' and no extension method 'Kendo' accepting a first argument of type 'System.Web.Mvc.HtmlHelper<dynamic>' could be found (are you missing a using directive or an assembly reference?)

Source Error:
Line 3: }
Line 4: <h2>TabStrip2</h2>
Line 5: @(Html.Kendo().TabStrip()
Line 6: .Name("tabstrip")
Line 7: .Items(tabstrip =>

Solution: Added
<configSections>
  <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
    <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
    <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
  </sectionGroup>
</configSections>
and:
<system.web.webPages.razor>
  <pages pageBaseType="System.Web.Mvc.WebViewPage">
    <namespaces>
      <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
        <add namespace="Kendo.Mvc.UI" />
    </namespaces>
  </pages>
</system.web.webPages.razor>
To my web config file.
Phil
Kushal
Top achievements
Rank 1
 answered on 22 Aug 2012
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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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?