Telerik Forums
Kendo UI for jQuery Forum
7 answers
636 views
I have a kendo grid that is attached to a datasource. Users are able to apply filters on the grid and I'm wondering if there is a way to extract the data after the filters are applied?

The reason for this is that I can then send the filtered data to the server and export to csv/excel. Currently my export works, but doesn't take into account any filters. It exports all the data from the grid.

Thanks!
Hattan Shobokshi
Top achievements
Rank 1
 answered on 12 Jul 2012
0 answers
97 views
HI,
    When I bind gird to a remote datasource,should I return all the data at server? actually,I just want to show one page,how should I do that,and,where can I define the total record count or total page? Waiting for your answer,3Q :)
Tian
Top achievements
Rank 1
 asked on 12 Jul 2012
1 answer
163 views
Hi,

Is there a way to obtain the dataSource object that is bound to the details grid in a hierarchical grid. I have editable columns in the details grid and need to add rows to the details grid at runtime.

Regards,
Sarvesh
Petur Subev
Telerik team
 answered on 12 Jul 2012
1 answer
144 views
I made a few posts in these Kendo UI forums and I apperantly received some points from the admins. What do these points do, and how can I redeem them?
Dimo
Telerik team
 answered on 12 Jul 2012
4 answers
813 views
When the grid is initilalised, and waiting for its first data set to be returned from the remote datasource, the loading indicator doesn't show, which makes it unclear to the user that data is being loaded...

Is this a bug, or is there a way I can change this behaviour?

It works perfectly fine when going to another page; then we have a nice loading indicator when data is being fetched...
Gary
Top achievements
Rank 1
 answered on 12 Jul 2012
2 answers
197 views
Hi, I question whether pageable parameter: {pageSizes: true} it is possible to give individual values? Currently there are 5, 10, 20, and I need 25, 50, 100. I searched the documentation, but for now there is no information about this parameter.

Regards/Pozdrawiam,
Paweł Kasztelan
Paweł
Top achievements
Rank 2
 answered on 12 Jul 2012
1 answer
173 views
Hi
I have a ListView in a tabstrip with a button like the Sushi Demo and i want that when i click on the button the application open the detail view in the same view.
How can i do this?
thanks Elios 
d2uX
Top achievements
Rank 1
 answered on 12 Jul 2012
1 answer
178 views
Is there no easy way to pop an item from an array?

Take this code for example"

<div id="kendo-bound-resourcelist" data-bind="visible: isVisible" >
                    <div data-role="grid" data-sortable="true" data-bind="source: items" data-columns='["Title", "PMID", "TypeOfMaterial",""]' data-row-template="row-template"></div>
                </div>
 
                <script id="row-template" type="text/x-kendo-template">
                      <tr class="k-grid-edit-row">
                          <td>
                            <span data-bind="text: Title"></span>
                          </td>
                          <td>
                            <span data-bind="text: PMID"></span>
                          </td>
                          <td>
                            <span data-bind="text: TypeOfMaterial[0]"></span>
                          </td>
                          <td>
                            <input type="button" data-bind="click: deleteItem" value="Delete" />
                          </td>
                      </tr>
                </script>

Ok so on click we call the delete in the model
this._viewModel = kendo.observable({
                items: [],
                isVisible: function () {
                    return this.get("items").length > 0 ? true : false;
                },
                deleteItem: function (resource) {
                    this.get("items").pop(resource);
                }
            });

So why doesn't this work? :/  It's just popping off the last item in the array instead of the item I'm giving it. 

I've tried doing things like this, but end up at the same result
var deletedId = resource.data.Id;
var items = this.get("items");
 
for (var i = 0; i < items.length; i++) {
    if (items[i].Id === deletedId) {
        this.get("items").pop(items[i]);
    }
}

What am I doing wrong?
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 12 Jul 2012
1 answer
71 views
Hi everyone,
 I am new to Kendo Ui and was wondering where the best place to start would be???
_______________________________________________________________________
Thanks,
Cory Carter
CPA Freedom Review
Dimo
Telerik team
 answered on 12 Jul 2012
2 answers
145 views
Hi,

I have been evaluating Kendo UI and reading about it online and its FAQs. There is something not clear that I would like to ask.

The First question in the FAQ is "What is Kendo UI ?"
and the answer is:  Kendo UI is a HTML5, jQuery-based framework for building modern HTML apps......

Then there is a Question: : Is Kendo UI based on jQuery UI?
To which the answer is: No, Kendo UI is not based on jQuery UI.

So I would like to understand what is the relation between KendoUI and Jquery and why is it important to include Jquery to use KendoUi?

Thanks and regards

AMZ
AMZ
Top achievements
Rank 1
 answered on 12 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
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?