Telerik Forums
Kendo UI for jQuery Forum
1 answer
157 views
I have a grid and a custom button column. I am calling an another .Net page which has another kendo grid.


{command: { text:

 

"Devices", click: ShowDevicePage }, title: " ", width: "120px" },

 


 

                function ShowDevicePage(e) {

                        e.preventDefault();

                        var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
                        var url = "AssignDevice.aspx?DRC=" + dataItem.id;

                        $(document.body).append('<div id="myDynamicWindow"></div>');

                        var wnd = $("#myDynamicWindow").data("kendoWindow");

                        wnd = $("#myDynamicWindow").kendoWindow({
                            title: "Devices",
                            content: url,
                            width: "950",
                            height: "450",
                            visible: false,
                            modal: true,

                            close: function () {
        
        //Refresh the Grid
                                var childGrid = $(e.delegateTarget).closest(".k-grid").kendoGrid().data("kendoGrid");
                                childGrid.dataSource.read();

                                $(e.delegateTarget).closest(".k-grid").kendoGrid().data("kendoGrid").refresh();
                            
                            }

                        }).data("kendoWindow");
                               

                                wnd.center();
                                wnd.open();
                    }  //ShowDevicePage

 

 On close of the modal Window I need to reload the Grid which is in the calling page. How do i do that?

Daniel
Telerik team
 answered on 25 Feb 2013
1 answer
1.3K+ views
How would I disable the tabstrip based on whether a checkbox is checked or not?  Is there a way to disable the entire strip or do you need to loop through the tabs and disable each?

A code snippet would be greatly appreciated.
Iliana Dyankova
Telerik team
 answered on 25 Feb 2013
1 answer
176 views
I'm using the following

.DropDownListFor(m => m.countryId)
            .DataSourceAction("GetSomething")
            .DataSourceController("SomethingMethod")
            .IsEnabled(true)
            .Name("Something")
            .OptionLabel(this.LocalResources("OptionSelect"))
            .ServerFiltering(true))

I'm trying to use the search / select functions on the dropdown but when I do a console log of the dropdownlist obj I don't see it in there

e.extend.init {elementp.fn.p.init[1]_eventsObjectoptionsObjecttemplatefunctionulp.fn.p.init[1]}
  1. _arrowp.fn.p.init[1]
  2. _busynull
  3. _currentp.fn.p.init[1]
  4. _eventsObject
  5. _fetchfalse
  6. _focusedp.fn.p.init[1]
  7. _inputWrapperp.fn.p.init[1]
  8. _old""
  9. _oldIndex0
  10. _refreshHandlerfunction (){return a.apply(c,e.concat(k.call(arguments)))}
  11. _requestStartHandlerfunction (){return a.apply(c,e.concat(k.call(arguments)))}
  12. _textfunction anonymous(d) {
  13. _touchScrollerfalse
  14. _valuefunction anonymous(d) {
  15. _word""
  16. dataSourceo.extend.init
  17. elementp.fn.p.init[1]
  18. listp.fn.p.init[1]
  19. optionsObject
  20. popupe.extend.init
  21. selectedIndex0
  22. spanp.fn.p.init[1]
  23. templatefunction anonymous(data) {
  24. ulp.fn.p.init[1]
  25. wrapperp.fn.p.init[1]
  26. __proto__b
  27. var dropdownlist = $("#country").data("kendoDropDownList"); dropdownlist.select("United States");
    TypeError: Object United States has no method 'hasClass'
    1. argumentsArray[2]
    2. get messagefunction () { [native code] }
    3. get stackfunction () { [native code] }
    4. set messagefunction () { [native code] }
    5. set stackfunction () { [native code] }
    6. type"undefined_method"
    7. __proto__Error

Georgi Krustev
Telerik team
 answered on 25 Feb 2013
1 answer
168 views
I am trying to use the custom editor function of the grid to show a kendoAutoComplete control ..Please find the example attached for the same ..i am facing issue with focus and the keyboard navigation's like "tab".
Issue 1: After loading when we click on the cell it should convert to a kendoAutoComplete control .after typing some text .if i click again on the cell it is losing the focus, now if i have to modify the entered text its not possible.
Issue 2:After entering some text if i want to go to next column using key tab or any another key combination --not able to do that .. 


please assist me on this..



Thanks in advance
 
Daniel
Telerik team
 answered on 25 Feb 2013
4 answers
862 views
I own a small farm and am selling products from my farm to people locally.  I am also a software developer familiar with MVC.  I would like to create a slide show or other nice looking picture gallery from pictures from our farm.  I have looked at the window widget and thought it might be a good start.  Does anyone have any suggestions on how to make a nice looking gallery that is not terribly obtrusive?

Thanks,
John
Henry
Top achievements
Rank 1
 answered on 25 Feb 2013
1 answer
95 views
I'm trying to bind listview items containing checkboxes to observable array. Changes made in checking/unchecking checkboxes in listview are correctly propagated into data items. But when I try to change programatically the data in the array the listview is bound to the change is not propagated back to checkbox.
Here's a simple jsfiddle. The button "Toggle" should change the array data. The view title demonstrates that the changes in checkboxes are correctly propagated into array.

Am I missing something?

Thanks for help.
Norbert
Top achievements
Rank 1
 answered on 24 Feb 2013
5 answers
2.5K+ views
I have a Kendo grid that allows adding a new record. When the user adds a record it not only submits the current new record, but also resubmits all previously submitted new records. That is:
  • add first new record, submit record 1
  • add second new record, submit record 1,2
  • add third new record, submit record 1,2,3
  • etc.
This quickly creates MANY duplicate records in my DB.

Is this related to "batch"? I have it set "batch: false"

Thanks,
DJo

Edit:
I might have the problem. I'm using parameterMap with a switch on type; case "create" pushes a new object onto a changeSet array then does "return (JSON.stringify({ "changeSet": changeSet }))". I think this might just be building up an array of changes that grows with each create and gets sent each time.
Is it OK to splice the array after the return statement?
Michel
Top achievements
Rank 1
 answered on 23 Feb 2013
3 answers
458 views
Hi,

Is there a way to set the date in the footer to this format : 12 december 2011? For the months, how can i set in in my language?

Thx,

Kevin,
Christophe
Top achievements
Rank 1
 answered on 23 Feb 2013
2 answers
137 views
I have a mobile view that is populated via templates and a click handler of a listview datasource.  The datasource setup (and click handler) look like this:

http://jsbin.com/ihirin/1/edit

My problem is that when running on a mobile device, the first time that the detail UI is loaded, things look OK.  But on subsequent loads, two errors occur: 

1. the install button is not styled correctly (instead, it looks like the install button in the jsbin example above)
2. the scrollview for the screenshots doesn't appear to init correctly, all images are visible.

To me, this feels like a "did not initialize or [re]apply styles to the content when the view was shown for the second time. 

I suspect the answer is to re-apply the styling to the content containers, but since I've only been coding JS and Kendo UI for 3 days, I don't yet know how to do this. 

Pics of what I mean are available here:
https://plus.google.com/photos/109011173406009278052/albums/5847214628087409777?authkey=CP30nZmapuDRuwE

I'd love to know how to fix this problem.
John
Top achievements
Rank 1
 answered on 23 Feb 2013
1 answer
348 views
Hi Kendo Mastah,

How can I achieve that? Here is my code that doesn't work :(
It aims to trigger the right arrow key event by pressing the enter key while an item is active.

$(document).keyup(function (e) {
if (e.which == 13) {
	var press = $.Event("keypress");
   	press.ctrlKey = false;
        press.which = 39;
        $("#SourceColumnsMenu_mn_active").trigger(press);
}
});

Thanks!
Dimiter Madjarov
Telerik team
 answered on 22 Feb 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
Bronze
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
Bronze
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?