Telerik Forums
Kendo UI for jQuery Forum
0 answers
233 views
Hi There,


I have created a mobile application using kendo Mobile UI's trial version in asp.net MVC3.
Here I am facing a problem that whenever I click on any anchor tag/button then its url get appended with the current page's url.
eg:
www.testkendoui.com/CurrentPage_Controller/CurrentPage_Action#/www.testkendoui.com/NextPage_Controller/NextPage_Action


And this causes the next page not to work, and it works after refreshing the next page.


I have tried with :
  1.  data-ajax="false" on all anchor tags and forms.
  2.  adding "http://" with the main URL 
but that all does not working.


Any suggestion would be appreciated.. :)


Thanks in advance .. 
Kritika
Top achievements
Rank 1
 asked on 01 Jun 2012
1 answer
48 views
How can i make use of the popup the way it is being shown in http://demos.kendoui.com/web/grid/editing-popup.html in this example of yours.
Suppose i have custom div and i want that to be in popup like that example.
Albert
Top achievements
Rank 1
 answered on 01 Jun 2012
0 answers
144 views
Hi Everyone,

I am having a list view with a
1.Input box(name)
2.File button for searching file in the computer and
3.Button to save the data

If i enter any name in the text box it will have to search the name in the data base whether the name exists or not and
if any name exists it should show an error already a name exists please enter another and
If i have include any file it should display 1 else 0
when i click the save button when success it has to save the data to database otherwise it has to show an error 


Thanks,
Srinivas
srinivas
Top achievements
Rank 1
 asked on 01 Jun 2012
2 answers
98 views
Hi, I just download and tried a few sample of Kendo UI. It looks and works great! Good job telerik folks.

I have 2 newbie question/or request.

1. Can we have a search function under each sub forum? Right now I only find to search the whole website.
2. When you post the sample code in the demo, can you also post the sample code in the server side to make the demo could be run on a single box without external network dependency?

Thx,
David
David
Top achievements
Rank 1
 answered on 01 Jun 2012
2 answers
229 views
I have two icons within my tabstrip, one for home and one for logout.  When I navigate away from the home page, the home button is still highlighted.  I do not want this highlighted when not on the homepage.  Can anyone suggest what I need to do to fix this?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Control Panel - Mobile</title>
    <!--include Kendo UI files-->
    <link href="public/css/kendo.common.min.css" rel="stylesheet" type="text/css" />
    <link href="public/css/kendo.default.min.css" rel="stylesheet" type="text/css" />
    <link href="public/css/kendo.mobile.all.min.css"  rel="stylesheet" type="text/css" />
    <script src="public/js/jquery.min.js" type="text/javascript"></script>
    <script src="public/js/kendo.mobile.min.js" type="text/javascript"></script>
</head>
<body>
    <div data-role="view" data-layout="index_template" data-title="Control Panel - Mobile" id="index">
        <?php if (isset($error)){  echo '<p style="color:red">Error: '. $error .'</p>';} ?>
           
        <ul data-role="listview" data-style="inset">
            <li><a href="/messages/listall">Customer Messages (<span id="unread_messages_hp"><?=$unread_messages?></span>)</a></li>
            <li><a href="/support/listall">Support Messages (<span id="unread_support_hp"><?=$unread_support?></span>)</a></li>
            <li><a href="/reviews/listall">Customer Reviews (<span id="new_reviews_hp"><?=$new_reviews?></span>)</a></li>
            <li><a href="/orders/listall">Orders (<span id="new_orders"><?=$new_orders?></span>)</a></li>      
        </ul>
   </div>
   <div data-id="index_template" data-role="layout" data-show="triggerIndexButton">
        <div data-role="header">
            <div data-role="navbar">
                <span data-role="view-title"></span>
                  
            </div>
        </div>
       
        <div data-role="footer">
            <div data-role="tabstrip" >
                <a href="/" data-icon="home" data-rel="external">Home</a>
                <a href="/logout" data-icon="settings">Logout</a>
            </div>
        </div>
   </div>   
   <div data-id="main_template" data-role="layout">
        <div data-role="header">
            <div data-role="navbar">
                <a class="nav-button" data-align="left" data-role="backbutton" id="back">Back</a>
                <span data-role="view-title"></span>
                  
            </div>
        </div>
       
        <div data-role="footer">
            <div data-role="tabstrip">
                <a href="/" data-icon="home" data-rel="external">Home</a>
                <a href="/settings" data-icon="settings">Logout</a>
            </div>
        </div>
   </div>  
Many thanks in advance for your help.
Patrick
Top achievements
Rank 1
 answered on 01 Jun 2012
8 answers
710 views
Hi,

i have an virtual binded xml datasource in a grid. All works fine, but when the server has no records the browser has errors in Javascript because undefined values are in XML Data.

Sample:
<count>1</count><books><book><field1>Hallo</field1></book></books>  -> This works fine

But if there are no books the browser reported errors:
<count>0</count><books></books>  

Browser message:Uncaught TypeError: Cannot read property 'field1' of undefined
Adrian
Top achievements
Rank 1
 answered on 31 May 2012
1 answer
294 views
While the user is in the process of scrolling a grid, I need to prevent ajax polling else the user-experience is bad. I can't figure out how to get scroll events from a grid. My question is: to which DOM element under the grid should I bind the scroll event? I thought it would be the k-grid-content.
Gary
Top achievements
Rank 1
 answered on 31 May 2012
0 answers
178 views
I'm curious if someone can assist in pointing me to either a code snippet or suggested method to get the selected value from a KendoUI combobox within an MVC razor application.

Any help is very much appreciated.  Thanks in advance.
Karl
Top achievements
Rank 1
 asked on 31 May 2012
6 answers
383 views
I have a grid with OrderID and OrderDate. The sorting is done on the server. The initial load is sorted on the OrderID.

The grid gets the data in JSON format.
How do I specify that the sort field and direction are null then by default show the sort icon on OrderID and Default direction is ASC?

Thank you
Vin
Dave
Top achievements
Rank 1
 answered on 31 May 2012
2 answers
114 views
Hey guys, I dont' know if you're aware of this or not, but the demo source code for your mobile UI needs updating.

You guys are missing the link to the mobile style sheets - 

<link href="http://cdn.kendostatic.com/2012.1.515/styles/kendo.mobile.all.min.css" rel="stylesheet">

It took me about 45 minutes to realize my page was not working because you didn't have this in the demo source code. I didn't realize I needed this until I looked at the source code for the mobile pages here: http://demos.kendoui.com/mobile/m/index.html

Just giving you a heads up.
Jeremy
Top achievements
Rank 1
 answered on 31 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
Drag and Drop
Application
Map
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
Licensing
ScrollView
Switch
TextArea
BulletChart
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
TimePicker
FloatingActionButton
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
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?