jQWidgets Forums
Forum Replies Created
-
Author
-
November 8, 2017 at 9:13 pm in reply to: Problem with Google Chrome Problem with Google Chrome #97177
It DOES work fine in Internet Explorer, Edge, and Firefox. There is definitely an issue with Chrome and I cannot figure out what it is. I’m leaving at that since demoing the library with Firefox will work for now.
November 7, 2017 at 1:13 pm in reply to: Problem with Google Chrome Problem with Google Chrome #97149I’m experiencing the same behavior as tcorrigan5. The JQX Grid widget appears, but the data never populates (I’m using server-processing = true). No call is ever made to the data API, and there are no errors in the browser console output. Everything works fine in Internet Explorer, however.
<jqx-grid id="grid" width="100%" server-processing="true" pageable="true" page-size-options="@Model.PageSizeOptions" page-size="@Model.UserPreferedPageSize" columns-resize="true" auto-height="true" sortable="true" filterable="true" alt-rows="true" columns-reorder="true" enable-mouse-wheel="false" enable-ellipsis="true" source-root="data" source-total-records="totalRecords" source-model="@Model.Model" source-url="@Model.DataUrl"> <jqx-grid-columns> @foreach (var col in Model.Columns) { <jqx-grid-column filterable="true" sortable="true" hideable="true" draggable="true" column-type="@col.ColumnType" filter-type="date" hidden="@col.IsHidden" text="@col.NameKey" datafield="@col.PropertyName"> </jqx-grid-column> } </jqx-grid-columns> </jqx-grid>
November 6, 2017 at 2:04 pm in reply to: Problem with Google Chrome Problem with Google Chrome #97122Is there a simple fix for this? I am doing a presentation in a few days trying to sell the company on using JQWidgets for our enterprise application and would love to have this working in Chrome.
It seems like Chrome isn’t recognizing the Javascript within the script tags. There are no errors or anything, just nothing is executed.
August 10, 2017 at 4:19 pm in reply to: How to use jqx-nav-bar TagHelper How to use jqx-nav-bar TagHelper #95422Do you mean it’s unfinished? Because there is most definitely a “NavBarTagHelper” within the jQWidgets.AspNetCore.Mvc.TagHelpers package.
Thanks.
-
AuthorPosts