jQWidgets Forums
Forum Replies Created
-
Author
-
February 1, 2014 at 11:20 am in reply to: jquery mobil compatibility jquery mobil compatibility #48762
Hi Peter, safari with user agent iOIS5+ is not working, no click events. Of course we also use real devices for testing.
Now something different: We are using jqwidgets for our desktop web application. Smartphones where supported by Titanium build apps. Now we decided to switch to HTML5. We are wondering whether the jqwidgets framework is suitabled for HTML5 cross browser/device smartphone development. Your mobile demo pages are nice but do not show a generic way how to setup a web page for handling different smart devices. As far as I found out, some magic is happening in simulator.js . A tutorial about setting up a mobile website with jqwidgets would be helpfull.
January 28, 2014 at 3:45 pm in reply to: jquery mobil compatibility jquery mobil compatibility #48531Hi Peter, I found the reason. We are testing our mobile pages with the safari browser, setting the user agent to ‘Safari iOS 4.3.3 – iPhone’. You can reproduce the behaviour with your own demo page for DateTimeInput:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxdatetimeinput/index.htm
Set the user-agent and click the calendar symbol.
The same happens with firefox setting the user agent.
November 11, 2013 at 9:23 am in reply to: exportdata xls: Umlaute and dates exportdata xls: Umlaute and dates #32380Hi Peter,
could you please give me a complete example of exportdata with all parameters ? Are the charset strings the same as the html charset strings, e.g. ‘ISO-8859-1’ ?
This is how we fill the grid:
var ngridsource = {
localdata: alarms,
datatype: ‘array’,
datafields:
[
{ name: ‘AlarmID’, type: ‘number’ },
{ name: ‘DateOn’, type: ‘date’ },
{ name: ‘DateOff’, type: ‘date’ },
{ name: ‘DateAck’, type: ‘date’ },
{ name: ‘AlarmText’, type: ‘string’ },
{ name: ‘AlarmGroupDescription’, type: ‘string’ },
{ name: ‘AlarmTypeDescription’, type: ‘string’ }
]
};
var dataAdapter = new $.jqx.dataAdapter(ngridsource);
$(‘#gridAlarms’).jqxGrid({ source: dataAdapter });September 4, 2013 at 6:34 pm in reply to: Custom row fore- and background color Custom row fore- and background color #28353Hi Peter, thank you very much for your fast response. Thats what we looked for.
Hello Dimitar,
thank you very much for fixing the clipping bug in 2.8.1.
April 13, 2013 at 11:07 am in reply to: Performance problemes since 2.8 Performance problemes since 2.8 #19152Hi Peter,
thank you very much for fixing the performance problem in 2.8.1.
Hi Dimitar,
look here: http://85.214.238.149/timechart2.html
This does not happen with jqw 2.7 .Hello Dimitar,
its a good idea to show basic syntax issues, but it does break running code by updating from 2.7 to 2.8 . So we have to do a complete regression test when we are updating jqwidgets. You should be very carefull introducing changes which will break existing running code at your customers. And if you do so, you should make it very clear in your documentation.
We use the following code to resize the div container:
$(“#chart”).height(h);
$(“#chart”).width(w);
$(“#chart”).jqxChart(“refresh”);But the chart is is not being drawn complete. Its clipped on the right side. See an example here:
March 22, 2013 at 9:06 am in reply to: Drag and drop: originalItem==null Drag and drop: originalItem==null #17713Hi Peter,
our listbox source is an array of objects like { id: 1, name ‘Otto}. When we call
var item = $(“#listBoxA”).jqxListBox( “getSelectedItem” );
then item has the property originalItem, which is the selected array object.
Best Regards,
CarloMarch 14, 2013 at 3:22 pm in reply to: NumberInput decimal separator NumberInput decimal separator #17094Hi Peter,
what about setting the jqWidgets decimalSeparator default value once for all widgets on one page ?
Also setting the theme once would be nice.Best Regards
CarloNovember 22, 2012 at 6:49 pm in reply to: exportdata always calls www.jqwidgets.com exportdata always calls www.jqwidgets.com #11364Hi Peter,
I am still waiting for the ‘exportdata always calling jqwidgets’ bugfix. My bugreport was on September 27, thats nearly 2 month ago.
Best Regards,
KarlheinzNovember 1, 2012 at 8:36 am in reply to: exportdata always calls www.jqwidgets.com exportdata always calls www.jqwidgets.com #10383Hi Peter,
is it possible to get a patch for that bug before your next official release ? I think its only one file involved.
Best Regards,
KarlheinzNovember 1, 2012 at 8:16 am in reply to: exportdata always calls www.jqwidgets.com exportdata always calls www.jqwidgets.com #10343Hi Peter,
is there any news about exportdata always calling jqwidgets ? Our customers are waiting for the export feature.
Best Regards,
KarlheinzOctober 22, 2012 at 1:00 pm in reply to: exportdata always calls www.jqwidgets.com exportdata always calls www.jqwidgets.com #9847Hi Peter,
I downloaded v2.5 source again and the php files are there.
Best Regards,
KarlheinzOctober 22, 2012 at 7:39 am in reply to: exportdata always calls www.jqwidgets.com exportdata always calls www.jqwidgets.com #9824Hi Peter,
missed the API change. But exportdata is still calling jqwidgets. Here is my code:
var url = "http://localhost/save-file.php";alert("Export Start url:" + url); $("#jqxgrid").jqxGrid('exportdata', 'xls', 'test', true, null, url);
P.S.:
Where are the php files in the v2.5 source code ?Best Regards,
Karlheinz -
AuthorPosts