Telerik Forums
Kendo UI for jQuery Forum
2 answers
861 views
We've used many photo up-loaders in the past, uploadify is our current choice.  However, I just bought the Nov30th v1, and wouldn't mind migrating most code to the various widgets KendoUi offers.  I've tried using firebug to figure out our own data handler (simple copy/paste at first and later resizing photos). We currently have uploadify producing nine sizes of photos for us ranging from thumbs to full size.

Can someone post a sample data handler (processUpload.php) to get us started?
Hernan
Top achievements
Rank 1
 answered on 11 Jan 2012
0 answers
137 views
Hi!

The splitter is attaching to the DOM correctly on init. However when I try to use the ajaxRequest method, I can't seem to get it to work.

The ajaxReuqest method isn't documented very well (http://www.kendoui.com/documentation/ui-widgets/splitter/methods.aspx 
and i'm not sure how to get ahold of it again after it's been loaded on the page. I set up a simple test:

<script>
    jQuery(document).ready(function () {
        jQuery("#splitter").kendoSplitter({
            panes: [
                { min: "100px", max: "300px" },
                { contentUrl: "/test.htm" }
            ]
        });

        jQuery("#test").live("click", function () {
            var splitter = jQuery("#splitter");
            splitter.ajaxRequest("#Panel", "/test2.htm");
        });
    });
</script>

<div id="splitter">
    <div style="max-width:300px;">
        <div style="text-align:center;">
            <asp:TextBox runat="server" ID="boxSearch" Width="300" />
            <asp:Button runat="server" ID="btnSearch" Text="Search" />
        </div>
    </div>
    <div id="#Panel">
    </div>
</div>
<input type="button" id="test" value="test"/>

Please help.
Thanks!
Easton
Top achievements
Rank 1
 asked on 11 Jan 2012
0 answers
211 views
I have created a datasource (verified the results retrieved) then I try to use it when initializing a dropdownlist. The dropdown list is rendered but not populated with any data. Also how do I refresh the dropdown after the datasource results have changed? I realize that I can't reinitialize the original element multiple times. Thanks!

Sample Code:

var myDataSource = new kendo.data.DataSource({
transport: {
  read: {
   url: '@Url.Action("Method", "Entity", new { Area = "Area" })',
   dataType: "json",
   contentType: "application/json; charset=utf-8",
   data: { param1: param }
  }
 },
 change: function (event) {
  $("#INPUT").kendoDropDownList({
       dataTextField: "Text",
       dataValueField: "Value",
       dataSource:
              {
              data: myDataSource 
              }
        }
   });
Joey Cruz
Top achievements
Rank 1
 asked on 10 Jan 2012
4 answers
205 views
Are there any examples of using the Kendo Menu with ASP.NET MVC 3?  I tried using the code from the example in a layout page but get the following error.
Microsoft JScript runtime error: Unable to get value of the property 'close': object is null or undefined
Jei
Top achievements
Rank 1
 answered on 10 Jan 2012
1 answer
92 views
Hey Guys,

kindly help me with this problem I have KendoDropDownList in sub menu when i select item from KendoDropDownList it closes sub menu too even I called e.preventDefault() method on both Menu and KendoDropDownList.  here is the html.

 <ol id="ActionMenu">
<li>Search
 <ul style="right: 1px">
                            <li>
                                <div style="width: 600px; height: 450px" id="SearchContainer">
                                    <ol class="OL-Half">
                                           <li><span class="title">Owner</span><select id="OwnerDropDown" >
                                           
                                            </select><<li>
                                    </ol>
                               </div>
                            <li>
<ul>
<li>
</ol>

many thanks in advance

Ali Zaidi
alizaidi
Top achievements
Rank 1
 answered on 10 Jan 2012
7 answers
144 views
Hi,

Does Kendo UI support Windows Phone 7?

Thanks,
    Charles Gamble
Kamen Bundev
Telerik team
 answered on 10 Jan 2012
3 answers
121 views
Greetings!!!!
Merry Christmas

Actually i am using Line Chart for doing POC for one financial website, two concerns/problems that i am facing

1) Chart where X axis starting with "0". For example stock price of Microsoft is $ 26.03 and there will be change of 6% in a whole day, then chart should start with above value of $26.03 as a starting value and not "0", else the entire chart will appear as a straight line.

2) On creating line chart, on each value there is a pointer (small round shape) which actually creating issue for displaying the chart properly. So i want to remove the same.

Kindly help me in acheiving the same. Thanks in advance

Regards
Manash Dutta
Hristo Germanov
Telerik team
 answered on 10 Jan 2012
1 answer
192 views
Hi,

I have kendo ui tab control where each tab has a chart and a grid in it.  The grids are appropriately resizing with the window, however the first displayed chart is filling the display width, but not resizing, while the rest of the charts are in some default size and are not resizing with the window appropriately.

Has anyone encountered this issue, and do they have any advice or suggestions?

Thanks in advance,

Jon
Hristo Germanov
Telerik team
 answered on 10 Jan 2012
1 answer
124 views
I saved the Grid edit demo to a new directory and updated the links and it worked fine.
Then I want to change the data path to the same file on my site so I copied the text from the link
http://demos.kendoui.com/service and saved it as Products.jsonp

Both files are in the example directory and it will not bind the data even after I changed the read: path
to match where  I put Products.jsonp (not sure about the directory structues if any are required).

It would be great to get a feel for the grid edit component if anybody can help please.

Here's the code I have:

                $(document).ready(function () {
                    var crudServiceBaseUrl = "http://mydot.com/KendoUI/examples", //(This is where my files are now)
                        dataSource = new kendo.data.DataSource({
                            transport: {
                                read:  {
                                    url: crudServiceBaseUrl + "/Products",
                                    dataType: "jsonp"
                                },
                                update: {
                                    url: crudServiceBaseUrl + "/Products/Update",
                                    dataType: "jsonp"
                                },
                                destroy: {
                                    url: crudServiceBaseUrl + "/Products/Destroy",
                                    dataType: "jsonp"
                                },
                                create: {
                                    url: crudServiceBaseUrl + "/Products/Create",
                                    dataType: "jsonp"


Why does this data not bind? Can anybody help?

Thank you...
Pedro
Top achievements
Rank 2
 answered on 10 Jan 2012
0 answers
131 views
Hi,

Is it possible to add runat="sever" to main UL of Treeview to bind it with ASP .net 4.0?

Or

How can i control tree view events (i.e. onclick etc) using ASP.net functions?

<ul id="treeview" runat="server">
<li>Item1</li>
<li>Item2</li> 
</ul>

Something like above code.

Please suggest.

Thanks
pratikshah91
pratik
Top achievements
Rank 1
 asked on 10 Jan 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
Drawer (Mobile)
Drawing API
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
Collapsible
Localization
MultiViewCalendar
Touch
Breadcrumb
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
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?