Telerik Forums
Kendo UI for jQuery Forum
1 answer
140 views
@using (Html.BeginForm("Update", "MyUsers", FormMethod.Post))
{

@(Html.Kendo().Grid(Model).Name("Usersgrid").Columns(col =>
{
col.Bound(i => i.Id).Hidden();
col.Bound(b => b.Email);

col.Bound(p => p.UserActive).ClientTemplate("<input type='checkbox'
name='checkedvalues' class='chkbx'
value='#= Id #' " + "# if (UserActive)
{ #" + "checked='checked'" + "# } #" + "/>" +

" <input type=\"hidden\" name=\"checkedvals\"
value=\"#=Id#\"/>")
.HeaderTemplate("<input type='checkbox' id='checkAll' /><label
for='checkAll'>Select </label>").Width(120);

col.Command(c => c.Custom("Remove").Click("remove")).Width(120);

}).DataSource(d => d.Ajax()
.Model(m => m.Id("Id"))
.Read(p => p.Url("/Customers/GetCustomerIndex").Type(HttpVerbs.Get)))

)
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Save Users" class="btn btn-default" id="btnGroupInv2" style="color: rgb(8, 4, 36)" />
</div>
</div>
}
 I have "SelectAll" header template for checking and unchecking for all check boxes.I am unable to post the unchecked values with id's on clicking submit button ?I spent many hours on this. Any Suggestions  or any other methods would be grateful thanks

Petur Subev
Telerik team
 answered on 07 Aug 2014
2 answers
177 views
Greetings,

I have a Web Part project that is using a webservice as it's DAO. I am pulling it in using JSONP and ajax calls. All works well in Chrome. But in IE (any version) it hangs on loading the grid. It never populates the grid. This is my code:



var grid = $('#testGrid').kendoGrid({
        toolbar: 'Input: "Search" "NumberItems" | "Filter" "Export" "Report(Dropdown)"  "DDL(Concepts)"',
        columns: [
            { field: 'PADescription', title: "Description" },
            { field: 'PAUom', title: "PA Uom" },
            { field: 'CasesSold', title: "Usage" },
            { field: 'PreviousLaidIn', title: "Previous" },
            { title: " " },
            { field: 'DistID', title: 'Dist ID' },
            { field: 'DistDescription', title: 'Dist Description' },
            { field: 'DistUom', title: 'Dist Uom' },
            { field: 'Usage', title: 'Usage' },
            { field: 'DateModified', title: 'Modified' }
        ],
        dataSource: {
            transport: {
                read: {
                    url: url + 'getDistLaidIn?distID=5202',
                    dataType: 'jsonp'
                }
            },
        }
    }).data('kendoGrid');


Like I said, this works fine in Chrome, but IE just hangs on loading the grid.

Attached a screenshot of the bug.



V/R

Keith


Daniel
Telerik team
 answered on 07 Aug 2014
1 answer
50 views
I'm using a chart and a grid which share the same DataSource. There's a JSON request for each initialized widget. Is there a way to avoid this? 
http://docs.telerik.com/kendo-ui/getting-started/framework/datasource/overview#creating-and-binding-to-a-sharable-remote-datasource
Ioan
Top achievements
Rank 1
 answered on 07 Aug 2014
7 answers
422 views
I'm tracking changes to events (rescheduled, cancelled, times change, etc. etc.) and would like to be able to single-click on a scheduler event to raise an event which will display details and change activity in a grid.

I don't see a select event and am wondering what the best way to do this would be?

Thanks!
Vladimir Iliev
Telerik team
 answered on 07 Aug 2014
3 answers
213 views
Hello, 

What is easiest way to get the contains filter working with a web service that uses odata v4?
It seems that web services using odata v4 no longer acknowledge the 'substringof' function and want the ' contains' function. This wouldn't be that big of deal however the parameters are reversed as well making it a bit more trickier than simple substitution.

Examples:
Contains (fails)
http://localhost:1486/odata/BillOfMaterials(2)/BillOfMaterialsItems?%24format=json&%24top=10&%24filter=substringof('xYz'%2CWorkUnitCode)&%24count=true

What it needs to be for the contains function to work 
http://localhost:1486/odata/BillOfMaterials(2)/BillOfMaterialsItems?%24format=json&%24top=10&%24filter=contains(WorkUnitCode%2C'xYz')&%24count=true
Atanas Korchev
Telerik team
 answered on 07 Aug 2014
1 answer
1.2K+ views
The decimal key can appear in two places on the US keyboard, in the bottom row of main keys to the right of 'M', or in an optional numeric keypad.  The behavior should be the same regardless of which key is used to enter a decimal. However, NumericTextBox will ignore the decimal key from the numeric keyboard when this is the first character of the entry, as in '.25'.
The workaround is to enter '0.25', or not use the numeric keypad.  In production environments with financial professionals, it would be ridiculous to advise against using the numeric keypad, and it is at least annoying for them to remember the workaround.
These keys, which I understand have different scan codes, work identically in ALL other circumstances. It would be greatly appreciated if they would work identically in this particular boundary condition as well.
Dimo
Telerik team
 answered on 07 Aug 2014
1 answer
139 views
Hello

I just wonder, now when 1st release of pivot grid is ready, is it possible to use that implementation to simulate PropertyGrid? This is control I'm missing.

Kind Regards
Marcin
Atanas Korchev
Telerik team
 answered on 07 Aug 2014
1 answer
48 views
Hello. In my project stopped working binding menu.
Broken binding (Kendo 2014 Q2): http://dojo.telerik.com/@Alexandr/EvIy
Its work binding (Kendo 2014 Q1 SP2): http://dojo.telerik.com/@Alexandr/aMaBa

Help me :(
Kamen Bundev
Telerik team
 answered on 07 Aug 2014
4 answers
122 views
I am using kendo scheduler using mvc wrapper. When i am trying to bind it with the model, the meetings  does not fit into correct time slot, it floats around. Tool-tip shows correct time range. Has anyone faced this issue?
Vladimir Iliev
Telerik team
 answered on 07 Aug 2014
3 answers
148 views
Hello,

i am using CustomEditorTemplate for Scheduler and it works fine for Desktop Version. For Tablet and Phone versiôn i have added adaptive Rendering .Mobile(Phone/Tablet) in respective view file. So tapping any Event Displays the customEditor but this window had very bad formatting and creating/editing Events is not ATALL user friendly. Some startdate and time validations are wrong as well. Is there a sample for mobile devices for customeditortemplate? What can i do to make this window more user friendly and easier to use.

Thanks

Anamika
Vladimir Iliev
Telerik team
 answered on 07 Aug 2014
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
AIPrompt
TimePicker
AICodingAssistant
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
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
Bronze
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?