Telerik Forums
Kendo UI for jQuery Forum
2 answers
126 views
Is there a way to test if a remote view was navigated to directly and if it was, load it into the Application? For example, the following page was indexed in google...
http://demos.kendoui.com/content/mobile/application/play-music.html 

but the page for the Application would be...
http://demos.kendoui.com/mobile/application/index.html#../../content/mobile/application/play-music.html  

thanks :)

Jerald
Top achievements
Rank 1
 answered on 04 May 2012
2 answers
419 views
How do I handle a server-side click event for a button within a Kendo UI window?

My problem is that whenever I click on button "btnLogoutConfirmOK" (see code below), nothing happens.

Here is the markup for my window:

<div id="dialogLogoutConfirm" class="Dialog" style="display: none">
    <br />
    <div style="height: 20%; text-align: center">
        <asp:Label ID="lblLogoutConfirm" runat="server" CssClass="label-dialog" Text="Sign out of DMS?"></asp:Label>
    </div>
    <br />
    <br />
    <div style="text-align: center;">
        <asp:Button ID="btnLogoutConfirmCancel" runat="server" Text="No" Width="100px" />
        <asp:Button ID="btnLogoutConfirmOK" runat="server" Text="Yes" Width="100px" />
    </div>
</div>


Here is the script that opens the KendoUI window:

$("#dialogLogoutConfirm").kendoWindow(windowOptions);
 
$("#<%=imgLogout.ClientID %>").click(function () {
 
    var window = $("#dialogLogoutConfirm").css("display", "block").data("kendoWindow");
    var title = window.wrapper.find('.k-window-title');
    title.html('<label style="font-size: large; color: #0; text-align:center;"><b>Sign Out</b></label>');
 
    $("#<%= btnLogoutConfirmCancel.ClientID%>").bind("click", function () {
        window.close();
        return false;
    });
 
    window.center();
    window.open();
    return false;
});

and here is the server-side event handler for button "btnLogoutConfirmOK":

Protected Sub btnLogoutConfirm_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnLogoutConfirmOK.Click
    Dim us As UserSession = UserSession.Retrieve(Session("intUserSessionId"))
    With us
        .SessionLogoutDate = DateTime.Now
        .Update()
    End With
    Session("intAgentID") = Nothing
    Session("intUserID") = Nothing
    Session("UserSecurityTask") = Nothing
    Session("GlobalSearchCriteria") = Nothing
    Response.Redirect("~/Login.aspx")
End Sub
Francois
Top achievements
Rank 1
 answered on 04 May 2012
1 answer
67 views
As part of my requirements my graph needs Log scale. Is it natively supported in kendo dataviz. If not how do u suggest to go about it. 
Iliana Dyankova
Telerik team
 answered on 04 May 2012
0 answers
105 views
Suppose DDL1 has items A, B, C coming from query SELECT tablename as item from tablenames
When DDL1 is changed I want DDL2 to get items from appropriate table using query SELECT item from {DDL1.value()}

In the change handler for DDL1 the following does not work.

DDL2.enable(true);
DDL2.dataSource = new kendoDataSource (...);
Richard
Top achievements
Rank 1
 asked on 04 May 2012
1 answer
889 views
Hi Kendo UI Team:
I need to show the items of a listView in so many columns as its container's width allows. For instance:

item-1 item-5
item-2 item-6
item-3 item-7
item-4

Note the vertical sequence.
Is there a way to accomplish this?

Kind regards,
Oscar
Dimo
Telerik team
 answered on 04 May 2012
1 answer
82 views
Hi,

We are a small development team in China and are currently considering purchasing a copy of KendoUI's awesome widgets.  We met up with some problems while developing using the Grid.  I'm sorry, but we don't have any jsFiddle samples available.

I am using the Kendo Grid together with the detail template.  The detail template contains a HTML table with input fields in each cell.  Whenever we try to sort/group by/filter the grid, we realized that the change event of the data source is fired!  This "side-effect" refreshes the detail template and causes all of our input fields to empty out.

Is this the proper behaviour?  If so, how would we prevent the refreshing of the detail template/data source?

Regards,
Mark Huang
Dimo
Telerik team
 answered on 04 May 2012
2 answers
171 views
Hi Kendo UI team:
If you change the font-family to Segoe UI, the border-bottom of the title bar is overlapped by "k-windows-action k-header" div in Chrome browser.
I've attached an image.

Regards.
Oscar.
Oscar
Top achievements
Rank 1
 answered on 04 May 2012
7 answers
314 views
In the grid editing demo (http://demos.kendoui.com/web/grid/editing.html), on changing the value of a cell, a dirty marker is displayed. If you switch to a different page and then back, the marker is not displayed.

This feels like a bug as on using the 'Save changes' button, the dirty changes are pushed to the server - my take is that the grid is aware of the changed cells and should be able to render the dirty marker.
Nikolay Rusev
Telerik team
 answered on 04 May 2012
2 answers
154 views
Hi,
How I can save e reload the treeview when i do a postback ??
Thanks
Vitantonio
Top achievements
Rank 1
 answered on 04 May 2012
5 answers
512 views

Hi, I've read:

Combined Scripts

The following combined scripts are made available in order to simplify development and deployment.

  • kendo.all.min.js contains a minified version of all scripts (Web, DataViz and Mobile).
    That file is available only in the Kendo Complete package.

  • kendo.web.min.js contains a minified version of all scripts from Kendo UI Web.
  • kendo.dataviz.min.js contains a minified version of all scripts from Kendo UI DataViz. 
  • kendo.mobile.min.js contains a minified version of all scripts from Kendo UI Mobile. 

Important: Only one of the above scripts can be included at a time.


This mean, I can't use DataViz with a Mobile app?


I'm using
    <script src="js/kendo.mobile.min.js"></script>


But with i add 
    <script src="js/kendo.dataviz.min.js"></script>

to my page, the page can't load ok.


plase advise

Petyo
Telerik team
 answered on 04 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
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
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
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
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
Iron
Iron
Sergii
Top achievements
Rank 1
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?