Telerik Forums
Kendo UI for jQuery Forum
0 answers
78 views
I'm trying to use a lot of Grids with widgets in them (all Kendo UI widgets) and it's not going well at all. Widgets created before the Grid is instantiated end up having weird duplicate fragments or have portions set to display:none. Widgets created after Grid instantiation can't be interacted with. Seeing as to how there are no examples I can find with widgets inside a Grid I'm guessing this is not possible? Is anybody else doing this?
Rei
Top achievements
Rank 1
 asked on 13 Mar 2012
1 answer
124 views
Hi 
Will KendoUI mvvm  work with Upshot js
Chris
Top achievements
Rank 1
 answered on 12 Mar 2012
2 answers
4.1K+ views
Hello, my grid is setup pretty similar to this example:
http://demos.kendoui.com/web/grid/rowtemplate.html 


My question is, how can I set cell spacing and/or padding?  I tried setting it in the table element and it seems to be ignored.  To go back to the example, there is a little space between the images on each row, what if you wanted to reduce that space to zero?  

My issue is there is too much extra space, it's more noticeable in my case because the rows are shorter, how do I get rid of it?  I actually tried setting the cellpadding and cellspacing to a high number just to see if it is being observed but it doesn't seem to have any impact.  
Kjell
Top achievements
Rank 1
 answered on 12 Mar 2012
0 answers
439 views
While I download Kendo, and run the demos from file://, I cannot run your online demos. The reason is that our I.T. department insists on having a proxy for all calls (IE, WinINET, Firefox) goes out of the our firewall to the Internet. There is a host, port, username and password that has to be given.

In general this works since WinINET clients (FireFox, IE, etc) all cache the credentials and have settings for them to provide the values whenever I visit a web site.

But using Fiddler, I see that you are doing somethng (XMLHTTP?) that is not providing the authentication:

For example, when I try to look at the GRID demo, Three requests are fired off, and I am going to show the the responses trapped by Fiddler:

GET http://demos.kendoui.com/web/grid/from-table.html?partial=1 HTTP/1.1
Host: demos.kendoui.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html, */*; q=0.01
Accept-Language: en-US
Accept-Encoding: gzip, deflate
Proxy-Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://demos.kendoui.com/web/overview/index.html
Cookie: __utma=2786159.356947064.1330612962.1331565274.1331568167.12; __utmz=2786159.1331565274.11.9.utmcsr=telerik|utmccn=box|utmcmd=index-divs; __utmx=2786159.00020135041346512463:2:1; __utmxx=2786159.00020135041346512463:1331066913:2592000; gs_u=35909591:15719:54649:1331568303735; __utmc=2786159; BCSI-CS8C660C0B=2; ASP.NET_SessionId=0cn0nhaoskasmpnnt2vlgiln; __utmb=2786159.14.10.1331568167; gs_p_GSN-096897-X=10



HTTP/1.1 407 Proxy Authentication Required
Proxy-Authenticate: NTLM
Proxy-Authenticate: BASIC realm="Please enter your CSDL-SERVICES username and password"
Cache-Control: no-cache
Pragma: no-cache
Content-Type: text/html; charset=utf-8
Proxy-Connection: close
Set-Cookie: BCSI-CS8C660C0B=2; Path=/
Connection: close
Content-Length: 815
Proxy-Support: Session-Based-Authentication

<HTML><HEAD>
<TITLE>Access Denied</TITLE>
</HEAD>
<BODY>
<FONT face="Helvetica">
<big><strong></strong></big><BR>
</FONT>
<blockquote>
<TABLE border=0 cellPadding=1 width="80%">
<TR><TD>
<FONT face="Helvetica">
<big>Access Denied (authentication_failed)</big>
<BR>
<BR>
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica">
Your credentials could not be authenticated: "Credentials required.". You will not be permitted access until your credentials can be verified.
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica">
This is typically caused by an incorrect username and/or password, but could also be caused by network problems.
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica" SIZE=2>
<BR>
For assistance, call the IT Services Help Desk (x4357).
</FONT>
</TD></TR>
</TABLE>
</blockquote>
</FONT>
</BODY></HTML>


---
Dr.YSG
Top achievements
Rank 2
 asked on 12 Mar 2012
0 answers
77 views
It is something like menu builder. You can drag and drop menu elements just like tree view but it looks like menu.

Some style problems may be solved. And I can move items into other items and even items between items in menu dropdown.

The only problem is when I try to change position of items in horizontal menu line.

Do you think I can finally accomplish this and do you have any ideas on what basic I have to understand doing this?
Sergey
Top achievements
Rank 2
 asked on 12 Mar 2012
2 answers
255 views
I started learning Kendo Mobile, Is working with a local data, then i tried to work with a simple webservice. the webservice return a List of:

  public class Test
    {
        public string name { get; set; }
        public string Prom { get; set; }
    }

in JSON Format. I verified, and put a break point at the method and also check in Firefox Firebug. it's correct. the following is my code

    <div data-role="view" id="grouped"
        data-transition="" data-title="ListView" data-layout="databinding">
        <ul id="grouped-listview">
        </ul>
    </div>
    <script type="text/javascript">
        $(function () {
            var dataS = new kendo.data.DataSource({
                transport: {
                    read: {
                        type: 'POST',
                        url: 'KendoMobile.asmx/GetTest',
                        dataType: 'json',
                        data: '{}',
                        contentType: 'application/json; charset=utf-8'

                    },
                    schema: {
                        data: 'd'
                    },
                    group: 'Prom'
                }
            });

            $("#grouped-listview").kendoMobileListView({
                 dataSource: dataS,
                template: "${name}"
            });

        });

the page is not showing any data. What's wrong with my code. all CSS, and JS are added correctly since is working with a local data. Any help would be greatly appreciated.
Georgi Tunev
Telerik team
 answered on 12 Mar 2012
4 answers
266 views
Hi Team,

This are the following control i am going to use in my project
so i just wanted to know whether they are available in kendoUI as component
if they are not available ,then whether these controls can be created by us.

Silder
Dropdown
Right Click(context menu)
Tooltip
Page Search
Accordion
List Box
Clone : creating a new row with necessary controls.
List editable
Images Gallery
Popup


Waiting for your reply


vikash kankaria
rvikash@interaktco.com
Stephen
Top achievements
Rank 1
 answered on 12 Mar 2012
3 answers
193 views
seeing a weird issue with the latest kendo beta release.  If I include the jquery validating plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/) in my project (this plugin is included by default in asp .net mvc apps btw) the dropDownList stops working properly in IE9 only.

I'm not even using it for anything, it's just in there and basically it causes the dropDownList to not dropdown when the down arrow is clicked.  Sometimes it'll open on double-click.  Also you can get it to open if you just click on the text part of the control.

I'm fortunate enough to be able to just remove the validation plugin but I'm sure others won't be so lucky :(

any ideas??
Alexander Valchev
Telerik team
 answered on 12 Mar 2012
3 answers
300 views
Hi,

I would like use a text (only text without button) in the toolbar, after the buttons "create", "edit" and "save". in this, I would like write "New or changed data are not stored - Please save data". It is possible?
Alexander Valchev
Telerik team
 answered on 12 Mar 2012
0 answers
107 views
*UPDATE: FIXED

I have a bunch of data that's being put into a Grid View and I have a number box in there.

If the input is converted to a NumericTextBox after being placed in the Grid it's fine, but the problem is I can't control when this happens and the Grid mangles the NumericTextBox when it's been rendered in advance. Not only is it mangled but it's basically unusable as well.

I've attached a screenshot. It would be ideal if I could get the Grid to not mangle the widget as I can't seem to think of an event to bind to that will fire after the Grid has been created.

*UPDATE: Fixed with some custom events and jQuery.
Rei
Top achievements
Rank 1
 asked on 12 Mar 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
MultiColumnComboBox
Dialog
Chat
DateRangePicker
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
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?