Click here to Skip to main content
15,867,568 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Textbox control with the x in top right hand corner Pin
pkfox13-Jul-21 3:57
professionalpkfox13-Jul-21 3:57 
GeneralRe: Textbox control with the x in top right hand corner Pin
SeeSharp213-Jul-21 6:12
SeeSharp213-Jul-21 6:12 
GeneralRe: Textbox control with the x in top right hand corner Pin
pkfox13-Jul-21 6:30
professionalpkfox13-Jul-21 6:30 
QuestionDynamic menu on asp.net ?? My project has a complete management part and the front is just a dynamics. I have a problem. How can I solve this problem? Pin
Member 152770145-Jul-21 18:45
Member 152770145-Jul-21 18:45 
GeneralRe: Dynamic menu on asp.net ?? My project has a complete management part and the front is just a dynamics. I have a problem. How can I solve this problem? Pin
Richard MacCutchan5-Jul-21 21:00
mveRichard MacCutchan5-Jul-21 21:00 
AnswerRe: Dynamic menu on asp.net ?? My project has a complete management part and the front is just a dynamics. I have a problem. How can I solve this problem? Pin
Dave Kreskowiak6-Jul-21 4:59
mveDave Kreskowiak6-Jul-21 4:59 
AnswerRe: Dynamic menu on asp.net ?? My project has a complete management part and the front is just a dynamics. I have a problem. How can I solve this problem? Pin
Gerry Schmitz6-Jul-21 7:17
mveGerry Schmitz6-Jul-21 7:17 
QuestionAnother JQuery datepicker question Pin
pkfox18-Jun-21 3:03
professionalpkfox18-Jun-21 3:03 
Hi all, I copied the html shown below from a tutorial on how to use the JQuery datepicker. If I run it in Visual Studio ( it's part of an MVC project) it works perfectly.
I want to add the functionality of this to my personal project which is a net core Web app

I've tried adding the link and script references to _layout.cshtml and set the id of my date properties to "datepicker" but I don't see the datepicker popup. Anyone know what I'm doing wrong or missing ?
<head>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css" />
</head>
@{
    ViewBag.Title = "Index";
}
@model JQueryDatePicker.Models.Customer 
@using (Html.BeginForm("index", "home"))
{<br />
    <div>
        @Html.LabelFor(c => c.JoinDate)     @Html.TextBoxFor(c => c.JoinDate, new { id = "datepicker" })
    </div>
    <br />

<div>
        <button type="submit" class="btn btn-default">
            Submit</button>
    </div>   

}

<script src="//code.jquery.com/jquery-1.10.2.js" type="text/javascript"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js" type="text/javascript"></script>
<script type="text/javascript">
    $("#datepicker").datepicker({
        changeMonth: true,
        changeYear: true,
        numberOfMonths: 2,
        dateFormat: 'dd-mm-yy'
    });
</script>
"I didn't mention the bats - he'd see them soon enough" - Hunter S Thompson - RIP


modified 22-Jun-21 3:39am.

AnswerAnother JQuery datepicker question - Solved Pin
pkfox19-Jun-21 22:40
professionalpkfox19-Jun-21 22:40 
SuggestionRe: Another JQuery datepicker question Pin
Richard Deeming20-Jun-21 23:04
mveRichard Deeming20-Jun-21 23:04 
GeneralRe: Another JQuery datepicker question Pin
pkfox21-Jun-21 21:37
professionalpkfox21-Jun-21 21:37 
GeneralRe: Another JQuery datepicker question Pin
Richard Deeming21-Jun-21 21:43
mveRichard Deeming21-Jun-21 21:43 
GeneralRe: Another JQuery datepicker question Pin
pkfox21-Jun-21 21:46
professionalpkfox21-Jun-21 21:46 
QuestionRegarding Use of System.Text.JSON Pin
Member 1522917418-Jun-21 1:13
Member 1522917418-Jun-21 1:13 
AnswerRe: Regarding Use of System.Text.JSON Pin
Dave Kreskowiak18-Jun-21 6:06
mveDave Kreskowiak18-Jun-21 6:06 
QuestionWindows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
jtaki14-Jun-21 4:52
jtaki14-Jun-21 4:52 
AnswerRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
Pete O'Hanlon14-Jun-21 4:58
subeditorPete O'Hanlon14-Jun-21 4:58 
GeneralRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
jtaki15-Jun-21 18:22
jtaki15-Jun-21 18:22 
AnswerRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
Richard Deeming14-Jun-21 5:49
mveRichard Deeming14-Jun-21 5:49 
QuestionJQuery datepicker Pin
pkfox10-Jun-21 22:14
professionalpkfox10-Jun-21 22:14 
AnswerRe: JQuery datepicker Pin
SeeSharp211-Jun-21 1:22
SeeSharp211-Jun-21 1:22 
GeneralRe: JQuery datepicker Pin
pkfox12-Jun-21 0:15
professionalpkfox12-Jun-21 0:15 
QuestionRe: JQuery datepicker Pin
SeeSharp214-Jun-21 1:12
SeeSharp214-Jun-21 1:12 
AnswerRe: JQuery datepicker Pin
pkfox14-Jun-21 6:21
professionalpkfox14-Jun-21 6:21 
AnswerRe: JQuery datepicker Pin
SeeSharp214-Jun-21 7:02
SeeSharp214-Jun-21 7:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.