Telerik Forums
Kendo UI for jQuery Forum
0 answers
171 views
i tried many different ways, with both kendo.render and the typical way to render it but the displayed variable is not rendered. Any ideas?
Michael
Top achievements
Rank 1
 asked on 20 May 2012
2 answers
113 views
Hello,
I currently use SL to enable realtime asynchronous communication between an asp.net application and a windows client .net application. Take a look at http://eneter.blogspot.com/2011/10/silverlight-notification-messages-from.html. With the end of SL looking more real every day e.g. IE10 Metro, I am wondering if I can effectively replace my simple SL interface with the Kendo framework? Below is an excerpt of my SL app. Any advice would be appreciated.
private void LoadFramework()
    {
        try
        {
            // SETUP SEND MESSAGE
            // Create sender of string messages.
            IStringMessagesFactory aStringMessageReceiverFactory = new StringMessagesFactory();
            myStringMessageSender = aStringMessageReceiverFactory.CreateStringMessageSender();
 
            // Create output channel sending via Tcp.
            // Note1: Silverlight supports only ports of range 4502 - 4532
            // Note: Set the timeout (miliseconds) for opening the connection and for sending messages.
            IMessagingSystemFactory aTcpMessagingFactory = new TcpMessagingSystemFactory(1000);
            IOutputChannel anOutputChannel = aTcpMessagingFactory.CreateOutputChannel("127.0.0.1:4502");
 
            // Attach the output channel to the string message sender
            // to be able to send messages via Tcp.
            myStringMessageSender.AttachOutputChannel(anOutputChannel);
 
 
            // SETUP RECEIVE MESSAGE
            // Create the BrokerClient to subscribe and receive notifications.
            IDuplexBrokerFactory aBrokerFactory = new DuplexBrokerFactory();
            myBrokerClient = aBrokerFactory.CreateBrokerClient();
 
            // Handle received notifications.
            myBrokerClient.BrokerMessageReceived += OnBrokerMessageReceived;
 
            // TCP messaging for the communication with the desktop application.
            IMessagingSystemFactory aTcpMessaging = new TcpMessagingSystemFactory(1000);
 
            // Create the TCP output channel and attach it to the BrokerClient.
            IDuplexOutputChannel aTcpOutputChannel = aTcpMessaging.CreateDuplexOutputChannel("tcp://127.0.0.1:4510");
            myBrokerClient.AttachDuplexOutputChannel(aTcpOutputChannel);
            blChannelLoaded = true;
        }
        catch (Exception ex)
        {
            blChannelLoaded = false;
            var x = ex;
            //RadWindow.Alert("Please load app1");
            HtmlPage.Window.Invoke("TestSLCall", "Please Load SkypeLink");
        }
    }

Jeff
Top achievements
Rank 1
 answered on 20 May 2012
0 answers
62 views
The back button on device needs to be modified....when using an iPad you can see the clear delineation where a triangle is joined to a rectangle....this becomes even more so when viewing on Android device where the triangle is darker....does not look good.

Can this be improved?

Thanks
D
Duncan
Top achievements
Rank 1
 asked on 19 May 2012
1 answer
116 views
Is it possible to have a detailTemplate outside the grid. If so  can some please provide me an example.

Regards Jos.
Iliana Dyankova
Telerik team
 answered on 19 May 2012
1 answer
174 views
Hello,

Is there  a way to set the position of an image in relation to the text on a menu item?  It looks like the image defaults to the left of the text.  For my project I would like the image to show above the text.  Is this possible?

Thanks for your assistance!

Regards,
Brian
Iliana Dyankova
Telerik team
 answered on 19 May 2012
1 answer
107 views
My layout is getting more involved, and I no longer am comfortable doing this all in javascript. I need an IDE for styling and layout of my splitters, tabs and panelbars (wish I had a Silverlight GridLayout!).

I have JetBrians Webstorm for the javascript environment. I have VS2010 and WebExpressions (but I am not happy with either their Javascript or WebLayout offerings). I see nothing special coming in the Blend or VS11 betas. (do you?)

What I am now looking at is other offerings that work well with KendoUI. I tried BlueGriffen yesterday and it seems ok.  Not much documentation. What about Aloha CKedit , Maqette (blocked by firewall) etc. What I want is something simple and fits compactly in my brain with a clean metaphor but powerful enough for HTML5 and CSS3 styling.

(I miss Blend and Silverlight, but there is no going back now).

TMatt
Top achievements
Rank 2
 answered on 19 May 2012
1 answer
88 views
It appears that when I include kendo.web.min.js in my project, it registers several events to pretty much every object on the page.

e(["swipe","swipeLeft","swipeRight","swipeUp","swipeDown","doubleTap","tap"]

This doesn't seem to affect desktops, but on my iPad it prevents me from registering my own .swipe handler using jQuery.

If I write out the function that is bound on the ipad only I get:

function(a) { return this.bind(c,a);}


On the desktop, i get whatever function I assigned to .swipe / etc.


It would seem to be that Swipe events need to officially documented OR they need to not be bound to everything.

Please don't just reply and say "look @ the drag & drop API because it uses this stuff internally".  I know it does and I don't see swipe documented there.


Thanks! 
Petyo
Telerik team
 answered on 19 May 2012
1 answer
75 views
I notice the demo pages are now using

<link href="http://cdn.kendostatic.com/2012.1.515/styles/kendo.common.min.css" rel="stylesheet"/>
<link href="http://cdn.kendostatic.com/2012.1.515/styles/kendo.default.min.css" rel="stylesheet"/>
<link href="http://cdn.kendostatic.com/2012.1.515/styles/kendo.dataviz.min.css" rel="stylesheet"/>
<script src="http://cdn.kendostatic.com/2012.1.515/js/kendo.all.min.js"></script>

However, the Get KendoUI "OpenSource License GPL V3" button (http://www.kendoui.com/get-kendo-ui/download-kendo.aspx?pId=900&lict=3) is downloading version 1.322
Kamen Bundev
Telerik team
 answered on 19 May 2012
3 answers
186 views
Hello,
I am facing issue while formating string date to right format.
Following is my code:

return kendo.toString(new Date(2010,04,17), "MM/dd/yyyy");<BR>

It return me date as 05/17/2010

So it as adding a day in result, I am not setting any specific culture as I want Kendo to check my current thread cluture and use it for conversion.

Can someone please let me know the cause behind this?

Cat
Top achievements
Rank 1
 answered on 18 May 2012
2 answers
220 views

Hello,

I have a gauge that has values that are retrieved via a web service. The gauge is initially created successfully, but when my timer runs, the object that the series are bound to get updated, but the UI doesn't change.

Is there something I can do to get the UI to refresh that doesn't involve the flickering that I get when I call redraw or I recreate the gauge?

Here is my code:

The first code only updates the pointer value, but I also might want the range values to change.

function ServiceSucceeded(result) {
            //alert('Service call succeeded');
            // = result.d.Pointer;
            Current = result.d;
            $("#radial-gauge1").data("kendoRadialGauge").value(Current.Pointer);
        }
function createGauge() {
            $("#radial-gauge1").kendoRadialGauge({
                pointer: {
                    value: Current.Pointer
                },
                scale: {
                    majorUnit: 10,
                    minorUnit: 3.5,
                    min: Current.Start,
                    max: Current.Size,
                    ranges: [
                        {
                            from: Current.Start,
                            to:  Current.RedWidth,
                            color: "red"
                        }, {
                            from: Current.RedWidth,
                            to: Current.RedWidth + Current.YellowWidth,
                            color: "yellow"
                        }, {
                            from: Current.RedWidth + Current.YellowWidth,
                            to: Current.GreenWidth  +  Current.YellowWidth  +  Current.RedWidth,
                            color: "green"
                        }]
                }
            });
        }
Laura
Top achievements
Rank 1
 answered on 18 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
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
BulletChart
Licensing
QRCode
ResponsivePanel
TextArea
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
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?