Questions tagged [wizard-control]

12 questions
2
votes
2 answers

.NET Forms Wizard Control

In the old days using MFC I could turn a property sheet into a wizard style dialog very easily and reuse my dialog templates. I have a .NET form with a tab control that I would like to do the same with. Is there an easy way to do this in .NET…
TWA
  • 12,756
  • 13
  • 56
  • 92
1
vote
1 answer

jQuery stops working on ASP.NET Wizard page

I have a ASP.NET wizard that I need to use jQuery to manipulate some of the CSS styles. For example if a certain criteria is met it will hide a button: $("input[value='Continue']").css("display", "none") This works great on the first page, but…
twil
  • 11
  • 1
1
vote
1 answer

ASP.NET next / previous wizard control

I'm trying to show 6 different covers of an online magazine for a site I'm working on and wanted to use something like the wizard tool I've made below. I'm new to ASP so I'm not to sure what I'll need to do for the last issue to only show a previous…
huddds
  • 1,045
  • 6
  • 27
  • 47
0
votes
1 answer

Creating a Wizard using MVC 2

Does anyone have any go example I could follow to create wizard in MVC 2? When using old ASP.Net you had server controls where you could other controls, and based upon how a user went through the steps you could add other steps dynamically or show…
Andy5
  • 2,319
  • 11
  • 45
  • 91
0
votes
0 answers

Which is the best way to handle data in wizard control?

I know it's a opinion based question but some help would be nice before jumping onto it. I'm developing a wizard control form in .Net Core where I've to play with multiple data's back and forth i.e. Next and Previous button. There are few choices…
crazyCoder
  • 75
  • 1
  • 13
0
votes
1 answer

Hiding a control with css (wizard)

After defining 2 simple properties in my css to hide my controls it worked perfectly. All my controls were in a table first, and when the page loaded they were invisble. When i pressed on the button called "submit" all controls became visible. I…
Mael
  • 41
  • 6
0
votes
1 answer

Getting user choices from multi case switch statement

I am using a wizard control to make the users go through multiple steps. They start at step 1 but sometimes skip some steps if they answer yes or no (radio buttons). For example, a question at the end of some steps would be: "Is the issue fixed?"…
chattyhu
  • 17
  • 4
0
votes
0 answers

Windows application enable parent form button from child form button click

I'm trying to create my own Next/back wizard control using multiple forms, In that I'm facing a problem in one scenario. I have my next/back button in parent form, default the next button will be enabled false after few validation in child form.…
0
votes
3 answers

How do I make a Wizard control save the data after each step?

Is there a way that i can save data on each step in wizard control. I want to save data when user clicks next button on each step. I would like to save them to database , so that i can retrieve them back if user has opted to close and complete steps…
rs.
  • 26,707
  • 12
  • 68
  • 90
0
votes
1 answer

jQuery in update panel not successfully adding cssclass after panel refresh

I have a div, which when clicked, displays a hidden asp:textbox via the following jQuery. function BindEvents() { $(document).ready(function () { $("#showtextbox").click(function () { …
JAck28
  • 899
  • 4
  • 15
  • 40
0
votes
1 answer

Enabling and Disabling Buttons using JQuery on Wizard Control

I am having trouble trying to enable and disable two buttons on the last step in my asp.net wizard control. What I am trying to achieve is when the user clicks the finish button on the wizard control the user gets presented with the javascript…
Andy5
  • 2,319
  • 11
  • 45
  • 91
0
votes
1 answer

Wizard Control MovePrevious causing validation when CauseValidation set to False

I am having a couple of issues with the MovePrevious Button in the ASP.Net Wizard Control. I am trying to prevent it from firing the validation on the controls in each step. The attempts I have tried are: 1) Setting the CauseValidation on the button…
Andy5
  • 2,319
  • 11
  • 45
  • 91