Click here to Skip to main content
15,798,278 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 4:57
professionalpkfox13-Jul-21 4:57 
GeneralRe: Textbox control with the x in top right hand corner Pin
SeeSharp213-Jul-21 7:12
SeeSharp213-Jul-21 7:12 
GeneralRe: Textbox control with the x in top right hand corner Pin
pkfox13-Jul-21 7:30
professionalpkfox13-Jul-21 7: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 19:45
Member 152770145-Jul-21 19: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 22:00
mveRichard MacCutchan5-Jul-21 22: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 5:59
mveDave Kreskowiak6-Jul-21 5: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 8:17
mveGerry Schmitz6-Jul-21 8:17 
QuestionAnother JQuery datepicker question Pin
pkfox18-Jun-21 4:03
professionalpkfox18-Jun-21 4: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 23:40
professionalpkfox19-Jun-21 23:40 
SuggestionRe: Another JQuery datepicker question Pin
Richard Deeming21-Jun-21 0:04
mveRichard Deeming21-Jun-21 0:04 
GeneralRe: Another JQuery datepicker question Pin
pkfox21-Jun-21 22:37
professionalpkfox21-Jun-21 22:37 
GeneralRe: Another JQuery datepicker question Pin
Richard Deeming21-Jun-21 22:43
mveRichard Deeming21-Jun-21 22:43 
GeneralRe: Another JQuery datepicker question Pin
pkfox21-Jun-21 22:46
professionalpkfox21-Jun-21 22:46 
QuestionRegarding Use of System.Text.JSON Pin
Member 1522917418-Jun-21 2:13
Member 1522917418-Jun-21 2:13 
AnswerRe: Regarding Use of System.Text.JSON Pin
Dave Kreskowiak18-Jun-21 7:06
mveDave Kreskowiak18-Jun-21 7:06 
QuestionWindows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
jtaki14-Jun-21 5:52
jtaki14-Jun-21 5:52 
AnswerRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
Pete O'Hanlon14-Jun-21 5:58
subeditorPete O'Hanlon14-Jun-21 5:58 
GeneralRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
jtaki15-Jun-21 19:22
jtaki15-Jun-21 19:22 
AnswerRe: Windows update KB5003637 has caused my ReactJS/C# .NetCore app to ERR_HTTP2_PROTOCOL_ERROR 200 Pin
Richard Deeming14-Jun-21 6:49
mveRichard Deeming14-Jun-21 6:49 
QuestionJQuery datepicker Pin
pkfox10-Jun-21 23:14
professionalpkfox10-Jun-21 23:14 
AnswerRe: JQuery datepicker Pin
SeeSharp211-Jun-21 2:22
SeeSharp211-Jun-21 2:22 
GeneralRe: JQuery datepicker Pin
pkfox12-Jun-21 1:15
professionalpkfox12-Jun-21 1:15 
QuestionRe: JQuery datepicker Pin
SeeSharp214-Jun-21 2:12
SeeSharp214-Jun-21 2:12 
AnswerRe: JQuery datepicker Pin
pkfox14-Jun-21 7:21
professionalpkfox14-Jun-21 7:21 
AnswerRe: JQuery datepicker Pin
SeeSharp214-Jun-21 8:02
SeeSharp214-Jun-21 8: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.