We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using SampleModule (Video 13), and no Assigned User is selected (there are none in the drop down), there is an exception from Edit.ascx.cs
Line 88: AssignedUserId = Convert.ToInt32(ddlAssignedUser.SelectedValue)
AssignedUserId = Convert.ToInt32(ddlAssignedUser.SelectedValue)
Changed it to AssignedUserId = (ddlAssignedUser.SelectedValue == "") ? 0 : Convert.ToInt32(ddlAssignedUser.SelectedValue)
AssignedUserId = (ddlAssignedUser.SelectedValue == "") ? 0 : Convert.ToInt32(ddlAssignedUser.SelectedValue)
The text was updated successfully, but these errors were encountered:
Thanks for this @micahsdad1402 I will work to get this fix into a new release, along with a VB version of this fix as wel.
Sorry, something went wrong.
This is resolved in the 10.2 release coming ;)
ChrisHammond
No branches or pull requests
When using SampleModule (Video 13), and no Assigned User is selected (there are none in the drop down), there is an exception from Edit.ascx.cs
Line 88:
AssignedUserId = Convert.ToInt32(ddlAssignedUser.SelectedValue)
Changed it to
AssignedUserId = (ddlAssignedUser.SelectedValue == "") ? 0 : Convert.ToInt32(ddlAssignedUser.SelectedValue)
The text was updated successfully, but these errors were encountered: