Telerik Forums
Kendo UI for jQuery Forum
1 answer
218 views
I am creating a login page.  How do I clear the navigation history to ensure that android users can't use the "back" button to get back to the login page after they've authenticated?
Petyo
Telerik team
 answered on 08 Nov 2013
5 answers
795 views
If you built an app that uses the Kendo UI mobile tabstrip then you will notice that if you browse through a few pages by clicking the icons and then use the back button, you will go through all these pages again (in reverse order) until you reach the first page.

For most apps this might not be how you want your app to behave. Most of my apps only respond to the back button if they are on a page that is a sub page of a page that is on the tabstrip. Clicking the back button on a page that is in the tabstrip will popup a question asking if you want to exit the app.

I am wondering if this is the preferred way to do it or does Kendo UI mobile have functionality to behave as I described above. I have not been able to find it.
Simon
Top achievements
Rank 1
 answered on 08 Nov 2013
5 answers
178 views
Hello everyone,

    I'm using dateHeaderTemplate:
dateHeaderTemplate: kendo.template("<strong>#=kendo.toString(date, 'ddd d/M')#</strong>")
    But when I click in date header from Week view the scheduler doesn't link to Day view.

    How could I use dateHeaderTemplate and it is allowed link to day view?

Thank you
Regards
salvador
Top achievements
Rank 1
 answered on 08 Nov 2013
4 answers
327 views
When in landscape mode, we would like to prevent the drawer from closing. But in portrait we would like to allow it to operate as usual. 

Adding an onHide then immediately calling .show() seems to fire to quick. Is there a better way to keep this open under certain conditions?
Davin
Top achievements
Rank 1
 answered on 08 Nov 2013
1 answer
172 views
hello guys,

i'm currently trying to use the remove views into my app but i'm going through some problems ...
my page does not get loaded and i can't figure out why ..

here is my index. html
<!DOCTYPE html>
<html>
<head>
  <title></title>
  <link href="styles/kendo.common.min.css" rel="stylesheet" />
  <link href="styles/kendo.default.min.css" rel="stylesheet" />
  <link href="styles/kendo.mobile.all.min.css" rel="stylesheet" />
  <link href="styles/index.css" rel="stylesheet" />
</head>
 
<body onload="onBodyLoad()">
  <script src="lib/jquery.min.js"></script>
  <script src="lib/kendo.all.min.js"></script>
  <script src="init/cordovaInit.js"></script>
 
  <div data-role="view"></div>
  <div data-role="drawer" id="my-drawer" style="width: 270px" data-views="['./views/relaySearchView.html', './views/nespressoSearchView.html', './views/dolceGustoSearchView.html']">
    <ul data-role="listview" data-type="group">
      <li>Menu
        <ul>
          <li><a href="./views/relaySearchView.html">R</a></li>
          <li><a href="./views/nespressoSearchView.html">N</a></li>
          <li><a href="./views/dolceGustoSearchView.html">DG</a></li>
        </ul>
      </li>
    </ul>
  </div>
  <div data-role="layout" data-id="drawer-layout">
    <header data-role="header">
      <div data-role="navbar">
        <a data-role="button" data-rel="drawer" href="#my-drawer" data-icon="drawer-button" data-align="left"></a>
        <span>MR</span>
      </div>
    </header>
  </div>
  <script>
   var app = new kendo.mobile.Application(document.body
    {skin : "flat",
     initial : "./views/relaySearchView.html"
    });
  </script>
</body>
</html>
and here are my three html views :

<div data-role="view" id="drawer-relaySearch" data-layout="drawer-layout">
  <p>relay</p>
</div>
<div data-role="view" id="drawer-nespressoSearch" data-layout="drawer-layout">
  <p>N</p>
</div>
<div data-role="view" id="drawer-dolceGustoSearch" data-layout="drawer-layout">
   <p>dolce Gusto</p>
</div>
as you can see, the views are pretty simple ;)

i hope has an answer for me ! thank you !! :)
guillaume
Top achievements
Rank 1
 answered on 08 Nov 2013
1 answer
196 views
Hello,

I have a button in the tooltip but I am encountering a usability issue with the tooltip whereby the tooltip disappears when attempting to move the mouse over the tooltip content.

The problem is reproducible with the "Loading content with AJAX" demo on your site. Notice how it can be quite tricky to quickly move the mouse over the tooltip without it closing.  I tested in both FF and Chrome.

Any ideas?

Thanks,
Gary
Petur Subev
Telerik team
 answered on 08 Nov 2013
1 answer
231 views
Here is my issue:

I am using the MVC Wrapper for a ListView so I am not setting this up thru javascript and cannot set the schema and columns that way. I need to change the parse function on one of my fields though. Is there any way to do this in javascript before or after the data is loaded? I have gone thru and tried a couple of different places and changed it but its not picking up the new parse.

Basically I need to change a decimal fields default parse from parseFloat to something that will allow it to respect cultures.

any ideas?
Andrew
Top achievements
Rank 1
 answered on 08 Nov 2013
1 answer
171 views
I'm trying to open a modal window from another window.
The modal window opens but it give an error when I try to close it.
I tested on Chrome, Firefox and IE.

I'm seding you an example, the page1 opens the page2 in a window and the page2 opens the page3 on a modal window, when you try to close the page 3 you got the error.

Many thanks
FLavio
Alexander Popov
Telerik team
 answered on 08 Nov 2013
9 answers
1.4K+ views
Please see the attached screen shot, the editor renders but there are no icons on the tool bar, I checked editor.png is in the default folder.

 <textarea cols="25" rows="5" id="History" style="width:420px"  name="History"  placeholder="this is a History field" ></textarea>

 $("#History").kendoEditor({
            tools: [
                "bold",
                "italic",
                "underline",
                "strikethrough",
                "justifyLeft",
                "justifyCenter",
                "justifyRight",
                "justifyFull"
                   ]
        });

This is urgent  please  help
Dimo
Telerik team
 answered on 08 Nov 2013
1 answer
467 views
Hello, 

I have experienced the problem that I am not able to get fired a double click event using the following code:

$("#md-contentGrid tbody > tr[data-uid]").bind('dblclick', function (e) { alert(); });

However, firing a doubleclick event on the whole table body is working. As soon as I add the tr tag in the selection string the event is not properly bound.
$("#md-contentGrid tbody").bind('dblclick', function (e) { alert(); });
As you can see in the attached screenshot jQuery should match the html structure.

Can you tell what I am doing wrong?
Thanks in advance!
Nikolay Rusev
Telerik team
 answered on 08 Nov 2013
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?