Telerik Forums
Kendo UI for jQuery Forum
0 answers
88 views
Hi

I know its been asked a few times, but there has been no real solution offered.
Will you be adding a isRemovable option to the tabs soon, or at least allow templating so we can get a remove button in there with a click event?

Thanks
-Shane
Shane
Top achievements
Rank 1
 asked on 02 Nov 2012
1 answer
49 views
I'm trying to create a tablet type application with a similar look to the stock application in the dataviz demo. I can create the header display and the tabs, but once I try to put data underneath the tabs it display under the stip but above the tab block.

What I would like

application title

tabstrip1
-graph
tabstrip2
-graph

metrics

What I get

Application title

tabstrip1
tabstrip2

metrics

graph1
graph2
Iliana Dyankova
Telerik team
 answered on 01 Nov 2012
1 answer
149 views
I am having trouble getting the grid save function to work with a WebMethod. The short version of the code:


       transport: {
                :
                :
                    update: {
                        url: crudServiceBaseUrl + "/Update",
                        contentType: 'application/json; charset=utf-8',
                        dataType: "json",
                        type: 'POST'
                    },
                    parameterMap: function (data, operation)
                    {
                        if (operation !== "read" && data.models)
                        {
                            return JSON.stringify({ JSONparam: data.models });
                        }
                    }

     

My server side code:

       [WebMethod()]
        static List<bool> Update(string JSONparam)
        {
            List<bool> boolList = new List<bool>();
                   :
                   :
            return boolList;
        }


The server side code is never called. What should the "update" section of the transport look like? I probably have it wrong.
John
Top achievements
Rank 1
 answered on 01 Nov 2012
0 answers
74 views
Hi,

       How do I put a hyperlink on each picture base on the sample code in scrollview?  

        The sample code is using  <div> and I'm not sure where to put  the <a href=""> <a> to make it a hyperlink to navigate to other html page.


        Please help.

Thanks,
Core
Core
Top achievements
Rank 1
 asked on 01 Nov 2012
0 answers
150 views
Hi, 

I want to pass an array to the controller in MVC3 using the upload widget from kendo, here my code : 

        $("#uploadFiles").kendoUpload({
            showFileList: false,
            localization: {
                "select": "Browse new"
            },
            select: SelectionCompleted,            
            async: {
                autoUpload: false,
                saveUrl: "/MediaManager/UploadFile/"
            },            
            upload: function (e) {                
                var files = [
                    {
                        Title: 'Test',
                        FileName: 'MyFile',
                        Group: 'MyGroup',
                        Color: 'MyColor'
                    },
                    {
                        Title: 'Test2',
                        FileName: 'MyFile2',
                        Group: 'MyGroup2',
                        Color: 'MyColor2'
                    }
                ];
                e.data = { files: files };
            }
        });

And here my  model related to this JSON object : 

    public class FileUpload
    {
        public string Title { get; set; }
        public string FileName { get; set; }
        public string Group { get; set; }
        public string Color { get; set; }
    }    

And here my code in the controller : 

public ActionResult UploadFile(IEnumerable<HttpPostedFileBase> uploadFiles, IEnumerable<FileUpload> files) {}

The problem the array is empty.... What I'm doing wrong ?

Thank you
Hugo
Top achievements
Rank 1
 asked on 01 Nov 2012
1 answer
126 views
Hi,

I am currently evaluating your product and I am very content with the results. The only issue I have is regarding the filtering functionality. My PM wants to be able to filter the grid in an excel style filter. Syncfusion and DevExpress grids support this feature out of the box. All of the examples I have seen let me filter the grid based on some range of values. This is not good for the product I am developing. I would like to totally change the way the grid filter appears. Instead of the regular filter I want some of the fields to be searched by free text and some of them to be searched by a multiple selection combo box (combo box where each item has a check box on the left). Does your API support this kind of manipulation? If so I would be happy to see an example.

I found out that in another product you support this functionality. See the ASP.NET Grid Demo to understand what I need.

Thanks
Alexander Valchev
Telerik team
 answered on 01 Nov 2012
1 answer
111 views
Does anyone have any advice for how to get the data source to work via a cross domain call? I have not been able to get the JSON endpoint of my WCF RIA Service to work with JSONP. Any suggestions would be great.
Shaikh Ahmad
Top achievements
Rank 1
 answered on 01 Nov 2012
1 answer
51 views
Hello There!

I am currently developing a news application using kendo UI mobile and phonegap. one thing I want to ask that can I submit my app after development to ios store without any kendo license. I am not using any asp.net tool. I have json feed making with php and using Kendo UI tabstrip and listview to show news listing and a detail view.

plz reply soon as my app in approx complete.


Regards
Jibran Saeed



Vladi
Telerik team
 answered on 01 Nov 2012
0 answers
99 views
I have a page with multiple windows on it.  How can I get the ID of the window that I am currently dragging? 
Mark
Top achievements
Rank 1
 asked on 01 Nov 2012
8 answers
1.7K+ views
I have a Drop Down list initialized as:
$('#ddlSearchPNResults').kendoDropDownList({
        dataTextField: "Text",
        dataValueField: "Value",
        autoBind: false
    });

Then in my Ajax call I have the following:
$.ajax({
            url: '/Home/SearchPerson',
            type: 'POST',
            contentType: 'application/json; charset=utf-8',
            dataType: 'json',
            data: '{ "personName": "' + personName + '" }',
            success: function (retData) {
                if (JSON.stringify(retData) != "[]") {
                    var ddl = $('#ddlSearchPNResults').data("kendoDropDownList");
                    ddl.dataSource.data = retData;
                    ddl.refresh();

                    $('#divSearchPNResults').show();
                }
            },
            error: function (xhr, tStatus, err) {
                //alert(err);
            }
        });

But when I see the dropdownlist its still empty.

Please help.
Paul
Top achievements
Rank 1
 answered on 01 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
Gauges
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
OrgChart
TextBox
Effects
Accessibility
ScrollView
PivotGridV2
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?