Telerik Forums
Kendo UI for jQuery Forum
2 answers
146 views
Hello,

If you have a modalView that opens over a text area, clicking the 'close' button (using a JS method via data-click) will open up the iPhone keyboard after the modalView has closed.

This seems to be because the touch event seems to register 'through' the button so it registers in the element behind it. Perhaps the touchup is registered on the text area itself?
MattM
Top achievements
Rank 1
 answered on 16 Jul 2012
1 answer
452 views
Hi All,

How can I make buttons the full width of the screen? E.g. http://demos.kendoui.com/mobile/modalview/index.html

I have been over the source of the demo and can not find anywhere where the width of the buttons is set, either in css or javascript.

Could someone please enlighten me.

Thanks.

As a side note: The level of documentation, or lack there of, is a serious barrier in relation to making a purchasing decision. Telerik really needs to address this asap.
Iliana Dyankova
Telerik team
 answered on 16 Jul 2012
1 answer
163 views
In the demos it looks as if the address bar is permanently hidden when the fixed tabbar is used, on my galaxy s (gingerbread) it is not.

How can I hide the address bar?
Kamen Bundev
Telerik team
 answered on 16 Jul 2012
0 answers
59 views
Hy,

I have a very hard problem, i wanna make grid and record, direct from database wich can insert, update and delete,
something like this, use PHP

http://www.youtube.com/watch?v=FhHMOjN0Bjc 

i want to insert, update and delete from database, please give me the sourcecode using PHP, Tq 


Dirga, 
Dirga
Top achievements
Rank 1
 asked on 16 Jul 2012
0 answers
53 views
Hy,

I have a very hard problem, i wanna make grid and record, direct from database wich can insert, update and delete,
something like this, use PHP

http://www.youtube.com/watch?v=FhHMOjN0Bjc 

i want to insert, update and delete from database, please give me the sourcecode using PHP, Tq 


Dirga, 
Dirga
Top achievements
Rank 1
 asked on 16 Jul 2012
0 answers
94 views
Hy,

I have a very hard problem, i wanna make grid and record, direct from database wich can insert, update and delete,
something like this, use PHP

http://www.youtube.com/watch?v=FhHMOjN0Bjc 

i want to insert, update and delete from database, please give me the sourcecode using PHP, Tq 


Dirga,
Dirga
Top achievements
Rank 1
 asked on 16 Jul 2012
0 answers
81 views
Hy,

I have a very hard problem, i wanna make grid and record, direct from database wich can insert, update and delete,
something like this

http://www.youtube.com/watch?v=FhHMOjN0Bjc 

i want to insert, update and delete from database, please give me the sourcecode, Tq
Dirga
Top achievements
Rank 1
 asked on 16 Jul 2012
1 answer
89 views
I'm trying to follow the example and I don't see how they apply a theme. My menu looks terrible and my grid is not sorting and the numbers are showing up horizontally.


_Layout.cshtml


<
html>
<head>
    <meta charset="utf-8" />
    <title>@ViewBag.Title</title>
    <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
    <link href="@Url.Content("~/Content/kendo.common.min.css")" rel="stylesheet" type="text/css" />
    <link href="@Url.Content("~/Content/kendo.default.min.css")" rel="stylesheet" type="text/css" />
    <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/jquery.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/jquery-1.7.2.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/kendo/2012.2.710/kendo.web.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/kendo/2012.2.710/kendo.aspnetmvc.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/kendo/2012.2.710/kendo.grid.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/kendo/2012.2.710/kendo.menu.min.js")" type="text/javascript"></script>
    @RenderSection("HeadContent", required: false)
    
Dennis
Top achievements
Rank 1
 answered on 15 Jul 2012
0 answers
52 views
What is the difference between this line:
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.ClientOrderViewModel>()

and this line:
@(Html.Kendo().Grid(Model)

I thought the first one is if you are connecting to a remote datasource. I tried the first one and it only seems to work if you are using json. I'm using the second and it is working for me.

Here is what my controller code looks like that works with the 2nd one and not the first. 

Thanks
dennis
public ActionResult Index(string classifications = "")
        {
            ViewData["Category"] = classifications;
            ViewData["Classifications"] = new SelectList(Classifications.List, "ClassificationText", "ClassificationText", classifications);
            var codModels = new List<CodeModel>();
            ViewBag.SelectedCatgory = classifications ?? "Type";
 
            if (Request.HttpMethod == "POST")
            {
                var model = _codeRepository.Search(classifications).ToModel();
                return View(model);
            }
 
            return View(codModels);
        }
Dennis
Top achievements
Rank 1
 asked on 15 Jul 2012
0 answers
126 views

What is the difference between this line:
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.ClientOrderViewModel>()

and this line:
@(Html.Kendo().Grid(Model)

I thought the first one is if you are connecting to a remote datasource. I tried the first one and it only seems to work if you are using json. I'm using the second and it is working for me.

Here is what my controller code looks like that works with the 2nd one and not the first.

public ActionResult Index(string classifications = "")
        {
            ViewData["Category"] = classifications;
            ViewData["Classifications"] = new SelectList(Classifications.List, "ClassificationText", "ClassificationText", classifications);
            var codModels = new List<CodeModel>();
            ViewBag.SelectedCatgory = classifications ?? "Type";
 
            if (Request.HttpMethod == "POST")
            {
                var model = _codeRepository.Search(classifications).ToModel();
                return View(model);
            }
 
            return View(codModels);
        }

Dennis
Top achievements
Rank 1
 asked on 15 Jul 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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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?