jQWidgets Forums
Forum Replies Created
-
Author
-
April 18, 2013 at 1:36 pm in reply to: Viewport jump scrolling abnormally Viewport jump scrolling abnormally #19550
Problem SOLVED with 2.8.1 version
April 9, 2013 at 11:11 am in reply to: Viewport jump scrolling abnormally Viewport jump scrolling abnormally #18881Hi all,
I have the same problem also with 2.8 version:
March 12, 2013 at 4:11 pm in reply to: Problem with windows dragging Problem with windows dragging #16848The problem is exactly the same reported in this post:
http://www.jqwidgets.com/community/topic/viewport-jump-scrolling-abnormally/
I’ll wait for solution.
Ok, thanks.
Best regards
The example is not available in 2.5.0. Do you confirm that the functionality is present from 2.5.5 version?
Thx
Is it possible to have download package of 2.5 version ? Unfortunately I’ve lost it
jqxWidgets version is old… 2.5.0. Updating to the latest version is in roadmap.
My dataAdapter initialization code:
var source = { localdata: sources, datatype: "json" }; var dataAdapter = new $.jqx.dataAdapter(source);
Sources is an array on which JSON.stringify method has been applied.
I have a datasource in Json format like this:
"[{"id":2,"parentId":1,"text":"[String] host","tag":"host|String|host"},{"id":3,"parentId":1,"text":"[String] category","tag":"category|String|category"},{"id":4,"parentId":1,"text":"[Integer] eventCode","tag":"eventCode|Integer|eventCode"},{"id":5,"parentId":1,"text":"[Integer] eventIdentifier","tag":"eventIdentifier|Integer|eventIdentifier"},{"id":6,"parentId":1,"text":"[String] message","tag":"message|String|message"},{"id":7,"parentId":1,"text":"[Integer] recordNumber","tag":"recordNumber|Integer|recordNumber"},{"id":8,"parentId":1,"text":"[String] rawMessage","tag":"rawMessage|String|rawMessage"},{"id":9,"parentId":1,"text":"[Date] timeGenerated","tag":"timeGenerated|Date|timeGenerated"},{"id":10,"parentId":1,"text":"[String] ownDesc","tag":"ownDesc|String|ownDesc"},{"id":11,"parentId":1,"text":"[String] domain","tag":"domain|String|domain"},{"id":12,"parentId":1,"text":"[String] user","tag":"user|String|user"},{"id":13,"parentId":1,"text":"[String] accessId","tag":"accessId|String|accessId"},{"id":14,"parentId":1,"text":"[String] accessType","tag":"accessType|String|accessType"},{"id":15,"parentId":1,"text":"[String] originalMachine","tag":"originalMachine|String|originalMachine"},{"id":16,"parentId":1,"text":"[String] originalIp","tag":"originalIp|String|originalIp"},{"id":17,"parentId":1,"text":"[String] originalPort","tag":"originalPort|String|originalPort"}]"
I bind the text field how displayfield but i view in the grid always the datafield (tag).
This is my jqxGrid definition:
$("#gridStepSixMapping").jqxGrid( { width: 400, theme: 'classic', source: dataAdapter, pageable: true, autoheight: true, altrows: true, enabletooltips: true, editable: true, columns: [ { text: 'Mapping', displayfield: 'text', datafield: 'tag', width: 200, editable: false }, { text: '@Resources.Global.Path', datafield: 'source', width: 200, editable: false }, ] });
Thx you
-
AuthorPosts