Javascript library for dockable panels/tabs? [closed] - javascript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In the process of converting a .NET rich application to Javascript. One of the GUI features folks liked a lot was to rearrange their application layout. In .NET this was accomplished via Sandock:
http://www.divelements.com/net/controls/sanddock/screenshots.aspx
Anything like this for Javascript?

The closest I know to that is the javascript library ExtJS. I've used it in a few projects very successfully since it allows you to create rich Web UIs very similar to windows UIs (or widgets).
The learning curve can be a bit steep though if you aren't that familiar with javascript, however the community is quick to respond and helpful.

If ExtJS is not your cup of tea, there is a rather nice jquery port of the same concept.
Demos here:
http://layout.jquery-dev.net/demos.cfm (particularly this)

I needed this very thing, and did not find any to my liking so I decided to write my own. It is almost complete, but you can check it out here:
Edit: Still being developed actively, but fully functional now.
http://docker.webcabin.org/

If you are still looking for a javascript dock panel implmentation, I just created one myself. You can find it at https://github.com/developerDoug/HtmlJavascriptDockInVS2010

Related

Looking for ReactJS library to create flows/diagrams [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm looking for a react component or a javascript library for creating flows/diagrams.
I need to customize and have various types of nodes.
There aren't many great flow and diagram libraries out there, and even fewer focus on React.
I suggest looking into a generic solution that integrates well with React.
If this is in a commercial context and/or your requirements are non-trivial, be sure to check out yFiles for HTML, which is the most powerful library available when it comes to sophisticated diagramming. It also comes with many React-specific diagramming features like the React Diagram Integration Demo. This allows you to use all the features in a React powered application.
Disclaimer: I work for the company that creates the mentioned library. I do not represent my employer on SO, though. This is my very own opinion.

Front-End Website learning sources [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've seen a lot of awesome websites from Awwwarrds ranking and trying to learn how they made their websites, all their effects are just wonderful and beautiful. But I have no clue how to do something similar, I understand this involves a lot of javascript. Is there somewhere on the internet I can learn how to achieve this? I only understand javascript to the part of using packages like JQuery.
For example what i saw.
I just want to know where I can learn the basic of this effects, and able to make something great as they can.Any recommend source?
I maybe a bit biased being newbie as well, but i found most useful resources for me are:
freecodecamp.org //Absolutely free, contains huge amount of topics
(HTML, CSS, Bootstrap, JS, JQuery etc, you name it)
eloquentjavascript.net //A book, well, actually THE book for me.
Covers almost everything needed to get started
You-Dont-Know-JS //Same as above, amazing read
I hope you will find something useful.

How to add charts to a React.js app without using a totally different coding style? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there a charting library that jives with how React.js asks you to do things? It seems like the chart should be a component.
D3.js seems to be the most powerful charting library out there, but it requires a lot of direct DOM work, which is the exact opposite of React.
Would there be a way to get those two libraries to play nice with each other? If not, is there an alternative to D3 that does work well with React?
Checkout high charts react library. https://github.com/kirjs/react-highcharts
From personal experience, I have found that by far the best way to render charts in RN is via a WebView. I worked on a cross-platform solution for messaging between RN and the WebView: https://github.com/jjshammas/react-native-webview-bridge
Alternatively, you may want to look into ReactART, which is unfortunately generally undocumented when it comes to using it in ReactNative. It does have a very strong relationship with RN, though it does not have all of the functionality of traditional vector rendering libraries. Take a look: http://browniefed.com/blog/2015/10/14/react-native-morphing-svg-paths-with-react-art/

What JavaScript library can you recommend? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want to use JavaScript on my web page. In particular I would like to have a auto-completer (like stackoverflow use for tags). I also would like to have drop down menus and so on.
I think, for these purposes it make sense to use a JavaScript library (I never did it before). I browsed Internet the first option that I found was jQuery, I also found a list of other libraries.
So, I have a hard time choosing between these libraries and would like to ask your advise. My requirements to the library as as follow:
Of course cross-browser functionality (works on as many browsers as possible).
Easy to use (good documentation with examples + active community).
Possibility to change the code (corresponding copy right + good documentation of the code).
Thank you in advance for any help.
Go for jquery and jquery UI which contains a nice autocomplete plugin. It's a javascript framework which gathered lots of pace, there's an enormous community and it is very likely you will find a plugin for every needs. It is guaranteed to work cross browser and you get a great documentation.

Looking for a web based, client side form editor [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for a javascript library (could be based on jQuery) that will implement a client side Form Editor.
The perfect example is something like offered by http://wufoo.com/
You should play with their free version to get the feeling of what I'm trying to find.
Also see this example someone made with jQuery. it is very basic, but a step in the right direction.
Do you know of any jQuery plugin or library that will give me the full functionality of form editing?
I would recommend the awesome ExtJS framework to build such kind of application. Here's an example of what you can do.
ext/formbuilder
Add a form panel, then drop a textbox and so on...dead simple. Ext JS 2.2 and 3.0 (not yet ready) are LGPL and GPL licensed, you have also commercial subscriptions available, I think it worth to have a look at it.
Try the jQuery Form Builder plug-in from Botsko
I had the same problem and wrote one. Github link: SpiffForm.

Categories

Resources