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

I'm wondering if it's possible to create a tabstrip without any icon. Just the text.

Something like that:

<footer data-role="footer">
    <div data-role="tabstrip">
         <a>Sign In</a>
         <a>Register</a>
    </div>
</footer>

P.S. I tried it but I can't find the code in .css in order to remove the background empty "icon" box.
Eyal
Top achievements
Rank 1
 answered on 14 Jan 2013
5 answers
335 views
I am testing the window widget. I need to prepare some desktop like application, so I want to ask you about the minimize event/option for the window and as I see still don't have maximize event and the maximize don't work for parent div/container like in RadWindow. I think minimize option should look similar to telerik RadWindow behavior. Will this be part of the official release? I don't think that this is a big deal feature, but to be honest there is no a really good jquery window widget on the market.
Sebastian
Telerik team
 answered on 14 Jan 2013
1 answer
409 views
I have a series of objects that have a datetime stamp. Is there a way to group them by date, despite the time stamps being different? For instance, if two object occurred on the same date, but at different times, I'd like them to be in the same "Date" group, but sorted by time.

Thanks,
Will

Alexander Valchev
Telerik team
 answered on 14 Jan 2013
5 answers
275 views
Hi

I have a grid that has lots of column and its not align properly and it happen when i scroll horizontally.

thanks


Hennie
Top achievements
Rank 1
 answered on 14 Jan 2013
11 answers
148 views
Hello

I am new to kendoui, and i am testing a new dashboard for a project of mine.

The idea is... i have a pie chart and a line chart on the page, and i can not initialize them at once. 

I am calling $("#container").kendoChart(...); twice.

Either way i try only the first chart loads. When i try to load them individually they are ok, but when i load both i get this:

Timestamp: 01/09/13 18:26:06
Error: on is undefined
Source File: http://pms.igeek.ro/3rdparty/kendo/js/kendo.dataviz.min.js
Line: 10

Have just downloaded kendo ui trial so i have the latest version.

Thanks,

Chris

Any help would be welcome
Hristo Germanov
Telerik team
 answered on 14 Jan 2013
1 answer
328 views
I am working with a server that will return server side error messages in HTML but also have a response status of 200.

jqXHR.getAllResponseHeaders() returns
Server: Apache-Coyote/1.1
X-Powered-By: Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0
x-ua-compatible: IE=EmulateIE7
X-SAS-STP-ERROR: -34
Cache-Control: no-cache, no-store
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 11 Jan 2013 15:17:29 GMT
This is problematic since I need to check the X-SAS-STP-ERROR value

The RemoteTransport class has this important processing kernel in kendo.data.js:
result = cache.find(options.data);
 
if(result !== undefined) {
  success(result);
} else {
  options.success = function(result) {
    cache.add(options.data, result);
    success(result);   // I AM HERE
   };
   $.ajax(options);
} 
at the I AM HERE point the success handler is dispatched but is passed only the result, and thus the handler is missing the statusText and jqXHR (which are available as arguments[1] and arguments[2]).

So my issue is thus:
- Is there a better place to hook in my checks for X-SAS-STP-ERROR: -34 ?
- Should I patch the kendoui library to dispatch with success(result,arguments[1],arguments[2]) ?
- If the check for -34 asserts true is there a way the success handler can prevent/reject default success handling henceforth ?

Thanks,
Richard
Richard
Top achievements
Rank 1
 answered on 14 Jan 2013
3 answers
239 views
Hi
I am using kendo grid and want a column cell to be editable based on the value in other column cell in the grid row.
for example if i have a "xyz"  value in column one then second column in grid should not be editable.
I want to make this custom editing for all rows in the grid .

please guide me to accomplish it.

Regards,

Poonam
Alexander Valchev
Telerik team
 answered on 14 Jan 2013
2 answers
600 views
Sorry if this is explained elsewhere - I've been searching and can't find a simple example of how to do this.

I have just started using KendoUI, specifically a grid.  I would like to be able to click a row in the grid, and have that event send the user to a detail view for the item selected, passing along the ID of the selected item.  It seems like a pretty basic thing, but I can't find an example of this anywhere.  Here's the code I've got right now, which just pops an alert:
@(Html.Kendo().Grid(Model)
    .Name("tblGrid")
    .Columns(columns =>
    {
        columns.Bound(w => w.Id).Hidden();
        columns.Bound(w => w.IncidentType).Width(160);
        columns.Bound(w => w.Location).Width(180);
        columns.Bound(w => w.IncidentDateTime).Width(120).Format("{0: MM/dd/yyyy H:mm tt}");
        columns.Bound(w => w.PostDateTime).Width(120).Format("{0: MM/dd/yyyy H:mm tt}");
    })
    .DataSource(dataSource => dataSource
        .Server()
        .Model(model => model.Id(w => w.Id))
        .PageSize(15)
        .Create("Editing_Create", "Grid")
    )
    .Events(events => events.Change("rowClick"))
    .Groupable()
    .Pageable()
    .Sortable()
    .Selectable()   
    .Filterable()       
)
 
<script type="text/javascript">
    function rowClick(e) {
        alert("click happened, what now?");
    }
</script>
Thanks!

Eddie
Rosen
Telerik team
 answered on 14 Jan 2013
7 answers
233 views

I'm using Visual Studio 2012 and building a very simple web app with the Kendoui Treeview and Editor. The Treeview data source is MS SQL CE 4 connected with Entity framework. Each node click will return text into the Editor on the right. The Treeview needs to be fully editable and drag-n-drop.

The Treeview demo code makes everything look easy, but I'm having trouble. I think your code example built into a downloadable project would more intuitive.
Atanas Korchev
Telerik team
 answered on 14 Jan 2013
1 answer
614 views
I'm wondering whether it is possible to create a line chart without the "bubbles" that are positioned at each data point.  Basically, the chart should look something like the new stock chart... just a smooth line with no indication to mark a specific data point. 

I'm building a line chart that might include hundreds of points.  I don't care to show any tooltips or any other decorations.  Just a line.

Any thoughts?
Hristo Germanov
Telerik team
 answered on 14 Jan 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
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?