[jQuery] Validate. Not working with Radio input

2008-10-24 Thread shapper
Hello, I am trying to validate a form with radio inputs. I want to the form to be submitted only if an option was selected: Do you like to travel? Yes No I used: $("#Poll").each(function() { $(this).validate({ errorC

[jQuery] Re: Get label text

2008-10-24 Thread shapper
I wrote alert(levels) to check and I get: [object Object] Does anyone knows how to get the values and join in CSV format? Thank You, Miguel On Oct 24, 1:47 am, shapper <[EMAIL PROTECTED]> wrote: > yes, > > I have: > > var levels = []; > levels = $('input:c

[jQuery] Re: Get label text

2008-10-23 Thread shapper
.join(',')) > > Note that the snippet from Klaus uses var *labels*, so trying to use > the Array.join method of *levels* (probably undefined) will likely not > work ;) > > On Oct 23, 2:58 pm, shapper <[EMAIL PROTECTED]> wrote: > > > But I can join the labels can

[jQuery] Re: Get label text

2008-10-23 Thread shapper
could try this (untested): > > var labels = $('input:checked + label').map(function() { >     return $(this).text(); > > }); > > That should give you an array with the label's text. > > --Klaus > > On 23 Okt., 22:47, shapper <[EMAIL PROTECTED]>

[jQuery] Get label text

2008-10-23 Thread shapper
Hello, This might be a tricky one ... I have been looking into JQuery docs but I can't figure how to make this. I have the following: Administrator Collaborator How can I get, NOT the values, of all checked boxes BUT the label inner text of all checked boxes? Example: If Coll checkbox is

[jQuery] Re: My first plugin ... need some help.

2008-10-23 Thread shapper
// make array 1 into string, dot > separated >          $('').appendTo(opt.list).append(str).append(' href="#remove" class="remove">Remove Item'); // etc >          return false; >       }); > >   } > >   $ > ('input.name,selec

[jQuery] Re: My first plugin ... need some help.

2008-10-22 Thread shapper
finish it. Thanks, Miguel On Oct 23, 1:05 am, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > I solved problem 1 and updated my online example. > > I still have problems with the checkboxes and the display format ... > any idea how to solve? > > Thanks, > Miguel

[jQuery] Re: My first plugin ... need some help.

2008-10-22 Thread shapper
Hi, I solved problem 1 and updated my online example. I still have problems with the checkboxes and the display format ... any idea how to solve? Thanks, Miguel On Oct 23, 12:23 am, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I uploaded the updated > version:http://ww

[jQuery] Re: My first plugin ... need some help.

2008-10-22 Thread shapper
the following format: Name. Country. 1st CheckBox selected, 2st CheckBox selected, ... This way I can understand that each dot separates an input and a comma separates the selected values of a check box group. How can I do this? Thanks, Miguel On Oct 22, 2:45 am, shapper <[EMAIL PROTEC

[jQuery] Re: My first plugin ... need some help.

2008-10-21 Thread shapper
list: > '#MyList', button: 'input.sendToList' }) > > First you select the form inputs that you want to get the values from, > then you call createList and pass an object specifying a selector for > the list and for the button you want to use, they can be any select

[jQuery] Re: My first plugin ... need some help.

2008-10-21 Thread shapper
rtugal >     UK >     US >   >   name="newsletter"/> >   > > > 1. you were binding the 'remove buttons' everytime you ran the > function, keep the livequery call outside the function so it only runs > once > 2. your HTML was missing IDs, I

[jQuery] Re: My first plugin ... need some help.

2008-10-16 Thread shapper
}); > > $('').appendTo(options.listid).text(str); > > - ricardo > > On Oct 15, 9:49 pm, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I am trying to create my first JQuery plugin that does the following: > > > On a form, when a button is p

[jQuery] My first plugin ... need some help.

2008-10-15 Thread shapper
Hello, I am trying to create my first JQuery plugin that does the following: On a form, when a button is pressed, a few form elements values are used to create a string (CSV format). This string is added to an ordered list and with a remove button to remove it from the list. Could someone, plea

[jQuery] Form > Fieldset

2008-10-13 Thread shapper
Hello, I have a form with 5 fieldsetss Does anyone knows how to do one of the following (or maybe a plugin)? 1. Collapse/Expand a fieldset when its legend is clicked. 2. Turn the fieldsets into tabs. When the form is submitted I should always have access to all form input values. Thanks, Migu

[jQuery] List. Could someone help me in doing this?

2008-10-01 Thread shapper
Hello, On a page I have two inputs, A and B, a select, C, and a button. I also have an unordered list. When the button is pressed the content of A, B and C should be put together into a string: "A (B) (C)" And added as a list item into the list. There should also be a button for each list ite

[jQuery] List. Is this possible?

2008-10-01 Thread shapper
Hello, I have three inputs A, B and C and button. This is a group inside a form. When I click the button I want to add the information on the inputs into a list under the button. The information must be displayed as A ( B ) ( C ) and have a small button on the right to remove from list. When the

[jQuery] Separate elements

2008-09-17 Thread shapper
Hello, I am trying to create a plugin that applies something to elements given their CSS class. However, I need to distinguish between the elements that are enabled and the elements which has the property disabled = 'disabled' ... I need this because what I apply is different dependent of being

[jQuery] Find elements

2008-09-17 Thread shapper
Hello, How can I find all elements in a page given a class and pass to a function? Or maybe better, how to I create a function that acts like a plugin, i.e.: Applies something to all elements of a given class. Thanks, Miguel

[jQuery] Re: Css Class - Parameter

2008-09-16 Thread shapper
Please, anyone? Thank You, Miguel On Sep 15, 3:55 pm, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I am using the following DatePicker > plugin:http://www.kelvinluck.com/assets/jquery/datePicker/v2/jquery.datePick... > > Most CSSClasses, for example jCalendar, are

[jQuery] Plugin Inputs

2008-09-13 Thread shapper
Hello, I am using the following DatePicker plugin: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html I want to add extra inputs ... I mean, instead of the Date Picker CSS Classes being defined in the plugin I want to set default values and add them as inputs of the plugin ...

[jQuery] Re: TinyMCE and JQuery

2008-09-13 Thread shapper
I also found the following: http://dev.jquery.com/wiki/Plugins/tinyMCE What do you think? Which approach should I use? Any advice from anyone is welcome ... Thank You, Miguel On Sep 13, 7:17 am, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > shapper ha scritto:> Hello,

[jQuery] Re: Child ID

2008-09-12 Thread shapper
The problem is not exactly that ... I am developing a MVC application ... for example, PostController has views: Create, Destroy and Edit. All views have a form named Create, Destroy and Edit. Most forms have common JQuery scripts: ToolTip, FileStyle, etc ... However, in some cases they differ

[jQuery] Child ID

2008-09-12 Thread shapper
Hello, I have the following: $("#StartDate, #FinishDate").each(function() { $(this).mask("-99-99 99:99:99"); }); It is working but I want to apply this only to StartDate and FinishDate inputs that are inside the form with id "Create". How can I do this? Thanks. Miguel

[jQuery] Re: Id not Found

2008-09-12 Thread shapper
I tried it ... but I wanted to ask just to cover all the situations. I needed to be sure ... Thank You! Miguel On Sep 12, 2:51 pm, MorningZ <[EMAIL PROTECTED]> wrote: > "Will I create any problem to a page or fire any error if I apply a > JQuery plugin to an id that does not exist?" > > Why not

[jQuery] ToolTip Bassistance and TinyMCE

2008-09-11 Thread shapper
Hello, I am trying to make the ToolTip Bassistance to work with TinyMCE: http://tinymce.moxiecode.com/examples/full.php I want to display a message when the user places the mouse on the content area which renders as follows: The content area is inside an IFrame. I used the following: $("$mc

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread shapper
isplay": "inline", > 47                                "width": settings.width + "px" > 48                            }) > 49               +++add       .attr('title',$(self).attr("title")); > > On 11 Eylül, 14:21, shapper <[EMAIL

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread shapper
<[EMAIL PROTECTED]> wrote: > Hi Miguel, > > try set the element style position:absolute which id is "tooltip". > > #tooltip{ >      position:absolute; > > } > > On 11 Eylül, 04:18, shapper <[EMAIL PROTECTED]> wrote: > > > Hello

[jQuery] ToolTip Bassistance. Not working as expected ...

2008-09-10 Thread shapper
Hello, Please check my form: http://www.27lamps.com/Beta/FileStyleValidate/FileStyleValidate.html Why does the ToolTip over the Title input shows on the bottom? And why the ToolTip for the input of type file does not even show? How can I solve this- Thanks, Miguel

[jQuery] Validate Problem. Online Example. Please, help me out ...

2008-09-10 Thread shapper
Hello, Please, check my online example: http://www.27lamps.com/Beta/FileStyleValidate/FileStyleValidate.html I am using FileStyle (http://www.appelsiini.net/projects/filestyle) to style the input of type file.. Both form inputs are required. If you submit the form you will see the Title requir

[jQuery] Re: Validate and FileStyle problem. Could someone, please, help me out?

2008-09-09 Thread shapper
Please, anyone? I am on this for 2 days ... Thanks, Miguel On Sep 8, 6:34 pm, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I am using JQuery Validate plugin to validate a input of type file. > > I am also styling the same input using FileStyle > plugin:http://www

[jQuery] Validate and FileStyle problem. Could someone, please, help me out?

2008-09-08 Thread shapper
Hello, I am using JQuery Validate plugin to validate a input of type file. I am also styling the same input using FileStyle plugin: http://www.appelsiini.net/projects/filestyle The error message is added to the HTML markup but it is not visible. The generated HTML code is: Ficheiro

[jQuery] Re: Validate Input of type File

2008-09-08 Thread shapper
is problem? Thanks, Miguel On Sep 8, 7:30 am, shapper <[EMAIL PROTECTED]> wrote: > Please, anyone? > > Thanks, > Miguel > > On Sep 7, 10:57 pm, shapper <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I tried and it is working ... well kind of. I am using Fil

[jQuery] Re: Validate Input of type File

2008-09-07 Thread shapper
Please, anyone? Thanks, Miguel On Sep 7, 10:57 pm, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > I tried and it is working ... well kind of. I am using FileStyle > JQuery plugin to style the file > input:http://www.appelsiini.net/projects/filestyle > > So the gen

[jQuery] Re: Validate Input of type File

2008-09-07 Thread shapper
uery-plugin-validation/ > > The demo here has two file inputs that get > validated:http://jquery.bassistance.de/validate/demo/errorcontainer-demo.html > > Jörn > > On Sat, Sep 6, 2008 at 11:39 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I

[jQuery] MaskedInput

2008-09-06 Thread shapper
Hello, I am applying a masked input to an input as follows: jQuery(function($) { $("#UpdatedAt").mask("-99-99 99:99:99"); }); How can I apply the same mask to various inputs without needing to rewrite the code? I tried the following but it did not work: // Form mask jQuery(fun

[jQuery] Validate Input of type File

2008-09-06 Thread shapper
Hello, Is it possible to validate a input of type File? I mean that I would like to test if the user checked a file ... nothing else. Thanks, Miguel

[jQuery] Date and Time

2008-09-04 Thread shapper
Hello, Is it possible to get the Date and Time of a user and convert it to UTC using JQuery? I need to find the time zone of the user to display the server time in that time zone and when the user inserts a date and time convert it back to UTC to place it in the database. Thanks, Miguel

[jQuery] Re: File Upload

2008-08-28 Thread shapper
s the button ... Thank You, Miguel On Aug 28, 4:18 am, "rudy ub" <[EMAIL PROTECTED]> wrote: > I've seen it on ExtJS FileUploadField > example:http://extjs.com/deploy/dev/examples/form/file-upload.html > > On Thu, Aug 28, 2008 at 8:46 AM, shapper <[EMAIL PROTE

[jQuery] File Upload

2008-08-27 Thread shapper
Hi, Does anyone knows how to style and input of type file with JQuery? I want to use an image as the button or maybe a simple normal input styled with CSS. I also want to style the input where the path is ... I want it to have a grey background and no border. Any idea of how to accomplish this?

[jQuery] Re: AutoComplete Width

2008-08-22 Thread shapper
I notice there is a Width property but I would like the Autocomplete to have the same width of the input which is 34em (I am using ems). I tried it but it does not work ... any idea? Thanks, Miguel On Aug 22, 11:34 pm, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > How

[jQuery] AutoComplete Width

2008-08-22 Thread shapper
Hello, How do I define the AutoComplete panel to a fixed width? I tried to do it in the CSS by adding it to Results but it does not work ... Thanks, Miguel

[jQuery] AutoComplete. Show List

2008-08-22 Thread shapper
Hello, Can I open the AutoComplete list by clicking an image next to my input? For example, if the user does not write anything but wants to see all AutoComplete options then would click that icon on the right of the input ... Thanks, Miguel

[jQuery] Re: [validate] Remote Validation

2008-08-22 Thread shapper
eck > first messages[element.name] is defined. > > Jörn > > On Fri, Aug 22, 2008 at 4:17 AM, shapper <[EMAIL PROTECTED]> wrote: > > > Hi Jörn, > > > It worked fine ... just a suggestion: > > > What about the custom method to return the error message

[jQuery] Re: [validate] Remote Validation

2008-08-21 Thread shapper
                                 } > >                                        ); > > > But this function is not working how I expect. The effects works > > properly but I can still submit the form if the e-mail is not valid. > > > Any suggestions is welcome. > >

[jQuery] Multi Select

2008-08-21 Thread shapper
Hello, I have an input where a user inserts Tags in a CSV way. However, I think it would be better to use a MultiSelect. Does anyone knows something like this in JQuery? Thanks, Miguel

[jQuery] [validate] Remote Validation

2008-08-21 Thread shapper
Hello, Can I validate a input using a remote function on my server side code? I could return a JSon from my server side code with "True" or "False" ... Could someone tell me how should I do this? Thanks, Miguel

[jQuery] Re: AutoComplete

2008-07-22 Thread shapper
ultiple: true, scrollHeight: 200, selectFirst: false, width: 260 }); But it does not work to. Any idea? Thanks, Miguel On Jul 22, 1:02 am, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I have a JQuery AutoComplete thats gets the

[jQuery] Re: Select

2008-07-21 Thread shapper
why focus? On Jul 21, 9:16 pm, "Angel Marquez" <[EMAIL PROTECTED]> wrote: > input:focus { > > } > On Mon, Jul 21, 2008 at 12:20 PM, Jake McGraw <[EMAIL PROTECTED]> wrote: > > On Mon, Jul 21, 2008 at 3:15 PM, shapper <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Select

2008-07-21 Thread shapper
I already use a Reset. But I tried the YUI Reset and nothing changes. On Jul 21, 8:20 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > On Mon, Jul 21, 2008 at 3:15 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I am trying to style my fo

[jQuery] Select

2008-07-21 Thread shapper
Hello, I am trying to style my form inputs, textareas and selects as follows: input, select, textarea { border: solid 6px #ECF0F9; color: #252525; font: normal 0.75em Verdana, Geneva, sans-serif; padding: 0.25em; width: 520px; }

[jQuery] AutoComplete > Multiple Elements, Same Function

2008-07-16 Thread shapper
Hello, I have 3 inputs that use the same AutoComplete function. Can I make this work only with one command? I have: $("#Tags").autocomplete("GetTags", { autoFill: true ... I tried $("#Tags, #MoreTags").autocomplete("GetTags", { autoFill: true ... But it does not wo

[jQuery] "Uncompressed", "Minified and Gzipped" and "Packed"

2008-07-16 Thread shapper
Hello, Most JQuery plugins, including JQuery itseld, offer three versions: "Uncompressed", "Minified and Gzipped" and "Packed". 1. Should I use "Minified and Gzipped" or "Packed"? 2. How can I create myself the "Minified and Gzipped" or "Packed" versions from the Uncompressed version? Is there

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-16 Thread shapper
Jörn > > On Wed, Jul 16, 2008 at 1:28 AM, shapper <[EMAIL PROTECTED]> wrote: > > > Sorry for the delay ... > > > I just changed the file. Check it now. > > > On Jul 15, 9:37 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> > > wrote: > >&g

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-15 Thread shapper
and we may > get somewhere. > > Jörn > > On Tue, Jul 15, 2008 at 9:35 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Hi, > > > Here it is: > >http://www.27lamps.com/Beta/AutoComplete/TagsUpdate.aspx > > > And I kept the previous one: > >http://www

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-15 Thread shapper
in. The current one is rather useless. > > Jörn > > On Tue, Jul 15, 2008 at 4:31 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Does anyone knows how to solve this problem? > > > Please, check my example in: > >http://www.27lamps.com/Beta/AutoComplete/Tags.asp

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-15 Thread shapper
Does anyone knows how to solve this problem? Please, check my example in: http://www.27lamps.com/Beta/AutoComplete/Tags.aspx On Jul 14, 9:57 pm, shapper <[EMAIL PROTECTED]> wrote: > Jörn, > > I just uploaded an ASP.NET application that shows exactly what the > problem wa

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
;Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Learn to use Firebug - as I mentioned, the ajax request returns a 404. > It still does. Please come back when you have an actual JavaScript > problem. > > Jörn > > On Mon, Jul 14, 2008 at 6:16 PM, shapper <[EMAIL PRO

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
ion(item) { return item; } }); }); This is what I have been using to try to find the problem in AutoValidate so then I can fix the problem in my ASP.NET MVC project. Thanks, Miguel On Jul 14, 4:40 pm, "Jörn Zaefferer&qu

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
eady code. > > Jörn > > On Mon, Jul 14, 2008 at 4:07 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Please, anyone? > > > On Jul 14, 1:04 am, shapper <[EMAIL PROTECTED]> wrote: > >> Hi, > > >> I tried to replicate your code using the JSon

[jQuery] Display JSon String

2008-07-14 Thread shapper
Hello, I have an URL which returns a JSon string. How can I display it on my page using JQuery? I need to check if the JSon returned is in the expected format. Thanks, Miguel

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
Please, anyone? On Jul 14, 1:04 am, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > I tried to replicate your code using the JSon string generated by > ASP.NET MVC. > I created a static php code as you did ... To be honest I am not > familiar with php. This was the best I

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-13 Thread shapper
":"883b197e-0cb3-4528-8403-0877d742bf47","Name":"Matemática B","FileTags":[],"ProfessorTags":[]},{"TagID":"f183cb9d-9d92-4c61-b03a- e51cc1205b2b","Name":"Português","FileTags":[],"ProfessorTags&qu

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-13 Thread shapper
, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You still haven't posted a testpage. It doesn't have to be dynamic, a > static file that delivers the content that your serverside usually > works just as well. > > Jörn > > On Sun, Jul 13, 2008 at 2:45 PM,

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-13 Thread shapper
Please, anyone? On Jul 12, 6:46 pm, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > I can upload the client part but I am generating my JSON using ASP.NET > MVC and the project is not finish so I can't upload it because it uses > a SQL server. > > Don't you have

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-12 Thread shapper
splay it the right way ... I am using JSonResult of ASP.NET MVC to return the JSON and it seems to be ok. Any idea? Thanks, Miguel On Jul 12, 5:23 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Please upload a testpage and provide a link. There are too many things > t

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-12 Thread shapper
dle. Here is an example, > take a look at the > source:http://dev.jquery.com/view/trunk/plugins/autocomplete/demo/json.html > > Jörn > > On Sat, Jul 12, 2008 at 1:01 AM, shapper <[EMAIL PROTECTED]> wrote: > > > I also tried the following but until now I wasn

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
D":"883b197e-0cb3-4528-8403-0877d742bf47","Name":"Jane"}] I have been trying to solve this but until now I wasn't able ... Thanks, Miguel On Jul 11, 8:53 pm, shapper <[EMAIL PROTECTED]> wrote: > Yes, > > I tried the following: > &g

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
EMAIL PROTECTED]> wrote: > You need to use the formatResult option (I think that's the option > name).  It will allow you to format the data for display. > > On Jul 11, 12:08 pm, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I am using JQuery AutoC

[jQuery] AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
Hello, I am using JQuery AutoComplete with JSon. I created a function on my server code which return the data. However, when I start writing "J" in my Input I get the following: [{"TagID":"883b197e-0cb3-4528-8403-0877d742bf47","Name":"John"}, {"TagID":"017b253e-596b-4328-85f5-fd97a783759c","Nam

[jQuery] Re: Button Click

2008-07-11 Thread shapper
gn event >   $("#Cancel").click(function() { >     window.location.href = "/some/url/here"; >   }); > > }); > > On Jul 11, 12:39 pm, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I have a button which redirects to a page: > >

[jQuery] Button Click

2008-07-11 Thread shapper
Hello, I have a button which redirects to a page: Cancel Should I remove the onclick from the button and do this with JQuery? And how can I do that using JQuery? Thanks, Miguel

[jQuery] AutoComplete > How to define values?

2008-07-09 Thread shapper
Hello, I am using JQuery AutoComplete. Can I use some words that are in my HTML code? I am putting the words there using inline server side code. Or should I use JSon? Thanks, Miguel

[jQuery] Re: AutoComplete and Validation

2008-06-27 Thread shapper
> > Jörn > > On Fri, Jun 27, 2008 at 2:42 AM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I am using AutoComplete with Validation. Can I create a validation > > that accepts only values from the autocomplete? > > > For example if the autoc

[jQuery] AutoComplete and Validation

2008-06-26 Thread shapper
Hello, I am using AutoComplete with Validation. Can I create a validation that accepts only values from the autocomplete? For example if the autocomplete list is: "New York, London, Lisbon, Paris" Then the following would be accepted: "New York, London" "New York" "Lisbon,Paris " "Lond

[jQuery] Re: Validation Plugin issue when using TinyMCE

2008-06-26 Thread shapper
Please, does anyone knows why do I need to push twice the submit button so the validation be updated? Thanks, Miguel On Jun 25, 2:01 pm, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > It worked but now I get a new problem which I also notice before! I > though it was due to th

[jQuery] Re: [validate] Validation Plugin issue when using TinyMCE

2008-06-25 Thread shapper
AIL PROTECTED]> wrote: > I think maybe you want element.is("textarea") (no colon) > > Otherwise that part of the conditional will never fire. > > -- Josh > > - Original Message - > From: "shapper" <[EMAIL PROTECTED]> > To: "jQuery

[jQuery] Re: [validate] Validation Plugin issue when using TinyMCE

2008-06-24 Thread shapper
or in the errorPlacement, try this: > > errorPlacement: function(error, element) { >          if (element.is(":textarea")) >            error.insertAfter(element.next()); >          else >            error.insertAfter(element); >        }, > > On Tue, Jun 24, 2008

[jQuery] Re: [validate] Validation Plugin issue when using TinyMCE

2008-06-24 Thread shapper
this: > > errorPlacement: function(error, element) { >          if (element.is(":textarea")) >            error.insertAfter(element.next()); >          else { >            error.insertAfter(element); > > } > > Jörn > > On Tue, Jun 24, 2008 at 2:18 PM, sha

[jQuery] Re: [validate] Validation Plugin issue when using TinyMCE

2008-06-24 Thread shapper
mer. Use the errorPlacement-option to > customize the placement for that case. > > Jörn > > On Mon, Jun 23, 2008 at 1:54 AM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I have the following rules: > > >      $("#

[jQuery] [validate] Validation Plugin issue when using TinyMCE

2008-06-22 Thread shapper
Hello, I have the following rules: $("#New").validate({ errorClass: "Error", errorElement: "label", rules: {Answer: {required: true}}, }); Applied to text area: Resposta This works fine. The error labels shows after the TextArea. The moment I use

[jQuery] Re: [validate] Validation Cancel Button

2008-06-22 Thread shapper
Jorn, In all my posts I add [validate] on the subject but it never shows. Do you know why? Thanks, Miguel On Jun 23, 12:26 am, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > No, currently "cancel" is hardcoded. > > Jörn > > On Mon, Jun 23, 2008 at 12

[jQuery] [validate] Validation Minimized Script

2008-06-22 Thread shapper
Hello, How is the Minimized version of the validation script file created? What tool is used? Thanks, Miguel

[jQuery] [validate] Validation Cancel Button

2008-06-22 Thread shapper
Hello, I know that is possible to use a button with class "cancel" to be able to cancel and not validate. But can I define another class? Thanks, Miguel

[jQuery] Re: Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
]):([0-5][0-9]):([0-5][0-9])|)$/); > > }, 'Verifique a data e hora. Use o formato -mm-dd hh:mm:ss'); > > On Jun 20, 6:53 am, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I am trying to validate and mask a text box that should contain a >

[jQuery] Re: [validate] Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
mato -mm-dd hh:mm:ss'); Still does not work On Jun 20, 2:44 pm, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > Hi shapper, do you speak portugues? > > Please contact me for Validate chat through by e-mail. > > Thz. > > On 20 jun, 07:53, shapper <[EMAIL PROTECTED]&

[jQuery] [validate] Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
Hello, I am trying to validate and mask a text box that should contain a DateTime in the following format: -mm-dd hh:mm:ss The validation is not working as expected. The problem is: In a presence of a valid data I deleted a small part of it (ss). The mask is revealed for this part. If

[jQuery] Re: [validate] How to integrate validation with masking?

2008-06-19 Thread shapper
emo/marketo/ > The second step changes the creditcard mask based on another > field:http://dev.jquery.com/view/trunk/plugins/validate/demo/marketo/step2.htm > > Jörn > > On Wed, Jun 18, 2008 at 7:11 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > &

[jQuery] Re: [validate] How to integrate validation with masking?

2008-06-19 Thread shapper
emo/marketo/ > The second step changes the creditcard mask based on another > field:http://dev.jquery.com/view/trunk/plugins/validate/demo/marketo/step2.htm > > Jörn > > On Wed, Jun 18, 2008 at 7:11 PM, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > &

[jQuery] Re: Validation + Mask + Regex. Please, help me out. Thank You.

2008-06-19 Thread shapper
sure if this is the way to integrate with Mask but it is working. Thanks, Miguel On Jun 19, 1:36 pm, shapper <[EMAIL PROTECTED]> wrote: > Please, anyone? > > Thank You, > Miguel > > On Jun 18, 11:18 pm, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, >

[jQuery] Re: Validation + Mask + Regex. Please, help me out. Thank You.

2008-06-19 Thread shapper
Please, anyone? Thank You, Miguel On Jun 18, 11:18 pm, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I am using masking and client validation in a form using: > > Validator Plugin > -http://bassistance.de/jquery-plugins/jquery-plugin-validation/ >

[jQuery] Can't post in this forum

2008-06-19 Thread shapper
Hello, Most of my posts in this forum are not published. Why? Thanks, Miguel

[jQuery] [validate] Validation + Mask + Regex. Please, help me out. Thank You.

2008-06-18 Thread shapper
Hello, I am using masking and client validation in a form using: Validator Plugin - http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Masked Input Plugin - http://digitalbush.com/projects/masked-input-plugin In an input I have a Date Time in the following format: -mm-dd hh:m

[jQuery] [validate] How to integrate validation with masking?

2008-06-18 Thread shapper
Hello, I am validating a form but one of the fields has a mask: 99-99- 99:99:99 This is: Day-Month-Year Hour:Minutes:Seconds How can I integrate my validation with my mask? I am using: http://digitalbush.com/projects/masked-input-plugin http://bassistance.de/jquery-plugins/jquery-plugin-va

[jQuery] Re: Which grid?

2008-06-17 Thread shapper
This one: http://webplicity.net/flexigrid/ On Jun 17, 10:02 am, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > Lot of grids and so, I just thought of asking what is the preferred > grid by the experts? > > I personally prefer the combination ofhttp://makoomba.altervista.org/grid/ > (for liv

[jQuery] Re: [validate] Use different CSS class

2008-06-16 Thread shapper
The question is concerning the Validate plugin in http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Thanks, Miguel On Jun 16, 10:58 am, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > As far as I know to style the error messages a "error" CssClass is > u

[jQuery] [validate] Use Regex

2008-06-16 Thread shapper
Hello, How can I check the value inserted in an Input using a RegEx expression? Thanks, Miguel

[jQuery] [validate] Use Ajax

2008-06-16 Thread shapper
Hello, How can I check the value inserted in an Input using Ajax? Thanks, Miguel

[jQuery] Use different CSS class

2008-06-16 Thread shapper
Hello, As far as I know to style the error messages a "error" CssClass is used. Can I use another CSS Class? For example, "ShowError"? Thanks, Miguel

[jQuery] Re: Release: Validation plugin 1.1.2

2007-12-19 Thread shapper
Hello, I see. I will try the method. I am trying to integrate your Validation Plugin with ASP.NET and AJAX. Is there something like this already done? Thanks, Miguel On Dec 19, 9:05 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > shapper schrieb:> Hello, > > > isn't

[jQuery] Re: Release: Validation plugin 1.1.2

2007-12-18 Thread shapper
Hello, isn't it possible to use a Regex expression anymore? I need to validate a few inputs text using a regex expression. How can I do this? Thanks, Miguel On Dec 13, 12:24 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Good news Jorn. Thanks for an awesome plugin. > > -- Josh > > -

<    1   2   3   >