Telerik Forums
Kendo UI for jQuery Forum
0 answers
128 views
Hi ,

Is there any way to validate multiple control like below.
    // Initialize kendo validator 
    var tValidator = $("#feildUserName,#feildPassword,...").kendoValidator().data("kendoValidator"); 

In my scenario I have to validate few control for save operation and other set of control for update.

Ambica
Top achievements
Rank 1
 asked on 24 May 2012
0 answers
121 views
Hi friends,


I have created a tabstrip having five tabs with last tab with + symbol.
when i am clicking the + tab i have to create a new pop up window with details like input : tabname and ok button.
And when i enter in the  input box the entered text has to be the name of new tab.Can i do this using kendo ui

If possible please give me a example


Thanking you
srinivas
Top achievements
Rank 1
 asked on 24 May 2012
6 answers
425 views
Hi All,

What i have understood after going through some of the documents on Kendo UI in web is we need to use phonegap to get use of the native features of any operating system.However,i can not understand how Kendo mobile is helping us in deploying phonegap.
Petyo
Telerik team
 answered on 24 May 2012
2 answers
117 views
I have a URL link to a single packet non-array JSONP data.  I am having trouble configuring the Kendo DataSource to read it correctly.  I know it has something to do with the schema, but I am not finding a lot of documentation on the configuration parameters.  My JSON data looks like this:

{"results":{"data1":0.928287,"data2":0.966691,"data3":0.897367,"adataA":0.329710,"adataB":0.818630,"adataC":0.667666,"adataIA":0.983468,"adataIB":0.726931,"adataIC":0.848747,"active":0.616980,"active1":0.616980,"factor":0.553658,"efficiency":1.454451,"system":true,"alarm":true,"connect":false,"state":21.815668,"online":true},"timeoday":"5/4/20127:50 AM"}

I have verified that the JSON data is valid using JSONLint.  I have created a simple test HTML file to read this data from the service which looks like this:

<!DOCTYPE html>
<html>
<head>
    <title>datasource test</title>
    <script src="../../../js/jquery.min.js"></script>
<script src="../../../js/kendo.data.min.js"></script>
<script src="../../../js/kendo.dataviz.min.js"></script>

</head>
<body>  
        <div id="example">
            <script>
var dataSource = new kendo.data.DataSource({
transport: {
read: {
//url: "http://search.twitter.com/search.json?q=HTML5",
url: "http://localhost:8080/APEI_Snap/APEI_Data_Snapshot/1",
dataType: "jsonp",
type: "GET"
}
},
schema: {
data: "results"
},
change: function() {
var view = this.view();
alert(kendo.stringify(view[0]));  //I know view[0] is wrong since I don't have an array....
}
});
dataSource.read();
            </script>
        </div>
</body>
</html>

I need to be able to pulls out the individual data points, which I will eventually bind to the dataviz objects.  Can someone help me figure out how to setup the datasource?  Thanks for any help you can provide.

Mark
Alex
Top achievements
Rank 2
 answered on 24 May 2012
1 answer
137 views
I waste a lot my time on internet just to find a tutorial bind data php with combobox, I don't know why have just a few of tutorials combobox and can't did something I want.

Someone help me please, the combobox not show any data, this is my code. Thank you for reading my topic

var pCate=new kendo.data.DataSource({
                  
                    transport:{
                        read:{
                             
                            url:"../data/product_cate.php",
                            dataType:'json'
                        }
                    }
                      
                      
                 });
 $("#cbProductCate").kendoComboBox({
                      index:-1,
                      dataTextField: 'name',
                      dataValueField: "id",
                      dataSource:pCate
                      
                  });
               
Quang
Top achievements
Rank 1
 answered on 24 May 2012
0 answers
317 views
It would be nice if there was a way to have Auto-complete fire when the text box is cleared.  I found the following example which shows clearing the filter using a button but it would be cleaner if once the textbox was empty if auto-complete cleared the filter.

http://jsfiddle.net/krustev/5f3x4/4/ 

Thanks,
Shane
Shane
Top achievements
Rank 1
 asked on 23 May 2012
2 answers
210 views
Is there an easy way to add a custom drop down to the editor tool menu?

Thanks!

EDIT - To be more clear, I want to add a new combobox to the menu in the same style as the defaults.
Jeff
Top achievements
Rank 1
 answered on 23 May 2012
0 answers
174 views
Hi,

I have already created a new kendo.data.dataSource with success, and I am able to bind it to the KendoUI Grid on my page.

But when I try to dataSource.insert(0, [a : "b"]); it removes the data that was there previously.

My example code follows:
var tempSource = new kendo.data.DataSource({
     data: [{"ID":1,"Name":"Cliente 1","NameID":"1 - Cliente 1"},{"ID":2,"Name":"Cliente 2","NameID":"2 - Cliente 2"}]
});

This is how I'm binding to the grid:
$("#association-grid").kendoGrid(
{
                    height: 99,
                    columns:
                    [
                        {
                            field: "ID",
                            title: "ID"
                        },
                        {
                            field: "Name",
                            title: "Name"
                        },
                        {
                            field: "NameID",
                            title: "NameID"
                        }
                    ],
                    dataSource: tempSource
                });

This is how I add a new item:
tempSource.insert(0, { ID: "John Smith", Name: "Product Description", NameID: "123 1st Street" });

If I perform the add before binding the data to the Grid, I lose the first two items that were originally on the dataSource object.

In summary:
I have a pre-created dataSource binded to a Grid. I want to be able to add a new item to the dataSource, and then refresh the Grid so that the new item appears.

Thanks,

LCG
Luis
Top achievements
Rank 1
 asked on 23 May 2012
3 answers
95 views
I have a grid using a data source with serverAggregates and serverFiltering set to false. The first time the remote data endpoint is queried, everything is fine. However, after the data comes back, I manually set some aggregates. Then, on a subsequent call to dataSource.read(), all of the aggregates are sent to the server in the query string. I'm not sure what to do, but this seems like a bug and is causing me problems in that I actually reach the query string length limit.

A sample url looks like this, decoded:

http://localhost:57135/ReportData?filter[logic]=and&filter[filters][0][field]=IsContractor&filter[filters][0][operator]=eq&filter[filters][0][value]=false&aggregate[0][field]=May_01&aggregate[0][aggregate]=sum&aggregate[1][field]=May_02&aggregate[1][aggregate]=sum&aggregate[2][field]=May_03&aggregate[2][aggregate]=sum&aggregate[3][field]=May_04&aggregate[3][aggregate]=sum&aggregate[4][field]=May_05&aggregate[4][aggregate]=sum&aggregate[5][field]=May_06&aggregate[5][aggregate]=sum&aggregate[6][field]=May_07&aggregate[6][aggregate]=sum&aggregate[7][field]=May_08&aggregate[7][aggregate]=sum&aggregate[8][field]=May_09&aggregate[8][aggregate]=sum&aggregate[9][field]=May_10&aggregate[9][aggregate]=sum&aggregate[10][field]=May_11&aggregate[10][aggregate]=sum&aggregate[11][field]=May_12&aggregate[11][aggregate]=sum&aggregate[12][field]=May_13&aggregate[12][aggregate]=sum&aggregate[13][field]=May_14&aggregate[13][aggregate]=sum&aggregate[14][field]=May_15&aggregate[14][aggregate]=sum&aggregate[15][field]=May_16&aggregate[15][aggregate]=sum&aggregate[16][field]=May_17&aggregate[16][aggregate]=sum&aggregate[17][field]=May_18&aggregate[17][aggregate]=sum&aggregate[18][field]=Total&aggregate[18][aggregate]=sum&aggregate[19][field]=Difference&aggregate[19][aggregate]=sum

The columns listed are in my data source's aggregates, but they shouldn't be sent to the server.
Brian Vallelunga
Top achievements
Rank 1
 answered on 23 May 2012
5 answers
534 views
How do I update a piece of data in an existing dataset? The following is the code I have for updating and adding to an existing dataset, the add works correctly, but how do I make the update work?

function AddEntityToDataSource(entityset, entity) {
 
    var ds = GetDataSource(entityset);
 
    ds.add(entity);   
     
}
 
function UpdateEntityToDataSource(entityset, entity) {
 
    var ds = GetDataSource(entityset);
 
    entity = ds.get(entity.id);
 
}


John
Top achievements
Rank 1
 answered on 23 May 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
Form
View
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
AICodingAssistant
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
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?