[jQuery] how to get value between brackets in a string

2009-12-14 Thread tony stamp
I have a simple span element with the id of pageCount, which has a value of (5), for example. I am attempting to get the just number value without the brackets, or some way of adjusting the number and leaving the brackets. Any pointers? -- View this message in context:

Re: [jQuery] how to get value between brackets in a string

2009-12-14 Thread tony stamp
thanks, but out of interest, how do i just get the number value? Leonardo K wrote: $('#pageCount').text().replace(')','').replace('(','') On Mon, Dec 14, 2009 at 10:41, tony stamp tonyst...@hotmail.co.uk wrote: I have a simple span element with the id of pageCount, which has a value

[jQuery] adding event to dynamic element

2009-11-20 Thread tony stamp
Hello I am using ajax in an autocomplete feature, and to resuse the existing templates, i am attempting to dynamically add a close button/link to the autocomplete results. I understand that i cannot add an event listener to newly created elements, so i am creating the element using the live()

[jQuery] Re: Pb with JqModal and datepicker

2009-11-13 Thread Tony
, dateFormat: yy-mm-dd }); }); /script Regards Tony On Nov 13, 10:45 am, Tobias Klepp tobias.kl...@stimme-der- hoffnung.de wrote: Hi, I have the same Problem and i can't find a solution in the internet for this problem. Do you have found a solution? Greetings, Tobias

[jQuery] Re: How to add click() function to a tr during grid loadComplete function.

2009-11-13 Thread Tony
Hello, Or to use gridComplete event which fire after all rows has been fetched. Regards Tony On Nov 13, 11:51 am, davebrown d...@dbws.net wrote: THanks Renato. Dave Phish wrote: I'm not quite familiar with jqGrid and how it creates tables, but when using the click or bind function

[jQuery] Re: Show/Open jqGrid with hiddengrid: true on a click event

2009-11-11 Thread Tony
('setGridState','hidden');//or 'visible' return false; }); Hope this helps Tony On 5 Ноем, 01:29, Massimiliano Marini max.linuxt...@gmail.com wrote: Hi all, I'm usingjqgridwith: hiddengrid: true, when the page is loaded the grid is collapsed. I ask if there's a way to open/show the grid when I made

[jQuery] Re: How to send Object Graphs to the server via AJAX?

2009-11-11 Thread Tony
:'json' data:{griddata:myserializedgrid}, ... }); Best Regards Tony On 10 Ноем, 17:10, cimodev cimo...@googlemail.com wrote: Hello i'm usingjqGridwith the type clientSide and plan to send editted data back to the server. With a $.ajax-Request i receive an object with sub-objects as JSON from

[jQuery] Getting position of link parent in table

2009-11-03 Thread tony stamp
Hello I have one anchor link per row in my table's td's with a css class of .viewLink, and have attached a simple event to display a div with the contents from an ajax request. Now i am trying to align the popup with the position of the link, or row at least. Here is the code i have so far.

[jQuery] Re: how to display birthdate format behind the date textbox on edit/insert dialog

2009-09-23 Thread Tony
Hello Ravi, Maybe you will need to use the formatter where you should define the source format of the expected data and the new one that you want to be displayed. Refer to: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:predefined_formatter#predefined_format_types Best Regards Tony On Sep 21

[jQuery] Re: Shift+End doesn't works in input field - .filterToolbar()

2009-09-07 Thread Tony
Hello, The problem is fixed in 3.5.3 release, which is published yesterday. Please upgrade to this release. Best Regards Tony On Sep 7, 6:26 pm, Massimiliano Marini max.linuxt...@gmail.com wrote: Hi all, I can't select the text pressing the Shift+End keys and with the mouse double-click

[jQuery] No Response Using getJSON

2009-09-05 Thread Tony
I am using the getJSON command and using firebug for debugging, if I go to this server i setup with this url: http://url/all_data.json?callback=getdata It returns json data warped with getdata({data}). I have validated the json part using jsonlint, so from firebug's net tab I get a param

[jQuery] Re: No Response Using getJSON

2009-09-05 Thread Tony
getJSON with the JSONP result On Sat, Sep 5, 2009 at 9:50 PM, Tony e.sen...@gmail.com wrote: I am using the getJSON command and using firebug for debugging, if I go to this server i setup with this url: http://url/all_data.json?callback=getdata It returns json data warped with getdata({data

[jQuery] Re: No Response Using getJSON

2009-09-05 Thread Tony
is correct now with firebug, but the alert is not trigged? Did I break the code somehow with those 2 simple changes? On Sep 6, 1:06 pm, Tony e.sen...@gmail.com wrote: I tried changing the getJSON to your code, it still isn't working, all it does is changes the request from the server, still

[jQuery] Re: No Response Using getJSON

2009-09-05 Thread Tony
is correct now with firebug, but the alert is not trigged? Did I break the code somehow with those 2 simple changes? On Sep 6, 1:06 pm, Tony e.sen...@gmail.com wrote: I tried changing the getJSON to your code, it still isn't working, all it does is changes the request from the server, still

[jQuery] Re: $.jgrid is undefined with jqgrid plugin

2009-08-05 Thread Tony
Hello, A good explain why is this is here: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install Best Regards Tony On Aug 5, 2:33 am, Josh Nathanson joshnathan...@gmail.com wrote: I think that plugin is broken.  I tried it a couple of weeks back and got the same error, tried

[jQuery] Re: edit dialog display issue

2009-08-05 Thread Tony
Hello, Maybe this will be usefull. http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing#form_editing Regards Tony On Jul 29, 8:51 am, Ravi morir...@gmail.com wrote: Hii..i am new injqgrid. i have to achieve following functionality.. I get grid which displays all data..now i want

[jQuery] jqGrid 35.5 released

2009-08-01 Thread Tony
Happy to announce the final 3.5 release of jqGrid. New wiki Documentation at http://www.trirand.com/jqgridwiki The demo at http://www.trirand.com/jqgrid/jqgrid.html and final the home : http://www.trirand.com/blog Enjoy Tony

[jQuery] Re: jqGrid 35.5 released

2009-08-01 Thread Tony
Hello, Sorry - the release is 3.5 Tony On Aug 1, 10:23 pm, Tony t...@trirand.com wrote: Happy to announce the final 3.5 release of jqGrid. New wiki Documentation athttp://www.trirand.com/jqgridwiki The demo athttp://www.trirand.com/jqgrid/jqgrid.html and final the home :http

[jQuery] Re: inserting new record

2009-07-28 Thread Tony
); } Regards Tony On Jul 27, 4:33 pm, Ravi Mori morir...@gmail.com wrote: Hi..  i have some doubts in usage of jqgrid. I am trying to achieve fallowing functionality. I have insert and edit functionality in same form. Now i have one field called UserName, which i don't want to edit. so

[jQuery] Re: New plugin announcement and review request - bullsEye

2009-06-29 Thread Tony Landis
Orkan, Got it, committed the change: http://github.com/tony-landis/jQuery-bullsEye/commit/3a40c81cd8edd73d5575050f80f79bac4d5dad52 In reply to your question, the answer is yes, see: http://github.com/tony-landis/jQuery-bullsEye/blob/3a40c81cd8edd73d5575050f80f79bac4d5dad52

[jQuery] Re: jqGrid: jQuery(#list).jqGrid is not a function

2009-06-15 Thread Tony
Hello, As I see all work ok.What actually does not work? Regards Tony On Jun 14, 9:02 am, efet efetun...@gmail.com wrote: I did not make any changes with directories or codes. I thought I must be missing an include but I have been looking into my codes for hours already but still cant find

[jQuery] Re: jQGrid Ajax search parameters- Top toolbar method

2009-06-15 Thread Tony
Hello, In this case the posted values are pairs name:value. The reason for this is that in this case we can have more than one value to be searchble. Regards Tony On May 28, 8:58 pm, Charlie charlie...@gmail.com wrote: usingjQGRidversion 3.4.4 I havejQGridworking great with several thousand

[jQuery] Re: New plugin announcement and review request - bullsEye

2009-06-11 Thread Tony Landis
Thanks. Can you describe what is happening in IE7? I don't have access at this time. On Jun 10, 6:50 am, Leonardo K leo...@gmail.com wrote: Great plugin! It would be nice if the plugin was functional at least in IE7 On Tue, Jun 9, 2009 at 22:48, Tony Landis tony.lan...@gmail.com wrote

[jQuery] New plugin announcement and review request - bullsEye

2009-06-10 Thread Tony Landis
of the plugin in action are located here: http://tonylandis.com/uncategorized/bullseye-jquery-plugin-to-add-interactive-and-visualization-features-to-tables/ If anyone finds this useful I would like to know. Thanks, Tony Landis

[jQuery] Re: jqGrid with an editable checkbox column

2009-05-30 Thread Tony
Hello, One possible solution is to use custom formatter to add checkbox and bind evens to it Best Regards Tony On May 30, 6:19 am, dev java_mail_l...@yahoo.com wrote: Hello, I'm trying to create a grid, using jqGrid-3.4.4, with checkbox in one of its column. I have been able to create grid

[jQuery] Re: JQGrid...Delete Button?

2009-05-15 Thread Tony
Hello, Currently It is not possible to put the add/edit/delete in one form. Regards Tony On May 15, 12:01 am, Rick Dwyer rdw...@quick-link.com wrote: Hello List. Playing around with jqgrid and the documentation describes the   implementation of bSubmit and a bCancel button. However, how

[jQuery] Re: jqmodal/canvas z-index issue in IE7

2009-05-11 Thread Tony
Hello, The well known issue with IE. Also two options - 1. Create the modal as first child of body or 2 look here http://groups.google.com/group/jquery-en/browse_thread/thread/65b3b02d5943e84b/230c06e1f70c68b4?lnk=gstq=toTop#230c06e1f70c68b4 On May 11, 2:27 pm, Geert Baven geertba...@gmail.com

[jQuery] generated content(PHP) into DIV?

2009-04-30 Thread Tony
Hello Everyone! I have 3 DIV's next to each other. I want that the first div is loaded over jquery with a php file which outputs an unordered list in html. When I click on a list item in the first DIV I want that jquery sends the parameters from the list to a second php file for making an

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

2009-04-22 Thread Tony
Hello, FireFox console reported a error: jQuery(a).jqDrag 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

[jQuery] [validate] Trying to highlight single error in two locations.

2009-04-22 Thread Tony
. (basically I want the error message to popup, but I want to highlight the row the form element is in, and want the highlight to go away when the error is fixed.) What am I missing? Thanks. Tony

[jQuery] Re: help with jqgrid

2009-04-17 Thread Tony
Hello, The most common error when writing is the comma. You have colModel :[ {name:'id', index:'id', key:true, width:55}, {name:'cod_casa', index:'cod_casa', width:55}, --- Error ], Remove the comma and will be ok Regards Tony On Apr 17, 3:12 am, led l.r

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony
Hello, Already replayed. Please check your code - you have a unneeded coma in colModel Regards Tony On Apr 17, 1:33 pm, led l.r@sapo.pt wrote: I' m trying to use the jquery jqGrid plugin but i can't see it working with ASP code. this is the xml generated file. rows   page /page

[jQuery] Re: help with jqgrid

2009-04-17 Thread Tony
to implement this in a project but the basic sample is not working. Again , please... On 17 Abr, 11:41, Tony t...@trirand.com wrote: Hello, The most common error when writing is the comma. You have     colModel :[       {name:'id', index:'id', key:true, width:55},       {name

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony
Hello, The version of jquery 1.3.1 that you use is not compatible with jqGrid version 3.4 Download the latest 3.4.3 version of jqGrid On Apr 17, 2:51 pm, Led l.r@sapo.pt wrote: tony , check that is not that. On 17 Abr, 11:46, Tony t...@trirand.com wrote: Hello, Already replayed

[jQuery] Re: Final Four: Grabbing Keys, Styling Columns, Pop Up Forms, Edit Select Lists?

2009-04-15 Thread Tony
) Definitley I will aplly this to the new 3.5 version. #4) It is better to send me the configuration. #5) Little stange. Which version do you use. Also check your server response what you have in total records Regards Tony On Apr 14, 7:50 pm, briandus bri...@virtual-essentials.com wrote: Hi

[jQuery] Re: Final Four: Grabbing Keys, Styling Columns, Pop Up Forms, Edit Select Lists?

2009-04-14 Thread Tony
to be customisable. #4) Could youi plese the grid configuration and piece of data that is populated in the grid. Regards Tony On Apr 14, 2:01 am, briandus bri...@virtual-essentials.com wrote: Hi there -  I am using jqGrid with ASP.NET and while it has really taken me quite some time to get

[jQuery] Re: Getting index of clicked table cell

2009-04-14 Thread Tony
Hello, IMHO this can be: $(#Table1 tr.SUM).click(function(e) { alert(this.rowIndex); }); Regards Tony On Apr 14, 1:46 pm, Thomas thpick...@googlemail.com wrote: Wow, you had me stumped for a couple of minutes there. :) I think the .index() method doesn't do what you want it to do

[jQuery] Re: Getting index of clicked table cell

2009-04-14 Thread Tony
Upps, sorry mixed some code. $(#Table1 tr.SUM).click(function(e) { var td = e.target || e.srcElement alert(td.cellIndex); }); On Apr 14, 2:11 pm, Tony t...@trirand.com wrote: Hello, IMHO this can be: $(#Table1 tr.SUM).click(function(e) {       alert(this.rowIndex

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Tony
. Create a empty second grid and hide them (if you want) 2. Then after every double click do something like this jQuery(#list3).setGridParam({url:'get_services.php?name='+x}).trigger (reloadGrid) Best Regards Tony On Apr 7, 10:21 pm, Natkeeran L.K. natkee...@gmail.com wrote: Hello: I am trying

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Tony
Hello again, Sorry missed that you have datatype as function. The 2 should be just var x; . ondblClickRow: function(id){ x =id; . jQuery(#list3).trigger(reloadGrid); .. } On Apr 8, 10:43 am, Tony t...@trirand.com wrote: Hello, Basically jqGrid first check if the grid exists

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Tony
with id: +id); jQuery(#list3).trigger(reloadGrid); }, ... }); // end of list2 grid // begin list3 grid jQuery(#list3).jqGrid({...}) // end list3 grid }); // end document ready Hope this help. On Apr 8, 4:07 pm, Natkeeran L.K. natkee...@gmail.com wrote: Hello Tony: Thank you for the reply

[jQuery] Re: jqGrid UI Theming

2009-03-17 Thread Tony
Thanks Richard Thanks Rey, I think that jQuery UI have a great potencial to be one of the best js library. Converting jqGrid to UI Theming is my little contribution Best Regards Tony On Mar 17, 12:13 am, Rey Bango r...@iambright.com wrote: Thank you for doing this Tony. Not only are you

[jQuery] Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
w/o a refresh. I'd really like the header to know its a toggle, so that ordering toggles between asc/desc. My example is passing something like this list.cfm? show=Allcolumn=namesort=asc This is my first time using jQuery, so any help is appreciated. Thanks, Tony K

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
into the equation? On Mar 17, 1:20 pm, Tony K tony.kowal...@gmail.com wrote: I am looking to display a table of data and have my table headers we links to sort. I CANNOT use client side sorting, the table is up to 10,000 rows. I have the table built and headers are links to pass a query param

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
What would be the best way to Toggle the sort using jQuery? Know of any samples that can determine if the sort is asc, then have a toggle update the link to desc? I appreciate all your help! Thanks, Tony On Mar 17, 2:35 pm, MorningZ morni...@gmail.com wrote: Sounds like jQuery's .load event

[jQuery] jqGrid UI Theming

2009-03-16 Thread Tony
: http://www.trirand.com/blog Enjoy Tony

[jQuery] Re: jqGrid - display a xml node attribute value in a cell

2009-03-13 Thread Tony
Hello, Currently it is not possible to read data from xml attribute. Regards Tony On Mar 11, 4:14 pm, Arun Boppudi arunkumar.bopp...@gmail.com wrote: I need to display a xml node attribute value in a cell. How can I do it using the xmlmap? I have XML like: rows    row       cell1

[jQuery] Re: JQuery XML Manipulation

2009-03-13 Thread Tony
Hello, You can use a datatype parameter as function. This way you can manipulate the xml before send them to the grid. Refer to the documentation and examples on how to do this. Regards Tony On Mar 13, 1:10 am, stilwalli shashank.tilwa...@hughes.com wrote: Hello Developers, I am

[jQuery] Re: JQuery XML Manipulation

2009-03-13 Thread Tony
Hello, Sorry not understand what you mean. The row in jqGrid is not a xml, but html. To make what you want, you should extract the desired row using a method getRowData and make your own xml string, (looping the array data) that will be posted to the server. Regards Tony On Mar 13, 4:54 pm

[jQuery] jqGrid 3.4

2009-02-15 Thread Tony
://trirand.com/blog/ Enjoy Tony

[jQuery] Re: jqGrid final preview

2009-01-29 Thread Tony
Hello, There is such file (all in one), but they is provided only with a stable releases. Until jqGrid is in beta there will be no such distribution Best Regards Tony On Jan 28, 7:00 pm, runxc1 bretferri...@yahoo.com wrote: Tony  I really like yourjqGridas far as how it works and the excellent

[jQuery] Re: jqGrid final preview

2009-01-29 Thread Tony
Hello, Forgot to tell you - ajax loading of the js files is only for IE browsers On Jan 29, 1:44 pm, Tony t...@trirand.com wrote: Hello, There is such file (all in one), but they is provided only with a stable releases. Until jqGrid is in beta there will be no such distribution Best

[jQuery] SlideUp/slideDown problem with jQuery 1.3.1

2009-01-24 Thread Tony
and overflow-y are removed and we lost the styling. The same is when we use hide and then show(fast) This only work in IE. Regards Tony

[jQuery] Re: Searching a DataGrid PlugIn

2009-01-08 Thread Tony
to resize the grid. I hope this helps Regards Tony On Jan 7, 10:49 am, Stefan Sturm stefan.s.st...@googlemail.com wrote: Hello, I'm searching a DataGrid PlugIn. But I can't find, what I'm looking for :-( I need one feature badly: The Grid should use the complete content panel. So it needs

[jQuery] Re: jCarousel

2008-12-26 Thread Tony
Here is more detail on the problem. I have pagination setup like: 1 | 2 | 3 | 4 and it works fine. But I want to be able to to indicate which page(image) they are currently viewing. On Dec 25, 5:17 pm, Tony usmc...@gmail.com wrote: Is it possible to add active state to the pagination? If so I

[jQuery] jCarousel

2008-12-25 Thread Tony
Is it possible to add active state to the pagination? If so I would I do this? Thank you.

[jQuery] Re: jqGrid with web service of .net framwork

2008-12-22 Thread Tony
Hello, To call web service in jqGrid you should implement datatype as function. To have idea haw can be done, go into the demonstartion page and look at New in version 3.3 - Data type as function. Hope this helps Best Regards Tony On Dec 19, 8:35 pm, FrenchiINLA mamali.sohe...@gmail.com wrote

[jQuery] Re: jQuery XHR problems with safari 3.2

2008-11-23 Thread Tony
Hello, I do not have mac to test this, but maybe you will find your solution here: http://forums.macrumors.com/showthread.php?t=538176 jqGrid is tested only in Safari for Windows Best Regards Tony On Nov 21, 8:35 pm, Ronnyek [EMAIL PROTECTED] wrote: Ok, I've tried a number of grids including

[jQuery] How to create multiple dialog in same page by jquery?

2008-11-21 Thread Tony
When I try to to this, I found it looks like the second dialog wasn't created. Who knows how to implement it? Thanks $(document).ready ( function() { $(div#form1).dialog ( {

[jQuery] Re: jqGrid 3.3 version

2008-10-17 Thread Tony
Hello, You can use the new custom filter feature. The groups GroupA, B ... can be obtained via separate ajax request from the db. Also refer to docs for this purpose. Regards On Oct 15, 9:29 pm, patrick davey [EMAIL PROTECTED] wrote: Hi Tony, Very nicely done - will definitely take a look

[jQuery] jqGrid 3.3 version

2008-10-14 Thread Tony
://trirand.com/blog/ Enjoy Tony

[jQuery] Re: url serialize or getUrlParam

2008-09-09 Thread Tony
Hello, Use setGridParam something like jQuery(#mygridid).setGridParam({url:my_newurl.php}); Regards Tony On Sep 9, 11:59 am, drlinux [EMAIL PROTECTED] wrote: Hello, I want to get lastest url paramaters and add this paramater another url like that:http://blabla.com/action.php?q=1page=1rows

[jQuery] Re: jqGrid inline edit - cannot save or cancel if only one row

2008-09-04 Thread Tony
Tony On Sep 4, 1:46 am, Michael Nelson [EMAIL PROTECTED] wrote: Hello, jqGrid inline edit is working fine, unless there is only a single row returned from the database. In that case, neither enter nor escape or clicking elsewhere on the page will take that row out of edit mode. Any suggestions

[jQuery] Re: jQuery search

2008-09-04 Thread Tony
Hello, You can do this with jqGrid. In the example page you can check Search big data set example Regards Tony On Sep 3, 8:28 pm, Michael Nelson [EMAIL PROTECTED] wrote: Take a look at the loading data demo:http://www.trirand.com/jqgrid/jqgrid.html You'll still need server side code

[jQuery] Re: Using Validate with jqGrid

2008-09-01 Thread Tony
Hello, There is email checking in the last version. As for the ajax you can use beforeSubmit event for this purpose Regards Tony On Aug 31, 10:30 pm, Steffan A. Cline [EMAIL PROTECTED] wrote: on 8/31/08 12:50 AM, Tony at [EMAIL PROTECTED] wrote: Hello, The grid has build

[jQuery] Re: Multiple AJAX calls problem

2008-09-01 Thread tony luo
If there is a ajax call, I will use Loading... modal dialog to cover the parent till the call finished. Maybe it will help you. On Tue, Sep 2, 2008 at 6:37 AM, me-and-jQuery [EMAIL PROTECTED]wrote: Hi Brad. Here I can see the same hint as micah was talking about (unbind and then bind). Or do

[jQuery] Re: Using Validate with jqGrid

2008-08-31 Thread Tony
Hello, The grid has build in fuctionality for validation. Also check the docs for formediting. Regards Tony On Aug 31, 8:06 am, Steffan A. Cline [EMAIL PROTECTED] wrote: Has anyone devised a way to have the grid use validate for the edit and add forms? Thanks Steffan

[jQuery] Re: Properties escaped when sending JSON to PHP?

2008-08-31 Thread Tony
Hello, usually this comes from settings on PHP. Before get the param from php you should check if magic quotes are on. If the are on you should apply stripslashes on this parameter. Regards Tony On Aug 31, 1:46 am, Mickster [EMAIL PROTECTED] wrote: Hi there, I've just spent an hour trying

[jQuery] Re: jqModal and IE problems

2008-08-30 Thread Tony
To overcome this try to use toTop option - i.e toTop:true See more about this in the docs. On Aug 29, 10:44 pm, MorningZ [EMAIL PROTECTED] wrote: So i have some usage of jqModal in my project and this is what's going on: (screenshot:http://i38.tinypic.com/2edavs2.jpg) you can see that

[jQuery] Re: jqModal and div

2008-08-28 Thread Tony
Anyone? Anyone? Is there anyone that can help me here? On Aug 27, 10:22 am, Tony [EMAIL PROTECTED] wrote: http://dadoodesign.com/jqDemo/ IE6 ISSUE** As you can see when the button is pushed, the modal pushes the div down? Tried playing with the Z index but that didn't seem to solve

[jQuery] jqModal and div

2008-08-27 Thread Tony
that's created. Any help would be great! Thanks Tony

[jQuery] Critique requested of first jQuery code

2008-07-22 Thread Tony Bowden
that flag. The code is below. Thanks for any suggestions. Tony The form is: form pDate: input name=date //p pCountry: select id=cty name=country option value=adAndorra/option ... lots of other countries ... /select span id=flags / /p pinput

[jQuery] Re: problem server?

2008-07-16 Thread Tony
All should work now. Regards Tony fengxia wrote: Hi tony Do you think there is the problem of the server for the site www.trirand.com/jqgrid ou www.trirand.com/blog I can't connect it

[jQuery] jqGrid 3.2 version

2008-07-15 Thread Tony
The jqGrid 3.2 is finally out. This version is a big step forward and is primarily a bug fix release. Again with this there are some very usefull features and methods. You can view the full list of what was fixed and what is new here http://www.secondpersonplural.ca/jqgriddocs/index.htm Also

[jQuery] Re: jqGrid problem

2008-07-13 Thread Tony
1: Is there an event or other way to tell when the grid has loaded? There is such event - loadComplete, but in the upcoming release there is another gridComplete. 2: Is there a better way to do this? Currently no Regards Tony On Jul 8, 12:17 am, aballard [EMAIL PROTECTED] wrote: I want

[jQuery] Re: jqGrid and modal windows

2008-06-24 Thread Tony
to 1000. By default jqModal uses z-ndex to 3000 Regards Tony On 24 Юни, 10:18, oscarml [EMAIL PROTECTED] wrote: Hi, thanks for answering. It happens in IE6/7 and FF, and I don´t use autocomplete (at moment). I'm using jqModal to open the grid in a modal window. I have half-fixed it putting some

[jQuery] Re: jqGrid and modal windows

2008-06-23 Thread Tony
Could you please give me a more information? Is this only in IE6/7 - Do you use other plugins - something like autocomplete? Regards Tony On 23 Юни, 19:30, oscarml [EMAIL PROTECTED] wrote: Hi to everybody, When I open a jqgrid inside a modal window and I use search button, the searching form

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Tony
only the root elements first and then the childs if needed will be a great addition. In this case a very big lists can be supported without loose of speed. Regards and congratulations again. Regards Tony On 18 Юни, 18:31, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Awhile back I blogged about

[jQuery] Re: jQuery 1.2.6, jqModal, IE6

2008-06-05 Thread Tony
Please see this http://groups.google.com/group/jquery-en/browse_thread/thread/219d28208e58b85b/d8187cf1bd5104ae?lnk=gstq=jqModal#d8187cf1bd5104ae On Jun 5, 3:17 pm, Matthieu BARBE [EMAIL PROTECTED] wrote: I confirm this bug with ie 7 ! 2008/6/5 Stamen Georgiev [EMAIL PROTECTED]: Hi

[jQuery] Re: jQGrid Sample in Classic ASP

2008-05-29 Thread Tony
I never work with ASP, but if you known a little PHP you have an Idea how to do that with ASP. If you have success with this it will be good to send me example, so that other users will be happy with this Regards Tony On May 29, 5:03 am, Nimrod [EMAIL PROTECTED] wrote: Hi, I found jQGrid

[jQuery] Re: Two little question css/jquery related

2008-05-29 Thread Tony
Hi, There is an extra semicolon at end of css's value: $a.css({'background-image':'url('+img.url+');'}) -Tony On May 29, 15:23 pm, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi, I have 2 little questions: 1. In a piece of code I wrote:       $div = $('div class=elementContainer

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-05-29 Thread Tony
is right, since of z-index bug in IE6/IE7 More about this problem can be found here: http://aplus.co.yu/lab/z-pos/ IMHO I think that this line in jqModal shoud be changed Regards Tony On May 29, 5:59 am, mojock [EMAIL PROTECTED] wrote: I'm having the same exact problem. 1.2.3 works perfectly fine

[jQuery] Query z-index problem in IE6 with 1.2.5 and 1.2.6

2008-05-28 Thread Tony
in css there is no attached z-index of this element Regards Tony

[jQuery] 1.2.5 IE6 strange problems

2008-05-22 Thread Tony
this page with a latest jquery in IE6 it looks very strange Here is a link http://docs.jquery.com/Release:jQuery_1.2.5 Regards Tony

[jQuery] Re: Table slide toggle

2008-05-22 Thread Tony
. Solution for this problem is to resize only the first row in the tbody according to the width of the th Regards Tony On May 22, 1:01 pm, Cloudream [EMAIL PROTECTED] wrote: I've update the code, tryhttp://labs.cloudream.name/jquery/tbody-slidetoggle.html It seems the enchant doesn't work at all

[jQuery] Re: jqGrid Metadata

2008-05-10 Thread Tony
different models. This feature if planed for the next releases. Reagrds Tony On May 9, 2:58 am, Sanjiv [EMAIL PROTECTED] wrote: Hi All, Is there a ready made solution for usingjqGridby querying column metadata from the server. I want to create a generic grid where the colModel and colNames

[jQuery] Re: Help With XML Parsing + Array Manipulation

2008-05-07 Thread Tony
'); }); } }); Regards Tony On May 7, 7:35 am, catharsis [EMAIL PROTECTED] wrote: Here is what I'm trying to do: (1) Parse an external XML, (2) enter the list of devices in the XML into an array, (3) sort the array alphabetically (and group items in the arrays by name if possible), (4) print

[jQuery] xml namespace problems

2008-04-21 Thread Tony
, but not in FF Any help on how to solve this problem? or is this bug ? Thank you in advance Tony

[jQuery] xml namespace problems

2008-04-21 Thread Tony
on how to solve this problem? In my case catalog and book are parameters Thank you in advance Tony

[jQuery] jqGrid 3.1 version

2008-04-07 Thread Tony
/blog/ Enjoy Tony

[jQuery] Re: jqGrid final preview

2008-03-08 Thread Tony
. @jquertil That is my 2 cents for the Nobel Code Prize :) By the way I have added only 2 lines of code. Regards Tony On Mar 8, 10:11 am, Kaare Rasmussen [EMAIL PROTECTED] wrote: Seems even more mature than when I started using it for a project. Especially the grid-in-grid looks very impressive

[jQuery] jqGrid final preview

2008-03-07 Thread Tony
Hi all, At end I have done a lot of work to finalize the jqGrid. More information you can found here http://www.trirand.com/blog Note that this is not official release, since of missing documentation. I'm working hard on this and hope to finish the documentation at end of week. Enjoy Tony

[jQuery] Re: jqGrid final preview

2008-03-07 Thread Tony
Sorry, Forgot to give a link to the new demos http://www.trirand.com/gridpreview/jqgrid.html See the new Live Data manipulation examples Tony On Mar 7, 11:07 am, Tony [EMAIL PROTECTED] wrote: Hi all, At end I have done a lot of work to finalize the jqGrid. More information you can found

[jQuery] Re: Pass a parameter to $.ajax's success callback?

2008-03-07 Thread Tony
Shawn Look at this: http://plugins.jquery.com/project/ajaxqueue Maybe will solve the problem or use ajax with option async = false Regards Tony On Mar 7, 12:16 pm, Shawn [EMAIL PROTECTED] wrote: Here's the scenario. I'm writing a routine that will take in a list of items. Each item

[jQuery] Re: jqGrid final preview

2008-03-07 Thread Tony
Rey, Thank you again for the note. I forgot to update the link in the new demo. Now all should work ok. As for the scrolling - yes you have right it sits out and look not good. Let me do something for this. Regards Tony On Mar 7, 3:51 pm, Rey Bango [EMAIL PROTECTED] wrote: Looks good Tony

[jQuery] Re: jqGrid final preview

2008-03-07 Thread Tony
Leanan, Grid support client side sorting. Maybe it is not good documented - (see array data example - here we have client side sorting), but i hope that this will be done in the new documentation. Regards Tony On Mar 7, 5:45 pm, Leanan [EMAIL PROTECTED] wrote: Hmm, I only have one thing I'm

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-16 Thread Tony
You can try the on-demand plugin: http://www.creativit.com.br/jquery/ondemand_js/index.htm --Tony

[jQuery] Re: jqGrid with SQL Server version

2008-02-11 Thread Tony
Maybe a good start can be here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag/html/scalenethowto05.asp Personally I use adodb ( http://adodb.sf.net ) with php. In this case you do not care about what of SQL do you use. Regards Tony On Feb 11, 3:51 pm, Web Specialist

[jQuery] Re: OT optimization phpSpeedy

2008-02-02 Thread Tony
Here another very useful solution: http://perishablepress.com/press/2007/03/26/fast-effective-php-compression/ Enjoy Tony On Feb 2, 9:32 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi friends, we've been discussing now and then about optimization, reducing the number of http

[jQuery] Re: jqGrid - Latin1

2008-02-01 Thread Tony
. (if you use database) Different DB have specific support. 3. If you use scripting language such as php, asp... you should send the appropriate headers. In php this can be header(Content-type: text/xml;charset=iso-8859-1); or header(Content-type: text/html;charset=iso-8859-1); Hope this help Tony On Jan

  1   2   >