Telerik Forums
Kendo UI for jQuery Forum
1 answer
104 views
Hi,

I have the following code:
<ul id="panelbar">
        <li>
            <span class="k-link k-state-selected">Grammer</span>
            <div class="panelItem">
                <textarea class="fillDiv">
                </textarea>
            </div>           
        </li>
        <li>
.
.
.

Which I initiate as a panelBar, but the div loses the class assigned. is this by design?!

I am trying to make the text area fit the panel width, I was able to do that using this kendo UI Dojo example, but when trying to use the same code on default Telerik MVC project it did not work. Any idea?

Thanks.



Kamen Bundev
Telerik team
 answered on 15 Jul 2014
1 answer
120 views
I'm currently experiencing an issue using filterable in conjunction with editable using c# and mvc.  After applying a filter and editing some data in a cell.  When the filter is removed, the cell that I edited no longer possesses the edited cell/k-dirty-cell class, but the data persists.  What's the best solution for this?  I would like for that class to remain after the filter is removed
Dimiter Madjarov
Telerik team
 answered on 15 Jul 2014
1 answer
319 views
Hi,

I am building a mobile app with KendoUI, and now we are asked to build a immediately message chat functionality in our app, I am wondering whether the current Kendo UI solution support that requirement or not? As now I haven't found such example on this site.

Regards,
Qiu,Juan
Kiril Nikolov
Telerik team
 answered on 15 Jul 2014
1 answer
103 views
hello everyone 
iam using the asp.net mvc grid and 
I want to disable the overlay effect when a user clicks on 'edit'In popup mode,
 is there a setting to do that?It looks like the default setting on pop up mode is
to use the overlay, and disable the rest of the page.

//my code //

@using mysite.Models

@(Html.Kendo().Grid<UserViewModel>().Name("users_grid").Columns(c =>{
c.Bound(u => u.UserID);
c.Bound(u => u.FirstName);
c.Bound(u => u.LastName);
c.Bound(u => u.Email);
c.Bound(u => u.Address);
c.Bound(u => u.Phone);
c.Bound(u => u.UserName);
c.Bound(u => u.UserTypeDisplay).ClientTemplate("#: UserType.Display #").Title("User Type");
c.Bound(u => u.Company);
c.Command(command => { command.Edit(); command.Destroy(); });
})
.DataSource(d=> d
.Ajax()
.Read("ManageUsersajax", "Account")
.Update(u => u.Action("UpdateUserData", "Account"))
.Destroy(x => x.Action("Delete", "Products"))
.Create(c => c.Action("Create", "Products"))
.PageSize(5)
.Model(m =>
{
m.Id(u => u.UserID);
m.Field( u=> u.UserTypeDisplay).DefaultValue(
ViewData["defaultUserType"]);

})
)
.Pageable()
.Groupable()
.Sortable()
.Editable(e => e.Mode(GridEditMode.PopUp)
)

.ToolBar(t => t.Create())
)

//my code //
Rosen
Telerik team
 answered on 15 Jul 2014
4 answers
241 views
Adaptive rendering. Seems neither the grid or the scheduler work well when in landscape on android 4.04

For the grid, the paging does not appear at all.  For the scheduler, the times of the day in day and week view are less then in portrait.

Thanks, Marty

Petyo
Telerik team
 answered on 15 Jul 2014
3 answers
740 views
I want to focus on the first input field while popup editing.  why this code is not working?
thanks.

​ $("#gdAccessSetup").kendoGrid({
dataSource: adminDataSource,
sortable: true,
pageable: true,
//height: 200,
edit: onGridEditingSetup,
toolbar: ["create"],
columns: [
{ field: "Username", title: "Username", width: "150px", attributes: { style: "text-align:left" }, editor: usernameAutoCompleteEditor },
{ command: ["edit", "destroy"], title: "&nbsp;", width: "200px" }],
editable: "popup"
});

function onGridEditingSetup(arg) {
arg.container.find("input[name='Username']").attr('maxlength', '20');
arg.container.data('kendoWindow').bind('activate', function (e) {
arg.container.find("input[name='Username']").focus();
})
}
Kiril Nikolov
Telerik team
 answered on 15 Jul 2014
1 answer
118 views
Hello,

I cannot switch view from inside an actionsheet. Please, check http://jsfiddle.net/dLsJa/1/

Button outside of actionsheet works. But if a link is inside of an actionsheet it does nothing.

Are there any workarounds?

Thank you
Kiril Nikolov
Telerik team
 answered on 15 Jul 2014
3 answers
251 views
I have an issue with Autocompletes whereby the suggestions drop-down box partially obscures the input box. This seems to only be an issue on MVC4 projects, when running the exact same code on an MVC3 project the display is fine. The attached image shows what's happening.

I have the latest version of kendo CSS and js files referenced within the project.

Can you let me know which part of the CSS needs to be tweaked in order to rectify this issue?

Thanks
Rick
Top achievements
Rank 1
 answered on 15 Jul 2014
8 answers
139 views
Hi there,

don't know if I miss anything, but my case is that when I am trying to get the current cancelled edit item, the values in the e.model is not restored back to the orignial values before edit.

Using "console.log(e.model)", it looks like the model is restored to the original one, but if you write out a value, e.g. "console.log(e.model.comment)", the "comment" value is not retored back to the orginial value, but the edited value before cancelling. Please see the attached screen shot for details.

Need urgent help from your guys, anyone could help?

Regards

Zhonghai
Nikolay Rusev
Telerik team
 answered on 15 Jul 2014
1 answer
140 views
Hello,

I am trying to use the editor in an mvvm mobile web app.
It works in firefox as seen in the attached screenshot.
In chrome however it comes up with an error message : Cannot read property '0' of undefined

Both firefox and chrome are updated to the latest version.
the editor is configured like this : 

<textarea data-role="editor" data-tools="['bold']" data-bind="value: selectedContact.ContactNotes" class="stdTextArea"></textarea>

Any idea what's going on ?
Atanas Korchev
Telerik team
 answered on 15 Jul 2014
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
Licensing
PivotGridV2
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?