jQWidgets Forums
Forum Replies Created
-
Author
-
November 24, 2016 at 1:24 pm in reply to: IDE code completion like Intellisense IDE code completion like Intellisense #89295
Your best best shot for code completion is to use ASP.NET Core Tag Helpers
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/asp-net-core/mvc-tag-helpers.htm?search=If you starting from scratch you may take look at ASP.NET Core MVC platform
There is free IDE VS Communtiy Edition
When you wireup jqwidgets Core Tag Helpers inside MVC project you get intellisense in RAZOR.@admin
I hope that is ok from my side to answer after you.
When we already speaking about .NET Core Tag Helpers.
Does jqwidgets is going to be developed and maintained for .NET Core Tag Helpers.
Only one reason for me to switch over .NET 4.6 to .NET Core is your helpers.
But If there is no hope for future about helpers then I will wait for better times.
I see that there is release jQWidgets v4.4.0 Release, November-24-2016 but unfortunately no any progress about .NET Core Tag Helpers
Thanx in advancedNovember 10, 2016 at 9:52 pm in reply to: ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE #88973Thanx for Hepl.
I did download scripts and it is works like charm
I cant wait to try writing forms using tag helpers.For others to summarize post:
On official documentation http://www.jqwidgets.com/jquery-widgets-documentation/documentation/asp-net-core/mvc-tag-helpers.htm
Missing parts to start using Tag Helpers areUser need manually to add jqwidgets scripts and csss into solution.
User need manually to reference these scripts in views in order to tag helper can work properly.November 10, 2016 at 9:18 pm in reply to: ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE #88971Thanx for tying to help, Sory if I am boring.
Missing part from documentation was that referencing scripts inside Layout is required etc.
<script src="~/jqwidgets/jqxcore.js"></script>
Now I getting 404 missing for all reffernced scripts.
When I browse my solution direcotry there is no any jqwidgets script or js file.
Does nugetjQWidgets.AspNetCore.Mvc.TagHelpers
downloads scripts too , or It shoud be done manualy.
I did alsoInstall-Package jQWidgets_Framework
but still not geting any js or css from jqwidgets in my solution ?
Any tip
THanx in advancedNovember 10, 2016 at 7:44 pm in reply to: ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE ASP .NET Core MVC Tag Helpers and jQuery version for VS2015CE #88966Thank you Peter but unfortunately I still can’t start and MVC Tag helper.
I did check double that jQuery is referenced on my views.
Does
@inject Microsoft.ApplicationInsights.Extensibility.TelemetryConfiguration TelemetryConfiguration
is required.
Looks like they did not release nuggets for lasts .NET core version.Any chance to we get working solution for VS2015 so we can test new MVC Tags
My bad, forgive me for spaming and opening post.
I really need more sleep or coffee.
I did searching in api reference for filter, but not at the end of my mind I had to searc for searc.
Have nice dayAugust 1, 2016 at 8:53 am in reply to: cellbeginedit event for checkbox columnt not working on keyboard cellbeginedit event for checkbox columnt not working on keyboard #86223Please look this sample GIF I made which showing how cellbeginedit being skipd when you get focused on
August 1, 2016 at 8:41 am in reply to: cellbeginedit event for checkbox columnt not working on keyboard cellbeginedit event for checkbox columnt not working on keyboard #86220There is strange behavior of grid events and kayboard.
Please look your sample at http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/cellediting.htm?bootstrapIf column Available get focused whit TAB key and column Product is not in edit mode then cellbegineditevent will be fired.
If you are in edit mode for column Product and hit TAB key to go to next column cellbegineditevent will not be fired when user hit space key.
Also when you are in edit mode for column Product and hit TAB key to go to next column you nide to HIT TAB once again to be able to select value for column AvailableJuly 30, 2016 at 11:28 am in reply to: cellbeginedit event for checkbox columnt not working on keyboard cellbeginedit event for checkbox columnt not working on keyboard #86204i apologize for the spam.
This is case only when grid selectionmode is set to multiplerowsextended.If grid is set to multiplecellsadvanced event cellbeginedit for checkboxex get fired on space key for changing
July 29, 2016 at 8:48 am in reply to: Set filter type for stings on cloumns taht looks like integers Set filter type for stings on cloumns taht looks like integers #86175Thanx on effort ,
My mistake was that I trying to set datatype in source not type.
Thanx.
I do not know why I start using datatype beside type in declaring my datafieldsSory for spamming
here is fiddle
What I trying to doMy apologies for this actualized after 2 years
Is there any way to avoid getting focus on jqxNumberInput widget.
I am trying to make data-range form whit number input of days.
An idea is to make form whit two jqxDateTimeInput and one jqxNumberInput.
these three is refferenced by eventsIt is little annoying when you are in jqxDateTimeInput user when change day event steel focus from control and set focus on number input.
Is there any chance to avoid geting focus on setting value.$('#brojDana').on('change', function (event){ var value = event.args.value ; console.log(value); var date = $('#doDatuma').jqxDateTimeInput('getDate'); date.setDate(date.getDate() - value ); $('#odDatuma').jqxDateTimeInput('setDate',date); }); $('#odDatuma').on('valueChanged', function (event) { var jsDate = event.args.date; var date = $('#doDatuma').jqxDateTimeInput('getDate'); var diff = Math.floor(( date - jsDate ) / 86400000); console.log(diff); $('#brojDana').jqxNumberInput('setDecimal', diff); }); $('#doDatuma').on('valueChanged', function (event) { var jsDate = event.args.date; var date = $('#odDatuma').jqxDateTimeInput('getDate'); var diff = Math.floor(( jsDate -date ) / 86400000); console.log(diff); $('#brojDana').jqxNumberInput('setDecimal', diff); });
January 19, 2016 at 4:41 pm in reply to: Easy way to send back edited data to MVC controller from grid Easy way to send back edited data to MVC controller from grid #80528Thanx Peter.
For future readers here is my solution.
best thing is that MVC whitout problems parse data back to model eve it was at grid and eddited.$("#sendData").click(function(){ var rows = $('#jqxgrid').jqxGrid('getrows'); var drtyRows = new Array(); for (var i = 0; i < rows.length; i++) { if (rows[i].nar1 != 0) { drtyRows.push(rows[i]); } //console.log(rows[i].art_id + " " + rows[i].preporuka + " " + rows[i].vsklId1 + " " + rows[i].nar1); } var jsoo = JSON.stringify(drtyRows); $.ajax({ type: "post", dataType: "json", url: "/Home/primiGa", contentType: "application/json; charset=utf-8", data: jsoo }); });
-
AuthorPosts