Telerik Forums
Kendo UI for jQuery Forum
0 answers
49 views
Hi,
I'm sorry, i'm discovering kendo ui. I want to know if it's possible to add a step for increase a value in a numeric field which is in a grid ?
I tried :
 {field: "J1", title: "1",filterable: false,width:"45px", reorderable: false, format: "{0:0.0}", step:0.5 }, but it doesn't work
Thanks for your answer
jules
Top achievements
Rank 1
 asked on 31 Aug 2012
7 answers
219 views
I'm looking at the the "foreignkey column" demo for the kendoui web grid.  It looks like you can set the "values" property of the column to some data.  My question is can you specify the "text field" and "values field" of the dropdown or does the format of the JSON data have to be "value" and "text"?

demo JSON:
var categories = [{
                    "value": 1,
                    "text": "Beverages"
                },{
                    "value": 2,
                    "text": "Condiments"
                },{

Rosen
Telerik team
 answered on 31 Aug 2012
0 answers
261 views
Hello 

What is the different between Content and LoadContentFrom properties of Kendo UI's Window contorl.  I have two button in Home page.  Each button have separate window control to call corresponding partial view.  If i use content method, the customer index loaded initially, ie at the time of page load.  If i use LoadContentFrom, the DOM controls gets loaded when the window gets visible.  

For example, 
@(Html.Kendo().Window()
        .Name("CustomerWindow")
        .Title("Customer")
        .Content(@<text>
    @Html.Partial("../Customer/Index")
    </text>)
        .Draggable()
        .Resizable()
        .Width(736)
        .Visible(false)
    )

and 

@(Html.Kendo().Window()
        .Name("CustomerWindow")
        .Title("Customer")       
            .LoadContentFrom("../Customer/Index")
        .Draggable()
        .Resizable()
        .Width(736)
        .Visible(false)
        .Modal(true)
    )

I think its lazy loading concept,  but I don't know the exact difference. 


thanks
Santhosh
Santhosh
Top achievements
Rank 1
 asked on 31 Aug 2012
2 answers
208 views
Hi  All,

I am new in Kendo UI with MVC3. I am unable to create below sample page , request to help and provide sample code for below screen using Kendo with MVC3 Razor view. Very Urgent


Murali
Top achievements
Rank 1
 answered on 31 Aug 2012
1 answer
143 views
I defined a panelbar on left and a grid to right.
and I expand the panelbar,the grid's toolbar expand the same time.Is this the css problem?
I repeat it on jsFiddle http://jsfiddle.net/9Aj9E/4/ 
Vladimir Iliev
Telerik team
 answered on 31 Aug 2012
1 answer
489 views
Hi,

I'm looking to use Kendo UI with PhoneGap to create a mobile app. I have PhoneGap working fine but when I copy and paste KendoUI's "styles" and "js" folders into the assets folder of the Eclipse project several .min.js files throw syntax errors! I downloaded and used: "kendoui.trial.2012.2.710"

"Syntax error on token ",", ; expected kendo.all.min.js /KendoUI_BaseTemplate/assets/js line 8 JavaScript Problem"
"Syntax error on token "}", ; expected kendo.dataviz.min.js /KendoUI_BaseTemplate/assets/js line 8 JavaScript Problem"
etc...

In total there are 462 syntax errors where Eclipse expects a different symbol instead of the given symbol. Does this mean the files are corrupt or Eclipse is just being funny as usual? Is there a way to suppress the errors as the application won't compile until the errors are dealt with?

Any help would be great,
Tom
Petyo
Telerik team
 answered on 31 Aug 2012
0 answers
194 views
Is it possbile with the actual Kendo UI widgets to create a photo gallery like the one we find in Facebook? I am thinking about something where we can pass an array of photos URL's with their respective titles, then it build a gallery where we can click to see a bigger image, and navigate among them by clicking in their sides or using keyboard arrows.

If this is not possible, a photo gallery widget could be a nice new feature in Kendo UI.
Edemilson
Top achievements
Rank 1
 asked on 30 Aug 2012
0 answers
163 views
I have a kendo combobox that I'm populating from a remote json call.  I'm also binding a json object to dom elements.  Is there a way to bind the selected value of the combobox with the id returned from the json \ viewmodel object?  Thanks

<input type="hidden" data-bind="value:Id" /><br />
         <input type="text" placeholder="First name" name="FirstName" maxlength="30" data-bind="value:FirstName" id="id_firstName" /><br />
         <input type="text" placeholder="Last name" name="LastName" maxlength="30" data-bind="value:LastName" id="id_lastName" /><br />
         <input type="text" placeholder="Email" name="email" maxlength="30" data-bind="value:Email" id="id_email" /><br />
         <input id="timeZones">
         <button data-bind="click: save" class="btn">Save</button>

$("#timeZones").kendoComboBox({
              index: 0,
              placeholder: "Select Time Zone",
              dataTextField: "DisplayName",
              dataValueField: "Id",
              filter: "contains",
              dataSource: {
                  type: "json",
                  transport: {
                      read: "/api/TimeZone/Get/"
                  }
              }
          });
Eric
Top achievements
Rank 1
 asked on 30 Aug 2012
2 answers
162 views
Hi guys,

Not too sure about this one, but for some reason the tabstrip icons are not showing on certain Blackberry handsets. I haven't loaded apps on those specific handsets, they just don't show while I'm using Ripple emulator to develop.
Martin
Top achievements
Rank 1
 answered on 30 Aug 2012
0 answers
145 views
Hello,

as demonstrated in this fiddle, using an existing HTML table for Grid definition will only work when creating the grid using the $("#grid").kendoGrid() syntax. Using the kendo.bind($("#grid"), viewModel) syntax will result in the column headers being overwritten. I've traced this to the call to Grid.setDataSource() from the MVVM framework. Stacktrace as follows (version 2012.2.823):

Widget.extend.setDataSource (kendo.all.js:16654)
binders.widget.source.Binder.extend.refresh (kendo.all.js:7740)
Class.extend.bind (kendo.all.js:7109)
BindingTarget.extend.applyBinding (kendo.all.js:7931)
BindingTarget.extend.bind (kendo.all.js:7910)
bindElement (kendo.all.js:8065)
bind (kendo.all.js:8088)
(anonymous function) (gridtest.html:23)

As a matter of fact, any call to Grid.setDataSource() after widget initialization will result in the headers being overwritten. The method used to detect a pre-existing HTML header (in Grid._thead()) fails when that header has been moved to a separate div by the init code. 

On the assumption that the table header should only be initialized once, the attached patch for kendo.all.js seems to fix this immediate problem by checking for an existing thead. I've not done any testing beyond verifying that the table headers are kept intact, so breakage elsewhere may occur.

Regards,
Stig
Stig
Top achievements
Rank 1
 asked on 30 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
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?