jQWidgets Forums
Forum Replies Created
-
Author
-
January 23, 2015 at 12:08 pm in reply to: Interest error, maybe bug on nestedgrid and jqxwindow Interest error, maybe bug on nestedgrid and jqxwindow #65911
Hi;
I can’t understand why but my problem resolved…
I try to change $(“#gButceEdit”).jqxWindow({…’s ID name and my problem is gone. I think to I used to duplicate id. I searched my project. But its uniqe ID.
My problem was gone. Thanks…January 23, 2015 at 9:20 am in reply to: Interest error, maybe bug on nestedgrid and jqxwindow Interest error, maybe bug on nestedgrid and jqxwindow #65898Thanks for fast reply. But this ID is apsent. And xxxxx not 1 ID. Give error too many ID.
If I comment$("#gButceEdit").jqxWindow({ resizable: false, width: 450, height: 200, autoOpen: false });
problem is gone, my code work perfect. Problem come to above code.
January 8, 2015 at 12:58 pm in reply to: Insert, update problem on master-detail table Insert, update problem on master-detail table #65139Aha;
I found my mistake…
I used in the addrow
var data = "istek=insert&" + $.param(rowdata) + "&sozlesme_id="+ aktifSozlesme;
But i cant define to aktifSozlesme;
Thanks…January 8, 2015 at 10:26 am in reply to: Insert, update problem on master-detail table Insert, update problem on master-detail table #65125Hi;
Thanks for your answers. I changed to mistake but not work 🙁I’m looking for any idea 🙁
Thanks.January 6, 2015 at 7:11 am in reply to: NestedGrid scroll problem… NestedGrid scroll problem… #65001It’s work perfect.
Thanks for your helps.January 5, 2015 at 8:17 am in reply to: NestedGrid scroll problem… NestedGrid scroll problem… #64943Hi;
My nestedGrid source is:
grid.jqxGrid({ columnsresize: true, source: nestedGridAdapter , width: '%90', height: 200, columns: [ . . .
nestedGrid width is not number, but % value.
My master grid source is:$("#calismaGrid").jqxGrid({ width: '100%', source: calismaDataAdapter, columnsresize: true, groupable: true, rowdetails: true, rowsheight: 35, initrowdetails: initrowdetails, rowdetailstemplate: { rowdetails: "<div id='grid' style='margin: 10px;'></div>", rowdetailsheight: 150, rowdetailshidden: true }, ready: function() { . . .
Thanks.
December 31, 2014 at 9:55 am in reply to: How can i refresh ntested grid after insert data How can i refresh ntested grid after insert data #64864Sorry my mistake.
Nested grid working perfect.
thanksNovember 12, 2014 at 3:47 pm in reply to: c.offset(…) is undefined on validate c.offset(…) is undefined on validate #62607Ok my mistake. L solve my problem.
L made a typo. I type field1 -> filed1Thanks.
November 12, 2014 at 3:32 pm in reply to: c.offset(…) is undefined on validate c.offset(…) is undefined on validate #62604Ok. I have progress in my code.
I have two dropdown field. I need at least one field selected. I mean user must select field one, field two or field one + field two.
My code is:{ input: ‘#field1’, message: ‘Mandotory Field!’, action: ‘keyup, blur’, rule:
function () {
if ($(‘#field1’).val() > 0 || $(‘#field2’).val() > 0) { return true; } else { return false; }
}
},
{ input: ‘#field2’, message: ‘Mandotory Field!’, action: ‘keyup, blur’, rule:
function () {
if ($(‘#field1’).val() > 0 || $(‘#field2’).val() > 0) { return true; } else { return false; }
}
},I have’nt got any error after loading. But while using i got
TypeError: c.offset(…) is undefined
…var i=a(q.input);c=a(q.input);j.push(c);h=c.offset().top;if(e>h){e=h;g=c}}d–;if… jqxvalidator.js (line 7, col 1119)
error.
I trying to comment one block like this:/*
{ input: ‘#field1’, message: ‘Mandotory Field!’, action: ‘keyup, blur’, rule:
function () {
if ($(‘#field1’).val() > 0 || $(‘#field2’).val() > 0) { return true; } else { return false; }
}
},
*/
{ input: ‘#field2’, message: ‘Mandotory Field!’, action: ‘keyup, blur’, rule:
function () {
if ($(‘#field1’).val() > 0 || $(‘#field2’).val() > 0) { return true; } else { return false; }
}
},
it’s work vell.
Any idea of this stuation?
thanks.It’s work perfect.
Thanks.Hi;
I think i want to simple. I want to unselect value programmatically. I use this code:$(‘#inputHKurulus’).jqxDropDownList({selectedIndex: -1}); // Unselect to value.
DDListbox’s text changed to “Please Select” but value is not changed. It’s contains to last value. When i post the form i saw this…
(When I’m inspect the page, i saw <input type=”hidden” value=”xxxx”/> xxx is last value of DDListbox. But DDListbox’s text is “Please Select” at this moment.)September 9, 2014 at 7:36 am in reply to: Datasource and addrow problem… Datasource and addrow problem… #59299Yes. This is great app. Thanks.
I found my mistake;
I forgot a “,” sign when defining datafields on calismaDataSource.
.
.
.{ name: ‘asama’, type: ‘string’ },
],
.
.But error not view on the console. When delete “,” sign problem is fixed.
Thank for your interesting.Very insteresting. I try to add another grid on same button. I was success.
$(document).off(‘click’, ‘#addCalismaBtn’).on(‘click’, ‘#addCalismaBtn’,
function (event){
// var commit = $(“#calismaGrid”).jqxGrid(‘addrow’, null, {});
var commit = $(“#gorevGrid”).jqxGrid(‘addrow’, null, {});
}
);calismaGrid is not working, gorevGrid perfectly work. I’m looking for different two grid…
First of all thanks for your interesting. And sorry for my English.
Your code is working perfect. But my code is not like different for your code. I looking for mistake. But i cant find…
var commit = $(“#calismaGrid”).jqxGrid(‘addrow’, null, {})
Look like a master key. I use but nothing happened, not give an error or any message. Only before and after console.log message happen.
$(“#calismaGrid”).jqxGrid({
width: ‘100%’,
source: calismaDataAdapter,
columnsresize: true,
groupable: true,
editable: true,
editmode: ‘dblclick’,
showtoolbar: true,
toolbarheight: 30,
.
.
.$(document).off(‘click’, ‘#addCalismaBtn’).on(‘click’, ‘#addCalismaBtn’,
function (event){
console.log(“before add happen.”);
var commit = $(“#calismaGrid”).jqxGrid(‘addrow’, null, {});
console.log(“after add happen.”);
}
);I cant see any problem on my code. But my code has got a problem. 🙁
-
AuthorPosts