Telerik Forums
Kendo UI for jQuery Forum
0 answers
93 views
I want to make the pie chart as large as possible vertically. I need to be able to push the labels that appear in the top and bottom areas to the sides. Do I mess with plotArea? Or how should I go about tweaking the configs for this?

Dina
Top achievements
Rank 1
 asked on 16 Sep 2012
7 answers
1.0K+ views
Hello;
I was talking to a prospect today about the benefits of Kendo UI and they asked me if Kendo UI has a full sample or links to sites that are using Kendo either in Ajax form or with ASP.Net MVC.

Many Web development tools offer full samples (multi pages) for example a shopping cart with products, listings, orders and  etc to showcase their products.

Thanks!
..Ben
Joshua
Top achievements
Rank 2
Iron
Veteran
Iron
 answered on 16 Sep 2012
2 answers
155 views
I am trying to bind a Kendo mobile button to a javascript model (kendo.observable).  I'd like to have the button disabled until the model says everything is valid.  

I've created a small jsFiddle that shows my problem.   Should the mobile button be "bindable" to a kendo observable model?

http://jsfiddle.net/jeremy_wiebe/SxYCb/ 

Thanks,
Jeremy Wiebe
Top achievements
Rank 1
 answered on 16 Sep 2012
4 answers
1.0K+ views

I'm using a row template defined as:

<script type="text/x-kendo-template" id="rowTemp" >
                      
<tr id="tr_#= id #" >
    <td>#= id #</td>
    <td>#= simbol #</td>
                                  
             <td><input type="checkbox" name="add_#= id #" value="#= id #" id="add_#= id #" class="add"  /></td>
                      
    <td align="center"><input type="button" class="info  k-button k-button-icontext" name="info" value="Info" id="info_#= id #" style="height: 26px; margin: 0px 2px; min-width: 64px;" /></td>
  
</tr>
</script>

 This button when clicked should open a new window. 

$(" .info ").click(function (e) { 
                     
     var infowindow = $("#info_win")
                      .kendoWindow({ 
                            title: "Info",
                            modal: false,
                            visible: false,
                            resizable: true,
                            width: 300,
          content: "someContent"
                        }).data("kendoWindow");
                                          
        infowindow.center.open();
                      
  });

In this post states that template should be defined also in the column definition. So my grid looks something like that:

$("#grid").kendoGrid({
         dataSource: {
                data: data,
                schema: {
                    model: {
                        fields:{
                             id: { type:"number"},
                             simbol: { },
                           add:{}                       
                           info:{},                     
                       }
                     }
               }
                columns: [{
                     field: "add",
                     template:'><input type="checkbox" name="add_#= id #" value="#= id #" id="add_#= id #" class="add"  />',
                    title: "Add",
                     },                     
                      
                 field:"info"
                  template: '<input type="button" class="info  k-button k-button-icontext" name="info" value="Info" id="info_#= id #" style="height: 26px; margin: 0px 2px; min-width: 64px;" />',
                  title: "",                        
                  }],
                  rowTemplate: kendo.template($("#rowTemp").html()),
});

But buttons are still not working.

Am I missing something? Please help.

Anica
Top achievements
Rank 1
 answered on 16 Sep 2012
1 answer
85 views
I downloaded basic sample and getting errors left and right. jQuery mobile loaded without problems.

Im testing in Eclipse/Android.
Nikita
Top achievements
Rank 1
 answered on 16 Sep 2012
11 answers
309 views
It appears as though attempting to use kendo.bind to bind elements to a kendo data source object does not work correctly with mobile controls. Specifically with list view, the mobile namespace is ignored which causes issues with the data source. I have noticed an extra namespace parameter in the bind function, but even if mobile namespace is passed as a parameter, the issue remains. I've also noticed that none of the mobile demos make use of the kendo data source object, rather they use the data source property of the control. Is this a limitation of the mobile controls or am I missing something? Thanks
James
Top achievements
Rank 1
 answered on 15 Sep 2012
5 answers
480 views
I make a simple treeview with some nodes and drag/drop possibility. Drag/drop working fine inise treeview and between nodes.
But, I can't drag node outside treeview. For example, I want drag nodes (=gather information about nodes) into DIV element.
I set handler for "drag" event, but this handler empty and don't modify node state. However, I can't drag node into external DIV at same page - node status automatically set like "k-denied".

How I can correct this behaviour? Is this by design or my mistake?
Denis
Top achievements
Rank 1
 answered on 15 Sep 2012
4 answers
649 views
Hi,

Is there a way to ensure that new rows always get added to the same position in the grid (either the top or bottom)?

At the moment, we are finding that if the grid has not been sorted a new row is always added to the top. But once the grid has been sorted, the new row seems to be added to a random position

Thanks

Chris
Volodymyr
Top achievements
Rank 1
 answered on 15 Sep 2012
0 answers
69 views

Android 2.3 simulator, KendoUI demo (Mobile overview), I have deleted the header section, display good on explore, but when I build it to PhoneGap native app, the TabStrip goes to top of android simulator.

Thanks for your help!

Damien
Top achievements
Rank 1
 asked on 15 Sep 2012
0 answers
122 views
Hello, I'm Develop Application Use SLIM PHP FRAMEWORK, IDIORM, PARIS, TWIG & KENDOUI.
I Get Response filteringServer with this : 
"filter":{
    "filters":[
        {"logic":"or","filters":[
            {"field":"NAME","operator":"eq","value":"Rosadi"},
            {"field":"NAME","operator":"eq","value":"Rahmat"}
            ]},
        {"logic":"or","filters":[
            {"field":"GENDER","operator":"eq","value":"L"},
            {"field":"GENDER","operator":"eq","value":"P"}
        ]}
    ],"logic":"and"}

and I want generate filtering Server Dynamically using php
<?
$Filter = $_REQUEST["filter"];
if(isset($Filter))
{
    foreach($Filter["filters"] as $FilterColumn)
    {
        $employeeList = $employeeList ->where($FilterColumn['field'], $FilterColumn['value']);
    }
}
?>

the php code above is wrong, make me get stuck.
can anyone help me how make filtering dynamically (the response implement in php code)  ?
sorry for my bad english.
Rizky
Top achievements
Rank 1
 asked on 15 Sep 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
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
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
PivotGridV2
ScrollView
Switch
TextArea
BulletChart
Licensing
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
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
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?