Primefaces wizard showing progress - tabs

I want to use Primefaces to display a wizard pretty much similar to the one shown in the showcase, but with some kind of tabview that displays the progress of the user, thus combining the wizard with the tabView.
Because I think this is quite a common requirement I was wondering if anyone tried the same and could give me some suggestions on how to do it?

Checkout primefaces latest release 2.2 that has a new feature of wizard progress step by step

Related

ViewData & Model does not exist in the current context

I have a .Net Core 1.1 project using VS 2017 EF Core. When I created a new view, I received the does not exist in current context error on the ViewData, the Model, and even the #model. In trying to fix the problem, I ended up updating my packages which only gave me more errors to resolve. I'm not running .Net Core 2.0 because of the update. The other views in my project are not having this issue. I created only one other view and I ended up having the same problem with it, but just on #model and it went away...don't ask me how or why. For this model, I can't seem to find a solution. I rebuilt the project. I deleted the view and recreated it to no avail. Now, #model seems to be fine, but the view model is not found and I don't have intellisense within my view for anything. The ViewImports file has everything in it that's required. I have fully qualified the model in the view and that doesn't help. I have 36 errors and most of them are pointing to line 1, which is my "#model TournamentScheduleViewModel" statement. So, I figure something is missing. I hadn't done any updates to it prior to this problem. Below is a snapshot of the view I'm having trouble with and one of some of the errors I'm seeing in my error list. I've searched the web and haven't found anything that resolves my problem. Any assistance would be greatly appreciated. This is driving me nuts and I'm ready to proceed with my project. If you'd like to see more code or info, please let me know. Thanks.
Also, forgot to mention that when I press F5 or ctrl-F5, the website comes up in the browser even with all of the errors. I can click and still view the page, only a portion as it's not entirely working properly.
Not sure at this point what the problem was regarding why my view model, 'Model', and 'ViewData' wasn't recognized in my view, but I started over and created another .net core 1.1 project and copied all of the files and modifications over to the new project and everything works fine. The view that was causing me so many problems works like a charm.

Understanding Ruby Rendering

I am very new to ruby on rails and I am using Ruby version 1.9 and its newer syntax.
I have managed to create a small application where I store statistics in 1 large database table. This table can be viewed and edited with no problems via rails.
Now, I am trying to add several different mini views of this table to the Home page, Where I might list the top 10 users by upload then download.
I have successfully created the 1st for upload, is there away I can use the same code with different query options.
Are there any good tutorials in this area?
Is it relatively easy to add graphs from the same table on to the home page?
Is it possible to make the homepage refresh when ever a change occurs in the database table?
I know I am probably asking very basic questions so any pointers to good tutorials or books would be of great help.
Read this tutorial on basics how to render templates in ror.
http://guides.rubyonrails.org/layouts_and_rendering.html
http://api.rubyonrails.org/classes/AbstractController/Rendering.html
For chart you can use this, github.com/ankane/chartkick
Page should refresh when any changes detected in database, for that you can visit ActionController::Live of rails casts.
http://api.rubyonrails.org/classes/AbstractController/Rendering.html
For Rails Tutorials you can find out these
http://www.tutorialspoint.com/ruby-on-rails/
http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
Coming to Charts you can use gruff gem it is very easy to implement and for dynamic charts you can go for highcharts
http://www.highcharts.com/
https://github.com/topfunky/gruff
Give this a try.
The Rails View: Create a Beautiful and Maintainable User Experience
- by John Athayde and Bruce Williams
http://pragprog.com/book/warv/the-rails-view

php 4 / mysql jstree example from luban.danse.us - Anyway to port this functionality to the new version of jstree? (v1)

Having tried to use the example for php/mysql at http://jstree.com/demos I have realized that I needed extra functionality and as well noticed that this works only with PHP 5 due to some errors that Firebug was prompting for the output. I then started to look for more documentation on jstree and found in here someone suggesting to review the example on the following page:
http://luban.danse.us/jazzclub/javascripts/jquery/jsTree/reference/_examples/7_full.html
I did find it very close to what I need for a personal project, however the example is fixed for one DB interaction from what I was able to see in the core dependencies (full/script.js). I'm trying to port this example to PHP 5, but at the moment just would like to know if there is a possibility to extend this to use new plugins such as 'checkbox' even-though this is an earlier version.
I've posted this question in the forums to see if there is any possibility to recreate a PHP/mySQL example using the 'contextmenu' and as well the options at the top of the panel, but since this apparently is not supported by what I was able to understand from the documentation, I thought perhaps someone have tried something similar to this?
Thanks in advance,
JP-

need help getting started on simple Eclipse wizard / plugin

I have written some Java classes that do something useful. I'd like to wrap the functionality in a simple Eclipse plugin. Basically you'd right-click on an object, click the "launch my wizard" option and the wizard would have 3 or 4 pages of options ... next, next, next, finish. And the useful stuff happens.
Can someone tell me where to start in building such an Eclipse plugin? Also, I have Swing experience, can I build the UI in Swing or does it have to be SWT?
Any help is greatly appreciated. Thanks!
Rob
Read Eclipse Corner Tutorial on creating new wizard.
If you want to implement some kind of import/export wizard, take a look at Developing Export Wizard for Eclipse
Cheers,
Max

Anyone have issues with using a RadTextBox in a MultiView?

I am want to use a Telerik RadTextBox inside a MultiView in ASP.NET 2.0. Just dragging a RadTextBox into a view and running the page generates a run-time error of the good old favorite "Object reference nto set to an instance of an object". It seems to be breaking on the Telerik.WebControls.RadInputControl.SaveViewState() call.
Has anyone any ideas on how to get this to work?
Thanks!
This happened to be an issue with RadInput for ASP.NET in one of my previous projects at some point. I got latest from the Telerik site and the exception was gone.
Btw, I switched to the ASP.NET AJAX version of the control already and encourage you to try it out. It is more advanced and have RadInputManager as an addition to speed up the performance when having many textboxes on the page.
Dick