Telerik Forums
Kendo UI for jQuery Forum
0 answers
45 views
Hi Guys,

I am trying to create a dynamic generated menu using MVC, VB.NET and Razor and i am getting the following error:

Compilation ErrorDescription: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: BC30561: 'Html' is ambiguous, imported from the namespaces or types 'System.Web.WebPages, System.Web.Mvc, Kendo.Mvc.UI'.

Source Error:

Line 2: @ModelType IEnumerable(Of MenuCategory)
Line 3:
Line 4: @(Html.Kendo().Menu() _
Line 5: .Name("TestMenu") _
Line 6: .BindTo(Model, Sub(mappings)
Source File: C:\Documents and Settings\vivekba\my documents\visual studio 2010\Projects\test\test\Views\Home\TestMenu.vbhtml    Line: 4 



This is my code in the view

@Imports test.Models
@ModelType IEnumerable(Of MenuCategory)

@(Html.Kendo().Menu() _
            .Name("TestMenu") _
            .BindTo(Model, Sub(mappings)
                                   mappings.For(Of MenuCategory)(Sub(x)
                                                                         x.ItemDataBound(Sub(item, menu)
                                                                                                 item.Text = menu.Name
                                                                                         End Sub)
                                                                                                                                                                            
                                                                 End Sub)
                                   
                           End Sub)
    )
           

Any help will be really appreciated please.

Thanks
Vivek
Top achievements
Rank 1
 asked on 07 May 2013
1 answer
587 views
Hi,

I have created a simple datasource wich gets a string array from a service.
The data that the service returns is in jsonp format.
The data the datasource returns is correct when i debug the code with chrome,
but i cant get it working with a datatemplate.

this is my code of the data-template:
<input type="checkbox"/>#: this#

but when i try to show this, I get a list of [Object] object.

How can I get the string value out of this object?

this post:
http://www.kendoui.com/forums/framework/mvvm/syntax-for-string-template-attr-binding.aspx 
showed that it can be done with "this", but thats what im doing right now.
Charles Benoualid
Top achievements
Rank 1
 answered on 06 May 2013
2 answers
620 views
Hello,

the viewHtml tool doesn't seems to work when in a bootstrap modal. It' display the code properly but the text cannot be selected or edited.

I tried it in chrome see the file attached


<!DOCTYPE html>
<html>
<head>
    <title></title>
    <link href="//cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css" rel="stylesheet" />
    <link href="//cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css" rel="stylesheet" />
    <link href="//twitter.github.io/bootstrap/assets/css/bootstrap.css" rel="stylesheet" />
 
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="//cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js"></script>
    <script src="//twitter.github.io/bootstrap/assets/js/bootstrap-transition.js"></script>
    <script src="//twitter.github.io/bootstrap/assets/js/bootstrap-modal.js"></script>
 
</head>
<body>
<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
 
<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button>
        <h3 id="myModalLabel">Modal header</h3>
    </div>
    <div class="modal-body">
        <textarea id="editor" rows="10" cols="30" style="width:100%;height:400px"></textarea>
    </div>
    <div class="modal-footer">
        <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
        <button class="btn btn-primary">Save changes</button>
    </div>
</div>
 
 
<script>
    $("#editor").kendoEditor({
        tools: [
            "bold",
            "italic",
            "underline",
            "strikethrough",
            "fontName",
            "fontSize",
            "foreColor",
            "backColor",
            "justifyLeft",
            "justifyCenter",
            "justifyRight",
            "justifyFull",
            "insertUnorderedList",
            "insertOrderedList",
            "indent",
            "outdent",
            "formatBlock",
            "createLink",
            "unlink",
            "insertImage",
            "subscript",
            "superscript",
            "viewHtml"
        ]
    });
 
    var editor = $("#editor").data("kendoEditor");
    editor.value("test testes");
</script>
 
</body>
</html>
Frederic
Top achievements
Rank 1
 answered on 06 May 2013
7 answers
473 views
are there any code examples using  MVC Razor for popup editing in a grid ?  The supplied demos only seem to have standard html and no cshtml
Abhishek
Top achievements
Rank 1
 answered on 06 May 2013
1 answer
365 views
I have a grid with a client template view attached. In the template view I have a textbox inside a span that I hide or show depending on the value of a textbox next to it. When the hidden textbox is hidden I want to clear its value. In jquery the setting the value of the hidden textbox by $('textboxid').val(''); works visually but this not propegating to the model when I save. here is my Form with the jquery i'm trying to use in it.
@model Papr2WebMvc4.Models.PiprForms.Tobacco
 
@using (Html.BeginForm())
{
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
    <h2>Edit Refering Tobacco users</h2>
    <fieldset>
        <legend></legend>
        <div>
            <label>Month</label>
            @Html.TextBoxFor(model => model.Month)/@Html.TextBoxFor(model => model.Year)
        </div>
        <div>
            <label>Number of peope referred this month to:</label>
            <div>
                <div>
                    <span>
                        <label>Quitline</label>
                        @Html.TextBoxFor(model => model.Count)
                    </span>
                </div>
                <div>
                    <span>
                        <label>QuitNet</label>
                        @Html.TextBoxFor(model => model.Count2)
                    </span>
                </div>
                <div>
                    <span>
                        <label>Local Cessation</label>
                        @Html.TextBoxFor(model => model.Count3)
                    </span>
                    <span class="hiddenElement" style="display: none">
                        <label>Local Group Name</label>
                        @Html.TextBoxFor(model => model.FormName)
                    </span>
                </div>
            </div>
        </div>
    </fieldset>
    <script>
        $(window).load(function () {
            trace("Begin");
            alert($('#Count3').val());
            var localCessation = $('#Count3').val();
            trace(localCessation);
        });
        $(document).ready(
            function myfunction() {
 
                trace("Begin");
 
                $('#Count3').change(function (event) {
 
                    trace("Text Changed");
 
                    var text = $(this).val();
                    if (text) {
                        trace("Has Text");
                        $('.hiddenElement').show("fast");
                    }
                    else {
                        trace("No Text");
                        $('#FormName').val(null);
                        $('.hiddenElement').hide("fast");
                    }
 
                });
            });
    </script>
}


Here is the grid it my form is connected to.
@(Html.Kendo()
   .Grid<Papr2WebMvc4.Models.PiprForms.Tobacco>()
   .Name("tobaccoGrid")
   .HtmlAttributes(new { @class = "primaryGridStyle" })
   .Columns(columns =>
   {
       columns.Bound(form => form.Date).Title("Date").Format("{0:M/yyyy}");
       columns.Bound(form => form.Count).Title("Quitline");
       columns.Bound(form => form.Count2).Title("QuitNet");
       columns.Bound(form => form.Count3).Title("Local Cessation");
       columns.Bound(form => form.FormName).Title("Local Group Name");
       columns.Command(command => { command.Edit(); command.Destroy(); }).Width(100);
   })//end columns
 
 
   .Editable(edit => edit.Mode(GridEditMode.PopUp).TemplateName("AddEditTobacco"))
 
   .ToolBar(toolbar => toolbar.Create())
 
   .Sortable()
 
   .Filterable()
 
   .Pageable(page => page.PageSizes(true))
 
   .DataSource(datasource => datasource
       .Ajax()
 
       .Model(model => model.Id(tobacco => tobacco.Id))
 
       .ServerOperation(false)
 
       .Read(read => read.Action("GetForm", "Form", new
       {
           planId = Convert.ToInt32(Session["PlanId"]),
           planActivityId = Model.PlanActivityId,
           activityType = Model.ActivityType,
           activityTypeId = Model.ActivityTypeId
       }))//end read
 
       .Create(create => create.Action("AddForm", "Form", new { planActivityId = Model.PlanActivityId, activityTypeId = 11 }))//end create
 
       .Update(update => update.Action("EditForm", "Form", new { planActivityId = Model.PlanActivityId, activityTypeId = 11, activityType = Model.ActivityType }))//end update
 
       .Destroy(update => update.Action("DeleteForm", "Form", new { planActivityId = Model.PlanActivityId }))//end destroy
        
       .Events(events=>events.RequestEnd("onRequestEnd"))//end events
   )//end datasoruce
 
   )@*End tobacco grid*@

Is there something else I should be using to reset the textbox value so it is consumed by my model using javascript/jquery.
Petur Subev
Telerik team
 answered on 06 May 2013
3 answers
52 views
Hey guys,

I've noticed since upgrading recently that a few of my templates that have a plus (+) character in them:

#= x + y #
#= 'i' + Id #
etc...

are removing the '+' internally and throwing an invalid template exception.

I've gotten around this easily enough by moving my logic into a function and calling that within the template, however, this seems to be a bug, and I was just wondering if there was any official feedback on the issue.

EDIT: I should add I'm using Kendo v2013.1.319
Petur Subev
Telerik team
 answered on 06 May 2013
1 answer
609 views
Hi,

I have been following the example http://demos.kendoui.com/web/grid/toolbar-template.html with a variation and I'm stuck. 

I have a grid with multiple dropdownlist and textbox for filtering a kendo grid result. I'm having a problem implementing this but specifically when i try to compare the field value and the value in one of my control (eg dropdownlist value) . I'm trying to compare it to a field in a model list - see Award.AwardTypeID. this might be the cause why it's not working

i have a html input button for the javascript

$('#btnSearch').on("click", function (e) {
        refreshGrid();
        return false;
    });
 
function refreshGrid() {
        $filter = new Array();
        $filter.push({ field: "StudentID", operator: "contains", value: $('#txtStudentID').val() });
 
        if ($('#AwardType').val()) {
            $filter.push({ field: "Award.AwardTypeID", operator: "eq", value: $('#AwardType').val() });
        }
        var grid = $("#Grid").data("kendoGrid");
        grid.dataSource.filter($filter);
        grid.dataSource.read();
    }

Controller 

public ActionResult ApplicationSearch_Read([DataSourceRequest]DataSourceRequest request)
      {
 
          var applications = context.Applications.Include("ApplicationDetails").OrderByDescending(p => p.SubmittedDate).ToList();
          var data = applications.Select(x => new
          {
              ApplicationID = x.ApplicationID,
              SubmittedDate = x.SubmittedDate,
              FirstName = x.FirstName,
              LastName = x.LastName,
              StudentID = x.StudentID,
              IsApplicationSubmitted = x.IsApplicationSubmitted,
              Award = x.ApplicationDetails.Select(y => new {
                  AwardID = y.AwardDetail.AwardID,
                  AwardName = y.AwardDetail.Award.AwardName,
                  AwardTypeID = y.AwardDetail.Award.AwardTypeID
              })
          });
 
           
          return Json(data.ToDataSourceResult(request));
 
      }

Does anybody know how to properly do this?

Thanks,
Aaron
Nikolay Rusev
Telerik team
 answered on 06 May 2013
5 answers
485 views
Hi, pretty simple question that I can't find any example of.

Is it possible to get aggregates for a DataGrid that also has an Ajax DataSource with Server Paging?
Atanas Korchev
Telerik team
 answered on 06 May 2013
1 answer
139 views
Hi,

I want to build a MVC chart with three diffirent line series with their own color and dashtype.
The values of the x-axis are dates with the baseunit weeks and the y-axis consists of double values.

Is it possible to start a second line series at the date where the first serie ends and have a third line at the same time? See the attached chart image.

Should I group data? Should each line have the same amount of items? Is this possible?

Could you give me any leads on this problem?
Thanks in advance
Hristo Germanov
Telerik team
 answered on 06 May 2013
1 answer
285 views
Is there a way I can use the template configuration of chart elements like series, legend, etc, to add a custom class that I can style with my own css?

I can do regular css pathing , like

<style scoped>
div .chart svg g text:hover
{
cursor: pointer;
}
</style>

But I would love a simpler and more elegant solution of just adding and referencing my own specific classes.

Thanks
Hristo Germanov
Telerik team
 answered on 06 May 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
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?