[jQuery] posting onclick a datepicker value

2009-07-28 Thread Natkeeran L.K.
Hello: There is an onclick event that calls the changeStartDate, and passes in an ID. 'input class=InfoBoxLong datepicker type=text size=7 id=StartDate_' + TransactionOrderItemID + ' onClick=changeStartDate (\'' + TransactionOrderItemID + '\') value=' + ActivationStartDate + '/input' + First

[jQuery] Re: Problem with jQuery Validation

2009-07-10 Thread Natkeeran L.K.
Hi Evan: Make sure that you include the path to the jquery.validate.js correctly. Or try it by including it directly from the jquery library. script type=text/javascript src=http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate.js/script Regards, Nat On Jul 9, 2:38 pm, Ivan

[jQuery] in the dynamic accordion trigger jqmodal window

2009-04-27 Thread Natkeeran L.K.
Hello: I want to populate accordions based on user selections, and within the accordion allow the user to enter more details through jqmodal. I am close to doing that here: http://pssnet.com/~devone/ajqtable/summary3998e.html But I have this issue. If the user clicks the test button outside

[jQuery] Re: Jqgrid, row edit, posting to the server not working

2009-04-23 Thread Natkeeran L.K.
Thanks...I got it.. I was overwriting the default data with editdata{} function. Regards, Nat On Apr 22, 2:34 pm, Natkeeran L.K. natkee...@gmail.com wrote: It loads the field names instead of values into the db Regards, Nat On Apr 22, 2:26 pm, NatkeeranL.K. natkee...@gmail.com

[jQuery] Passing info from Modal Window to a specific div or accordion (jqModal ?)

2009-04-23 Thread Natkeeran L.K.
Hello I need to implement a functionality where based on certain selection, I have to present a form, and collect that data and pass it to the caller div or accordion. (I would place the form within the accordion, but it does not support external file load). The div id dynamically generated as

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
Hi: Yes, It is possible. Check an example. http://pssnet.com/~devone/ajqtable/ac.html Regards, Nat -- Forwarded message -- From: okpoube...@gmail.com djibm...@gmail.com Date: Apr 22, 12:21 pm Subject: Accordion : remote objects To: jQuery (English) Hello everyone (pls

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
Perhaps, I mis understood your request. The way you showed is multiple instances of accordion. --- some content --- can be anything. Thats possible I suppose. Regards, Nat On Apr 22, 12:21 pm, okpoube...@gmail.com djibm...@gmail.com wrote: Hello everyone (pls excuse my english...) I'm

[jQuery] Jqgrid, row edit, posting to the server not working

2009-04-22 Thread Natkeeran L.K.
Hello: I am using Jqgrid, and testing how the editing feature work. When the row is clicked, it shows the form to edit. However, entering the info and submitting does not work. http://pssnet.com/~devone/ajqtable/editgrid.html (Also see below) At the php side I am simply trying to get those

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
div class=accordion h3item heading /h3 divsomething go here/div h3item heading2 /h3 divsomething go here2/div /div On Apr 22, 12:21 pm, okpoube...@gmail.com djibm...@gmail.com wrote: Hello everyone (pls excuse my english...) I'm trying to add an accordion to a page. But i can see that the

[jQuery] Re: Jqgrid, row edit, posting to the server not working

2009-04-22 Thread Natkeeran L.K.
is not a function This means that you do not have loaded: 1. jqModal.js 2. jqDnR.js 3. jqModal.css Load these files in your head section Regards Tony On Apr 22, 8:32 pm, Natkeeran L.K. natkee...@gmail.com wrote: Hello: I am using Jqgrid, and testing how the editing feature work.  When

[jQuery] Re: Jqgrid, row edit, posting to the server not working

2009-04-22 Thread Natkeeran L.K.
()); Regards, Nat On Apr 22, 2:13 pm, Natkeeran L.K. natkee...@gmail.com wrote: Hello Tony: Thanks for reply. Loaded those to the header:http://pssnet.com/~devone/ajqtable/editgrid2.html When clicked over it,the form automatically closes it. Regards, Nat On Apr 22, 1:43 pm, Tony t

[jQuery] Re: Jqgrid, row edit, posting to the server not working

2009-04-22 Thread Natkeeran L.K.
It loads the field names instead of values into the db Regards, Nat On Apr 22, 2:26 pm, Natkeeran L.K. natkee...@gmail.com wrote: Actually, it does not load it the db http://pssnet.com/~devone/ajqtable/editgrid2.html include(dbc.php); $var1 = $_POST['service_id']; $var2 = $_POST

[jQuery] jqGrid, rowedit, php posts names instead of values to the db

2009-04-22 Thread Natkeeran L.K.
Hello: I need to dynamically edit and change the server data. http://pssnet.com/~devone/ajqtable/editgrid2.html Right now, when the fields get edited php posts names instead of values to the db. My assumption is that on submit, the editurl will be called upon with the changed data. I read in

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Natkeeran L.K.
Hello Tony: Thank you for the reply. I inserted like below. But, it does not load the data: http://pssnet.com/~devone/ajqtable/summary36.html. Just empty grid. I also tried to inserted like jQuery(#list3).trigger (reloadGrid).jqGrid({no success. I just need the functionality, thus any

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Natkeeran L.K.
Hello Tony: I also tried your initial suggestion, it too does not display data. http://pssnet.com/~devone/ajqtable/summary39.html Regards, Nat script type=text/javascript jQuery(document).ready(function(){ jQuery(#list2).jqGrid({ url:'summary3.php?nd='+new Date().getTime(),

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Natkeeran L.K.
Hello Tony: I think it is reloading the same info, and not the new info!! http://pssnet.com/~devone/ajqtable/summary351.html Regards, Nat On Apr 8, 3:50 am, Tony t...@trirand.com wrote: Hello again, Sorry missed that you have datatype as function. The 2 should be just var x; .

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Natkeeran L.K.
Hello Tony: I think I got this functionality working. http://pssnet.com/~devone/ajqtable/summary392.html I thought I needed Ajax function to get this working. But, it seems I don't need that. datatype: function(postdata)...I don't need this stuff. Thank you again for this help, and for a

[jQuery] JQuery, JqGrid, and Ajax

2009-04-07 Thread Natkeeran L.K.
Hello: I am trying to develop a similar functionality as here:http:// koshersavings.ca/SelectItems.php When the user to clicks an row item, I want items to be loaded based on the selection, dynamically. I am trying to do the same, but using jqgrid, and ajax. The current code is here: (also