Telerik Forums
Kendo UI for jQuery Forum
2 answers
948 views
Hi ,

I am trying to log the events in kendo grid, but I am getting the "kendoConsole undefined" error message. I found in a forum thread that says, I need "kendo.console.js" to support this feature in the kendo grid. I tried to find this file in my commerial kendo but could not see it.

Please tell me how to access "kendo.console.js" file.

Thank you,

Poonam
Christian
Top achievements
Rank 1
 answered on 08 Aug 2013
1 answer
5.8K+ views
I looked thru the ThemeBuilder but I can't edit the font and line height there.

Using the MVC Helper, can I specify the Line Height and Font Size of the text in the grid (header, body and footer) ?

I'm looking to get all the text and line height of the grid to be 75% of what there is there now natively.

Ian
Iliana Dyankova
Telerik team
 answered on 08 Aug 2013
3 answers
98 views
I have data that looks like this: [99.44], [99.52], [99.61], [8.52], [99.54], [99.61], [99.53], [99.64], [99.64].

As you can see, the 8.52 is the outlier. The difference between the 8.52 and the rest of the data is so huge that the differences between the data is not noticeable.

Is there a way for me to display an outlier in another color or below the horizontal axis?

Thanks.
Iliana Dyankova
Telerik team
 answered on 08 Aug 2013
1 answer
130 views
Can someone please help me with this. I've asked a few times and I just can't believe I'm the only one who has encountered this. I have never created a form where the same fields I'm editing are the same fields I'm inserting. It appears the kendo grid uses the same template to display the edit and the insert fields. Example: I may way to insert a status but not be able to update it. Again, i never came across an application I have developed where the same fields are used for both an insert and an update..

I used a template but again it keeps firing the same template for the edit and update. Frustrating, please help.

@(Html.Kendo().Grid(Model)
        .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.CodeID);
        columns.Bound(p => p.CodeDescription);
        columns.Bound(p => p.Title);
        columns.Bound(p => p.Status).Filterable(false);
        columns.Command(command => command.Edit()).Width(200);
        
    })
    .ToolBar(toolBar => toolBar.Create().Text("Add New Code"))
    
    .Sortable()
    .Scrollable()
    .Pageable()
    .Filterable()
    .Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
    .Resizable(resize => resize.Columns(true))
    .DataSource(dataSource => dataSource
        .Ajax()
        .Events(events => events.Error("error_handler"))
        .ServerOperation(false)
        
        .Model(model => model.Id(p => p.CodeID))
          .Update(update => update.Action("Edit", "CodeManager", new { classifications = @ViewBag.SelectedCatgory }))
          .Create(create => create.Action("Create", "CodeManager", new { classifications = @ViewBag.SelectedCatgory }))
                                )
          .Editable(ed => ed.Mode(GridEditMode.PopUp).TemplateName("_CodeEditor"))
        )

thanks
dennis
Chrys
Top achievements
Rank 1
 answered on 08 Aug 2013
3 answers
94 views
This is what I use and it's just so much code in my config code...I prefer no animations so it's everywhere.  Is there a shorter way to achieve the same thing?

animation: {
                close: {
                    effects: "none",
                    duration: 0
                },
                open: {
                    effects: "none",
                    duration: 0
                }
            },
Kiril Nikolov
Telerik team
 answered on 08 Aug 2013
7 answers
150 views
Hey,

We have added localization of the editor tooltips etc in a localization file (kendo.nb-NO.js, but it doesn't seem to work for backColor and imageAltText. Everything else works, but not these two. Is this a known problem? Below is some of the translations for the editor:

kendo.ui.Editor.prototype.options.messages =
  $.extend(kendo.ui.Editor.prototype.options.messages, {

  /* These work */
      bold: "Fet",
      italic: "Kursiv",
      underline: "Understreket",
      strikethrough: "Gjennomstreket",
      superscript: "Fremhevet",

      /* These two doesn't work */
      imageAltText: "Alternativ tekst",
      backColor: "Bakgrunnsfarge"
      
  });


Regards, 
Jan Erik
Dimo
Telerik team
 answered on 08 Aug 2013
1 answer
140 views
I'm just starting out with the Kendo UI Complete for MVC and ran across the Kendo Labs "kendo-ui-forms" project which got me thinking.  Since I'm using the MVC extensions, wouldn't the extensions do this for me already and detect the browser and output the appropriate form element type, be it an HTML5 element or a PolyFill?

So, the question is: does the MVC Extensions do this or are there plans for the MVC extensions to do this?
Sebastian
Telerik team
 answered on 08 Aug 2013
1 answer
167 views
Hi,

   can any one post pay pal sample code plz. is it possible to write paypal code in icenium? is it secure? we can get total code by the .apk file by converting the apk file into zip file. if paypal code written in this is it secure one or not? in native application .js files wont get by just converting apk file into zip. but in hybrid total code and designing we can get how to make it secure?
Steve
Telerik team
 answered on 08 Aug 2013
1 answer
84 views
We've decided to only use the ThemeBuilder for styling.

I haven't been able to change the background and text color of the footer using the ThemeBuilder. Is there a way?

I define my footer in the Column (MVC)

columns.Bound(e => e.Client)
       .FooterTemplate(@<text>
                            @foreach (var acct in accountsRollups)
                            {
                                @Formatters.FormatCurrency(acct.UnrealizedGainLoss)
                                <br/>
                            }
                        </text>)

Iliana Dyankova
Telerik team
 answered on 08 Aug 2013
1 answer
79 views
Using the ThemeBuilder I am almost done with my custom theme.

2 questions. 

How do I change the color of the Picker borders? See image
How do I change the hover background color of the calendar date at the bottom of the calendar? See Image The reason is that I have some how made the hover of the Today at the bottom of the calendar to be white on white and I need it to just underline, while keeping the color of the background. See image 
Iliana Dyankova
Telerik team
 answered on 08 Aug 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
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
Iron
Iron
Sergii
Top achievements
Rank 1
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
Iron
Iron
Sergii
Top achievements
Rank 1
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?