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

I am a new programmer with Kendo UI on MVC, I have a question to ask supporter.
I am using Kendo Grid call popup window when I edit button click like code below :

@(Html.Kendo().Grid<tblAttachFile>()
    .Name("tblAttachFile")
    .BindTo(Model.tblAttachFiles)
    .Columns(col =>
    {
        col.Bound(p => p.Attach_File_Name).Title("File Name");
        col.Bound(p => p.Attach_File_Path).Title("File Path");
        col.Bound(p => p.Attach_File_Description).Title("File Description");
        col.Command(cmd => cmd.Edit());
    })
        //.ToolBar(toolbar => toolbar.Create())
    .Editable(ed => ed.Mode(GridEditMode.PopUp).Window(w => w.Name("winEdit").Title("My Test").Content("Loading").LoadContentFrom("Edit", "AttachFile", new { id = 1 })))
    .Pageable()
    .Sortable()
    .Scrollable()
    .DataSource(ds => ds
        .Server()
        .Model(m => m.Id(p => p.Attach_File_ID))
        .Update("Edit", "AttachFile")
        )
)

I want to get Attach_File_ID in to route value in this line 
.Editable(ed => ed.Mode(GridEditMode.PopUp).Window(w => w.Name("winEdit").Title("My Test").Content("Loading").LoadContentFrom("Edit", "AttachFile", new { id = Attach_File_ID })))
When I enter id number like (1, 2, 3) it is work correct.

How can I get dynamic ID in route value ?

This code below is my controller that I want to do :
// GET: /tblAttachFiles/Edit/5
[Authorize]
public ActionResult Edit(int id)
{           
    tblAttachFile tblattachfile = tblattachfileRepository.GetOne(id);
    ControllerHelper.filePath = tblattachfile.Attach_File_Path;
    return View(tblattachfile);
}
 
//
// POST: /tblAttachFiles/Edit/5
 
[AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Edit(int id, FormCollection collection)
{
    tblAttachFile tblattachfile = tblattachfileRepository.GetOne(id);
    try
    {
        tblattachfile.Attach_File_Path = ControllerHelper.filePath;
        ControllerHelper.filePath = "";
 
        tblattachfile.Updated_Date = DateTime.Now;
        tblattachfile.Updated_By = User.Identity.Name;
 
        UpdateModel(tblattachfile);
        tblattachfileRepository.Save();
        return RedirectToAction("Detail", new { id = tblattachfile.Attach_File_ID });
    }
    catch
    {
        ModelState.AddRuleViolations(tblattachfile.GetRuleViolations());
        return View(tblattachfile);
    }
}

Thank advanced,
Sorry For my bad English !
KHUN
Khieu Kim Khun
Top achievements
Rank 1
 asked on 21 Sep 2012
1 answer
153 views
I'm testing my new Kendo Upload tool in an MVC site. I've found in our XP QA machine, using any version of IE, I'm not able to upload any images (I've set to only allow .jpg). I get a permission denied error in my XMLHttpRequest response.

I believe this is because we're showing the MVC site inside of an iframe of another site, and we're getting some kind of cross-domain issue. However if this were the case, would it only be happening in an XP environment, or all of them? Does anyone know enough about Kendo to point me in the right direction?

    @(Html.Kendo().Upload()
        .Name("images")
        .Async(async => async
            .Save("Save", "Upload")
            .Remove("Remove", "Upload")
            .AutoUpload(true)
        )
        .Events(events => events
            .Select("onSelect")
            .Remove("onRemove")
            .Error("onError")
            .Upload("onUpload")
            .Success("onSuccess")
        )
    )
T. Tsonev
Telerik team
 answered on 21 Sep 2012
1 answer
117 views

Dear Kendo support team,

I use Kendo UI grid within a Bootstrap Responsive Layout and  would like to add 2 items to the grid's column menu.

One for increasing the current column width by a certain amount and one for the shrinking the width. Ideally I would like to have an icon as menuitem.

Please give me some advise how to manage this.

Thank you in advance

Petur Subev
Telerik team
 answered on 21 Sep 2012
2 answers
113 views
Hello,

I use kendo-ui datasource and grid with the SharePoint 2010 list odata service. I need to enable batch editing. As mentioned in this article:

http://msdn.microsoft.com/en-us/library/ff798339

the SharePoint 2010 list odata service supports batching though multipart mime messages. It appears kendo ui does batching by sending accross a request per operation type update/destroy/create (in what order?), where each request contains a collection of the objects involved, which requires a parameterMap as follows:

                parameterMap: function (options, operation) {
                    if (operation !== "read" && options.models) {
                        return { models: kendo.stringify(options.models) };
                    }
                }

Does kendo ui support the multipart mime message way of doing batching?

cheers

Remco 
Remco
Top achievements
Rank 1
 answered on 21 Sep 2012
6 answers
807 views
Is it possible in the grid to select multiple rows and edit them as 1? So can I select 20 rows and with one click set some value to true?

Nohinn
Top achievements
Rank 1
 answered on 21 Sep 2012
0 answers
245 views
Hi All,
The list of elements shown in a listview are not getting paged depending on the no. entered in the code in cshtml.
For example :

@(Html.Kendo().ListView<Kendo.Mvc.Examples.Models.ProductViewModel>(Model)
    .Name("listView")
    .TagName("div")
    .ClientTemplateId("template")
    .DataSource(dataSource => {
        dataSource.Read(read => read.Action("Products_Read", "ListView"));
        dataSource.PageSize(12);
    })
    .Pageable()        
)

Though we mention 12 in the pagesize, I am getting all my records to the view. Please help how to show the no. of
records as per our choice.


Regards,
Rohit


Rohit
Top achievements
Rank 1
 asked on 21 Sep 2012
3 answers
1.3K+ views
Hi,

How do I prevent dataSource from making request to server?
I have a costly set of data and so stored the JSON in client cache (local storage), so that even after the user navigate away from the page and back, already read data from server would be available rather than making another call to receive same data back again.

I am using local cache to store the data once read from server and want to prevent dataSource from making subsequent request when found in cache.

I tried the following, but it did not work, is there anyway to achieve this?

    var ds = new kendo.data.DataSource({
        transport: {
            read: {
                url: 'url to get data',
                dataType: "json"
            }
        },
        change: OnDataChange,
        requestStart: OnDataRequestStart
    });
 
function OnDataChange(e) {
    if (IsDataRequested) {
        // save it to cache
        $.jStorage.set("LargeData", e.sender.data());
        IsDataExists = true;
        IsDataRequested = false;
    }
}
 
function OnDataRequestStart(e) {
    if (IsDataExists) {
        e.preventDefault();
    }
    else {
        // Check if "key" exists in the storage
        var value = $.jStorage.get("LargeData");
        if (value) {
            IsDataExists = true;
            e.preventDefault();
            e.sender.data(value);
        }
        else {
           // Read data from server
            IsDataRequested = true;         }     } }

Thanks
Muthu
Alexander Valchev
Telerik team
 answered on 21 Sep 2012
6 answers
479 views
Hello,

I'm trying to use Kendo UI with a MVC 4 app but I get the following error:

Object doesn't support property or method 'on'

I've tried including the jquery.min.js that comes with Kendo but it still does not work. MVC uses jQuery v 1.6.2 by default.  I've also tried removing the 1.6.2 reference and using the 1.7.1 (aka jquery.min.js that comes with Kendo), but that too causes other code to fail.  Any suggestions would be appreciated.

- Rashad
Rashad Rivera
Top achievements
Rank 1
 answered on 21 Sep 2012
0 answers
148 views
I have an object with data I that I want to use to fill a list. When someone clicks a link it triggers the javascript below and the value from e.view.params.street_id is taken (for example: 2) and filters the obj's street_id field. I then want to take data from the filtered objects in the "addresses" parameter, and fill #template (below) with the data from that. Can I do that? and how?

<script id="template" type="text/x-kendo-template">
        <span>${street_number}</span>
       <span>${notes}</span>
</script>

var obj = [
    {
        "street_id": "1",
        "street_name": "First St",
        "addresses": [
            {
                "street_number": "100",
                "notes": "Example notes..."
            },
            {
                "street_number": "101",
                "notes": ""
            }
        ]
    },
    {
        "street_id": "2",
        "street_name": "Second St",
        "addresses": [
            {
                "street_number": "200",
                "notes": ""
            },
            {
                "street_number": "201",
                "notes": "Test notes..."
            }
        ]
    }
];
 
var template = kendo.template($('#template').html());
 
var dataSource = new kendo.data.DataSource({
    data: obj,
    filter: {
        field: 'street_id',
        operator: 'eq',
        value: e.view.params.street_id
    },
    change: function() {
        $('#streets').html(kendo.render(template, this.view()));
    }
});

dataSource.read();
Vince
Top achievements
Rank 1
 asked on 20 Sep 2012
4 answers
233 views
With reference to the attached image

Following is the behavior:
  • Issue happens only on the first drop panel that is clicked, once its open it doesn't close, all the other combos work except the first one that is clicked.
  • Issue does not happen when there is more content on the page, basically page height is large enough.

We are using Select tag and convert it to combobox

$(this).kendoComboBox({
    filter: "contains",
    height: 200,
    change: function (e) {
        if (this._selected == null) {
            this.text("(None)");
        }
    }
});

We are using:
jQuery v1.7.1
Kendo UI v2011.3.1129
ASP.Net MVC 3 (not sure if that matters)

Adrian
Top achievements
Rank 1
 answered on 20 Sep 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
Gauges
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
OrgChart
TextBox
Effects
Accessibility
ScrollView
PivotGridV2
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?