Telerik Forums
Kendo UI for jQuery Forum
0 answers
105 views
Hi evrybody !
where is the kendoUI themebuilder ?
z
Top achievements
Rank 1
 asked on 19 Jul 2012
1 answer
297 views

Requirements

Kendo UI v2011.3.1407


1.7


IE, FF, Chrome


Window



PROJECT DESCRIPTION 
I want to use the Keno UI Window widget in our training web pages.  It would require there be multiple pop-ups using the Window function throughout each course page (sometimes 20-30 images).  Do you have any guidance or examples on using the Window widget in this fashion?
Ravi
Top achievements
Rank 1
 answered on 19 Jul 2012
3 answers
208 views
hi,
I have a panel bar and grid.I want to display grid inside the panel bar.I loaded the panel bar using ajax.I created the grid in a separate view.I have loaded the grid inside the panel bar using "contentUrl".it is displaying in side the panel bar but the grid is displaying two times as shown in the following attachment. can u tell me what is the reason for displaying the grid multiple times.
charan
Top achievements
Rank 1
 answered on 19 Jul 2012
0 answers
89 views

When grid is embedded inside the tabstrip the reorderable of column does not work.
Example for this is created in jsfiddle

http://jsfiddle.net/vraj/8CAwf/63/ 

Grid is embedded in second tab

Can you give a better idea to solve this issue
Vimal
Top achievements
Rank 1
 asked on 19 Jul 2012
0 answers
100 views
HI:

i was wondering if it is possible to have ability like the tooltips in the kendo ui dropdownlist, to show the information for each item in the list?
Justin
Top achievements
Rank 1
 asked on 19 Jul 2012
7 answers
1.5K+ views
I want to read from an array and perform CRUD operations on this array but am struggling to find examples of this as all the transport:read examples read the data from a URL instead of an array.

The below works but does not need the CRUD operations

function listTicketsInit() {     
     
    var ticketdata = <?=json_encode($tickets)?>;
      
     var ticketDataSource = new kendo.data.DataSource({
         data: ticketdata,
         dataType: "json",
         schema: {
           model: {
               id: "ThreadID",
               fields: {
                   DateCreated: "DateCreated",
                   ThreadID: "ThreadID",
                   Subject: "Subject",
                   Closed: "Closed"                       
                  }
              }
          }
      });
 
     $("#support_list").kendoMobileListView({
         dataSource: ticketDataSource,
         //pullToRefresh: true,
         appendOnRefresh: true,
         style: "inset",
         template: $("#support_list_template").text()
     });
      
}

The below does not work with and I get "g is undefined" error.  Im not sure of the syntax and how to  get it to read from the array.

var messagedata = <?=json_encode($messages)?>;
 
var messageDataSource = new kendo.data.DataSource({
     
  data: messagedata, 
  
  transport: {
      update: {
          url: "/messages/markasread/<?=$message->message->id?>/0",
          type: "GET"
      },
      destroy: {
          url: "/messages/delete/<?=$message->message->id?>",
          type: "GET"
      }
  },           
     
  schema: {
    model: {
        id: "id",
        fields: {
            created: "created",
            message: "message",
            customer_name: "customer_name",      
            isnew: "isnew",      
           }
       }
   }
 });
 
$("#message_list").kendoMobileListView({
    dataSource: messageDataSource,
    //pullToRefresh: true,
    appendOnRefresh: true,
    style: "inset",
    template: $("#message_list_template").text()
});


Can anyone advise?
Keith
Top achievements
Rank 1
 answered on 19 Jul 2012
0 answers
96 views
I noticed that the tabstrip in our app was very large on the iPhone 3gs until I saw it on a 4s.

I have read here about the ability to resize http://www.kendoui.com/forums/mobile/tabstrip/width-height-icons-on-tabstrip.aspx but wouldn't that make it smaller on the 4s too?

Isn't there some 'auto' resize function in the framework that deals with device resolutions and tabstrip icon sizes?



 
Ben
Top achievements
Rank 1
 asked on 19 Jul 2012
0 answers
93 views
Do you have any simple example of what do I need to add, CSS links, or JS links in order for my application to look metro?
Mauricio
Top achievements
Rank 1
 asked on 18 Jul 2012
0 answers
99 views
I'm trying to implement a grid customization that combines inline editing with popup editing. I've created a sample jsFiddle to demonstrate what I'm trying to accomplish.

I *almost* have it working, but the issue that I'm seeing is that the address values in the popup editor always get saved when you change them, even when I cancel out of the edit.  I want to be able to have those values roll back to the original, similar to how the standard editing works.  I'd be open to flattening out the model if it makes things easier, but I would still need to support the dual editing functionality.

(Also, in Firefox for some reason it only updates the first address field and not the second.  But this is less of an issue, at least for right now).

I know I'm doing something a little incorrectly, I just need help seeing what it is.  Much appreciated.

AT
Andre
Top achievements
Rank 1
 asked on 18 Jul 2012
8 answers
349 views
We have a 20 Million record table in PostGIS (spatial version of PostGRESQL). There are 18 columns (mostly text, some integer) and one spatial geometry (a bounding box).

The records describe the metadata for geospatial images (GeoTiffs, etc.)

We are looking for a means for a user to browse and search this database.

While I am very familiar with your silverlight offering Which does a have a map (and that is the overview we might like).

I am not familar with  your back-end database, nor your new KENDO HTML5 product.

Our target client platform is Android, IOS, Web Browsers, and plugins to existing tools (GoogleEarth GoogleMaps, WorldWind). So Silverlight is not a good choice.

Can you help me determine which of your products I should be looking at for the back end?
(ORM? I already have a PostGIS .NET API, but if yours works faster that would be fine).

As well as what I should have on the client? (Kendo? But it does not have a map. Do I use OpenLayers?) We also want grid and chart displays of the results.

As well as the protocol that would be connecting the two: (JSON? But what if I have 4,000 records returned? Can I GZIP the response). I assume I want to virtualize the replies.

Thank you
Dr.YSG
Top achievements
Rank 2
 answered on 18 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
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
AICodingAssistant
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
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?