Hi
I have a json file in the following format.
[{"collection_id":"1","collection_name":"Titles",
"properties":[{"property_id":"2","property_name":"name",
"property_data_type":"string","property_column_order":1}],
"values":[{"row":1,"row_values":[{"property_id":"3","property_value":"Mr."}]},
{"row":2,"row_values":[{"property_id":"4","property_value":"Ms."}]},
{"row":2,"row_values":[{"property_id":"5","property_value":"Missus"}]}]}]
I want to display it in following format in the kendo grid(just one column "name")
I know it's not crucial since FF isn't used on the mobile platforms much, but I prefer the debugging experience when I write my mobile app with FF and FB.
When I load the mobile examples in a phonegap xcode project, the footer is not anchored, but moves with the whole page. The header/nav bar is sometimes not visible (depending on the height of the view?)
This seems to occur mainly in iPhone, on the iPad it seems to be a bit better, but there the header & footer do move with the whole view, when the view does not neet to scroll (when it fits).
On android it works fine.
Hopefully this can be resolved, it looks really good!
Antal
Attached is minimal phoneGap xcode project with the examples
I have an application which has in fact one html page and loads content through ajax calls. The returned content can contain a grid.
That works all just fine. But what I notice is that the grid creates forms for the filter dialogs in the DOM direct inside the BODY tag. While I change the content of my "content div" the grid is remove from the DOM, but the filter forms are left in the BODY tag forever. So the content of the BODY is accumulating during the browser session.
I think the widgets should create ALL DOM elements inside the element you are using to build the widget. That way everything would be cleaned up when swapping content.
I have a panelBar and when I click on the header of a panelBar the event (onExpand) fires and the bar gets expanded. But when I do it in code like panelBarField.expand(item); the expand event is not executed BUT the bar is expanded and all looks good.