jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Peter,
Thank you very much for your incredibly rapid answers !
1) You’re right it’s not a JQwidgets’ problem
The problem was in my c# code. I put a stopwatch before the return Json(…).
For an obsure reason the Json function didn’t take care about the lazy properties on my Entity Framework classes and create an uselessly big answer.2) Don’t you know a trick to allow me to change the combobox in a readonly one ?
Best Regards.
Fernando.
April 12, 2015 at 1:19 pm in reply to: DataAdapter and 2 jqxComboBox DataAdapter and 2 jqxComboBox #69786Hello Dimitar,
Sorry for my late answer.
You were right : the loadError helps me to find my problem.
IT WASN’T A JQWIDGET’S ONE !
I had a problem in my asp.net’s controller. It was an obscure limitation about Json() function.
To resolve it here is the answer (in C# inside my controller):protected override JsonResult Json(object data, string contentType, System.Text.Encoding contentEncoding, JsonRequestBehavior behavior)
{
return new JsonResult()
{
Data = data,
ContentType = contentType,
ContentEncoding = contentEncoding,
JsonRequestBehavior = behavior,
MaxJsonLength = Int32.MaxValue
};
}I hope it would be useful for someone.
Congratulations for this wonderful javascript framework .Fernando.
January 7, 2015 at 8:47 am in reply to: Basic problems with the Chart component Basic problems with the Chart component #65047Hi Dimitar,
1) Effectively it works better when the programer writes correctly the property’s name ! IT WORKS !!
3) I’m gonna search by myself about my JSFiddle’s problem. IT WORKS !!Thank you very much for your fast and helpful answers and congratulations for your astonishing javascript library.
Best Regards from France.
Fernando.
January 6, 2015 at 3:10 pm in reply to: Basic problems with the Chart component Basic problems with the Chart component #65032Hello Dimitar,
Thank you very much for your very fast answer.
1) I have made the modifications but it doesn’t work.
see : http://jsfiddle.net/fernando60/ujnks7wh/5/
I think it’s a problem of colorscheme but I don’t how to solve it.2) With your help I’ve used emptyPointsDisplay: ‘skip’ and it works perfectly welll.
3) I have tried the code inside http://jsfiddle.net/fernando60/ujnks7wh/5/ uncommenting the source with the url on different computers with different browsers and it doesn’t work. I must recognize it’s a JSFiddle problem !
Best Regards.
Fernando.
-
AuthorPosts