jQWidgets Forums
Forum Replies Created
-
Author
-
December 15, 2014 at 8:59 pm in reply to: Grid JS error on LoadState Grid JS error on LoadState #64219
I’m using
jqwidgets/ v3.4.0 (2014-June-23)<script type=”text/javascript” src=”javascript/jquery-1.10.1.js”></script>
November 18, 2014 at 1:58 pm in reply to: Paging 'footer' flushed to top and hidden behind grid Paging 'footer' flushed to top and hidden behind grid #62968Yes it did! Thank you very much for your help!
November 18, 2014 at 1:09 pm in reply to: Paging 'footer' flushed to top and hidden behind grid Paging 'footer' flushed to top and hidden behind grid #62961It is the theme that is causing it. If I take the theme off it is fine.
November 17, 2014 at 8:48 pm in reply to: Paging 'footer' flushed to top and hidden behind grid Paging 'footer' flushed to top and hidden behind grid #62905The <xcript … sysadm_translations_dutch.js … > should be removed. The code was dropped above in the javascript to simplify. Same issue.
July 22, 2014 at 6:46 pm in reply to: How to put the formatted date string in another text box How to put the formatted date string in another text box #57559Thanks. After several days of trial and error, I finally found a solution that works digging through the forums here. Thought I’d post it in case someone else is looking.
$(‘#jqxDateTimeInput_TourCompletedDate’).on(‘valuechanged’, function (event) {
//var jsDate = event.args.date;
var dateString = $(“#jqxDateTimeInput_TourCompletedDate”).find(‘input’).val();
document.getElementById(“myTourCompletedDate”).value = dateString;
});July 18, 2014 at 9:10 pm in reply to: How to put the formatted date string in another text box How to put the formatted date string in another text box #57431Specifically, when I try to take the datestring in that format (‘Wed Jul 16 00:00:00 CDT 2014’) and insert into via a sql stored procedure I get
Conversion failed when converting date and/or time from character string.
I just need it in a datetime format in the mytourcompleteddate text box so that sql will recognize it as a valid date format.
Any suggestions greatly appreciated! Been searching all afternoon with no luck so far.
-
AuthorPosts