As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I've searched for client side javascript chart which supports KO.js but haven't been able to find one.
Has anyone have had any experience with charts that supports KO.js? Reason I'm after KO is that when user toggles the chart parameters, the chart should get rendered automatically for selected parameter.
Have you checked out Wijmo? It includes charts and several other widgets, all with KnockoutJS support:
http://wijmo.com/widgets/mvvm-support/
There's a sample on CodeProject that shows how to build a stock portfolio application using KnockoutJS and the Wijmo line chart widget:
http://www.codeproject.com/Articles/424656/A-Stock-Portfolio-Application-Using-KnockoutJS
You likely won't find that anytime soon; Good charting solutions or libraries in general don't take a stance over which particular application framework to use. In the (segmented) world of JS, one has to write adapters all the time (the most famous one being framework X to JQueryUI widgets); The devs at squareup plugged EmberJs with d3 so I see no reason why one couldn't do the exact same with knockout.
http://corner.squareup.com/2012/04/building-analytics.html
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am currently making an app that allows third-party developers to create widgets for it using the API. Right now, I ship a library with the application containing a class that developers must create a subclass of. They must package their program in an NSBundle for my app to load.
Have you guys ever created an Objective-c APIs? If so, do you have tips to tell me?
Thanks
If your goal is to provide documentation for your API I would suggest you to use doxygen. Here you'll find an interesting tutorial on how to document with doxygen.
I would also recommend you reading API Design by Matt Gemmell. It's a good reference on what a developer could expect from a well designed API.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am working on a new project , in which the GUI part is built on top of GWT(Google window toolkit),as I have to make few changes in GUI part , Please advise me some viedeo tutorials for GUI , although I am going through http://www.mkyong.com/google-app-engine/google-app-engine-hello-world-example-using-eclipse/
but please advise some best tutorials specially the viedeo one.Thanks in advance
also please advise google web toolkit and google app engine are they two different independent things.
Here you can start with tutorial of helloworld..
And then have a look at Architecture building with GWT
Finally with Remote procedure calls (hitting backend).
And finally your second Question GWT with App engine
And I'm suggesting to have a look at GWT showcase and as well as code samples.
And the best GWT examples site roughian
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
The options that the standard UI palette, while OK, are not the most exciting. Before I go down the road of making some custom elements, I was wondering if there exist any UI toolkits for Android that people knew about? Or are there any theme toolkits (besides the ones included with Android) that make things look better or add more functionality?
I am looking for something like Twitter's Bootstrap for Android. Or something like jQuery which makes JS better. Does such a thing or something similar exist for Android?
Yes, there are a lot of libraries available. Here are a few:
http://www.droidux.com/
http://code.google.com/p/android-misc-widgets/
https://github.com/ragunathjawahar/simple-section-adapter
https://github.com/jgilfelt/android-viewbadger
https://github.com/ragunathjawahar/deselectable-radio-button
http://code.google.com/p/android-wheel/
https://github.com/johannilsson/android-pulltorefresh
http://actionbarsherlock.com/
http://www.senab.co.uk/portfolio/pull-to-refresh-for-android/
https://github.com/cyrilmottier/GreenDroid
http://hansel-and-gretel.com/
https://github.com/JakeWharton/Android-ViewPagerIndicator
https://github.com/pakerfeldt/android-viewflow
http://code.google.com/p/android-coverflow/
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
In Zend_Form_Element. I see addValidators(), but not in Zend example, and the book. They only show me about "NotEmpty" , and "EmailAddress".
Also have ->addFilter('StripTags') and "StringTrim" or "Int"
I want to know is there more value for addValidators() & addFilter() (not only "NotEmpty" and "EmailAddress", right?)
But I can't find any link on Zend website.. Their document is hard to use.
Any one give me a list of those values or link to some page I can learn.
You have it also in your project in library/Zend/Validate and library/Zend/Filter
The Reference Guide is the place to be looking for useful information.
See the Standard Validators page from the Zend_Validate section which shows all the built in validation classes you can use, and a similar page for Standard Filters from the Zend_Filter section.
The API Documentation gives you a full outline of all the classes and their methods, but if you are new to ZF it can be hard to find what you are looking for in the API docs. The reference guide is where you will probably be spending a lot of your time reading and learning from examples.
Zend_Form_Element works seamlessly with Zend_Validate classes, so you are able to 0 or more Zend_Validate_* classes to your form elements to validate them against a set of rules instead of manually writing code to validate input.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
My friend thinks that Drupal is a much better framework than Zend, I however, think it's an unfair comparison. What are your thoughts?
They are two different products altogether. Drupal is not a framework, it is a Content Management System. This allows for distributed publishing, workflow and much more. It can be extended through plugins to provide additional functionality.
Zend Framework is a web application framework. It gives a common set of tools, services and code that can be used to build a site. It does not give you a site unless you put these items to some use first.
Think of it this way:
If you wanted to build a Content Management System like Drupal from scratch, you would use a Web Application Framework like Zend Framework to shortcut a lot of the standard elements you would need such as session management, email, database abstraction layer etc.