[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: input type=checkbox name=Roles id=Admin value=Admin / label for=AdminAdministrator/label input type=checkbox name=Roles id=Coll value=Admin / label

[jQuery] Re: Get label text

2008-10-23 Thread shapper
): 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] wrote: Hello, This might be a tricky one ... I have been looking into JQuery docs but I

[jQuery] Re: Get label text

2008-10-23 Thread shapper
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't I? I tried: .append(levels.join(', ')) to added it to an element and I get

[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 PROTECTED

[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://www.27lamps.com/Beta/List

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

2008-10-22 Thread shapper
to 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 On Oct 23, 12:23 am, shapper [EMAIL PROTECTED

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

2008-10-21 Thread shapper
to pass IDs everytime 3. 'this' inside your appendTo() was refering to the button, not the form only tested on FF3, works alright. - ricardo On Oct 16, 8:39 am, shapper [EMAIL PROTECTED] wrote: Hi, I added a live example to:http://www.27lamps.com/Beta/List/List.html

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

2008-10-21 Thread shapper
for that. cheers, Ricardo On Oct 21, 9:07 pm, shapper [EMAIL PROTECTED] wrote: Hi, I tried to follow your tips but I might be doing something wrong:http://www.27lamps.com/Beta/List/List.html A few questions: 1. Why isn't this good for a plugin?     I fell this is really useful in forms

[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,

[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,

[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

[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] 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

[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 built into the plugin. I need

[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, I want to add

[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: 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 *just

[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: 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

[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, Please check my form:http://www.27lamps.com/Beta/FileStyleValidate

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

2008-09-11 Thread shapper
                           }) 49               +++add       .attr('title',$(self).attr(title)); On 11 Eylül, 14:21, shapper [EMAIL PROTECTED] wrote: Hi, I corrected and styles my ToolTip ... However, if you note that is still a problem with the Input of type file ... it only shows the tooltip over the styled browse

[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: body id=tinymce class=mceContentBody spellcheck=false title=this is

[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

[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.appelsiini.net/projects/filestyle

[jQuery] Re: Validate Input of type File

2008-09-08 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 generated code (note the error message

[jQuery] Re: Validate Input of type File

2008-09-08 Thread shapper
, 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 FileStyle JQuery plugin to style the file input:http://www.appelsiini.net

[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: label

[jQuery] Re: Validate Input of type File

2008-09-07 Thread shapper
-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, Is it possible to validate a input of type File? I mean that I would like to test

[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] 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] 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
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 PROTECTED] wrote: Hi, Does anyone knows how

[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

[jQuery] Re: [validate] Remote Validation

2008-08-22 Thread shapper
when you have only that custom method as a rule. Mixing it with other methods gets a bit more complicated, you have to assign the custom message to messages[element.name].custom, and check first messages[element.name] is defined. Jörn On Fri, Aug 22, 2008 at 4:17 AM, shapper [EMAIL PROTECTED

[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] 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] 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 do I define the AutoComplete

[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] 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] Re: [validate] Remote Validation

2008-08-21 Thread shapper
Jörn On Thu, Aug 21, 2008 at 6:48 PM, shapper [EMAIL PROTECTED] wrote: 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

[jQuery] Re: AutoComplete

2008-07-22 Thread shapper
, 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 value using JSon. Using Firebug I see that the values are being

[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] 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 form inputs, textareas and selects as follows: Try using yui

[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: Hello, I am trying to style my form inputs, textareas

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

2008-07-16 Thread shapper
it using FireBug. Thanks, Miguel On Jul 16, 8:18 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: The formatItem implementation is wrong. You are returning the JavaScript object for the row (item) instead of a String to display. Try return item.Name. Jörn On Wed, Jul 16, 2008 at 1:28 AM, shapper

[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 any software

[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 work. How

[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 was. The commented script code

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

2008-07-15 Thread shapper
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.aspx On Jul 14, 9:57 pm, shapper [EMAIL PROTECTED] wrote: Jörn, I just

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

2008-07-15 Thread shapper
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.27lamps.com/Beta/AutoComplete/Tags.aspx Thank You, Miguel On Jul 15, 6:09 pm, Jörn Zaefferer [EMAIL

[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 was able to do ... I have been

[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
is returned. Jörn On Mon, Jul 14, 2008 at 5:15 PM, shapper [EMAIL PROTECTED] wrote: That was a mistake when I uploaded the files ... I sent two wrong files. I just updated the files: http://www.27lamps.com/Labs/AutoComplete/demo/tags.html Again it does not work. On Jul 14, 3:28

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

2008-07-14 Thread shapper
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 PROTECTED] wrote: Jörn, I just uploaded all your example

[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 any idea what is going on? I set up a page

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

2008-07-13 Thread shapper
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, shapper [EMAIL PROTECTED] wrote: Please, anyone? On Jul

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

2008-07-13 Thread shapper
:[],ProfessorTags:[]}] This was what I tried to replicate. Does anyone has any idea how to solve my problem? Thanks, Miguel On Jul 13, 9:44 pm, shapper [EMAIL PROTECTED] wrote: Hi, With ASP.NET this is not so easy ... Anyway, I tried to place your example and mine in the same page using PHP, which

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

2008-07-12 Thread shapper
, 2008 at 1:01 AM, shapper [EMAIL PROTECTED] wrote: I also tried the following but until now I wasn't able to make it work:      $(#Tags).autocomplete(/Professor/GetTags, {        autoFill: true,        cacheLength: 1,        multiple: true,        scrollHeight: 200,        selectFirst

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

2008-07-12 Thread shapper
that can go wrong here. Jörn On Sat, Jul 12, 2008 at 3:32 PM, shapper [EMAIL PROTECTED] wrote: Hi, I tried to make this work following your example but until now I wasn't able to make this work? Could you, please, help me out? This is what I have at the moment:      $(#Tags

[jQuery] Button Click

2008-07-11 Thread shapper
Hello, I have a button which redirects to a page: button class=Cancel type=button onclick=location.href='/Tag/ List?page=1' id=CancelCancel/button Should I remove the onclick from the button and do this with JQuery? And how can I do that using JQuery? Thanks, Miguel

[jQuery] Re: Button Click

2008-07-11 Thread shapper
() {     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: button  class=Cancel  type=button onclick=location.href='/Tag/ List?page=1' id=CancelCancel/button Should I remove the onclick from

[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,Name:Jane}] How

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

2008-07-11 Thread shapper
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 AutoComplete with JSon. I created a function on my server code which return the data

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

2008-07-11 Thread shapper
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:       $(#Tags).autocomplete(/File/GetTags, {         width: 260,         formatItem: function(item) {           return item.Name

[jQuery] Re: AutoComplete and Validation

2008-06-27 Thread shapper
, 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 autocomplete list is: New York, London, Lisbon, Paris Then the following would be accepted: New York, London

[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 this but it seems

[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

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

2008-06-25 Thread shapper
: 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 (English) jquery-en@googlegroups.com Sent: Tuesday, June 24, 2008 4:23 PM Subject: [jQuery] Re

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

2008-06-24 Thread shapper
AM, shapper [EMAIL PROTECTED] wrote: Hello, I have the following rules:      $(#New).validate({        errorClass: Error,        errorElement: label,        rules: {Answer: {required: true}},      }); Applied to text area:     label for=Answer class=RequiredResposta/label

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

2008-06-24 Thread shapper
(element.next());          else {            error.insertAfter(element); } Jörn On Tue, Jun 24, 2008 at 2:18 PM, shapper [EMAIL PROTECTED] wrote: Hello, I checked the markup used by TinyMCE and it is something as follows:  label for=QuestionQuestion/label  textarea id=Question cols

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

2008-06-24 Thread shapper
(:textarea))            error.insertAfter(element.next());          else            error.insertAfter(element);        }, On Tue, Jun 24, 2008 at 11:36 PM, shapper [EMAIL PROTECTED] wrote: Hello, I have been trying to make JQuery Validation with TinyMCE and until now I wasn't able

[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] [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] 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:45 AM, shapper [EMAIL PROTECTED] wrote: Hello, I

[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: label for=Answer class=RequiredResposta/label textarea name=Answer rows=10 cols=20

[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] Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
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] wrote: Hello, I am trying to validate and mask a text

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

2008-06-20 Thread shapper
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 DateTime in the following format: -mm-dd hh:mm:ss The validation is not working as expected. The problem

[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] 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/ Masked Input Plugin -http://digitalbush.com/projects

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

2008-06-19 Thread shapper
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, I am using masking and client validation in a form using: Validator Plugin

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

2008-06-19 Thread shapper
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, I am validating a form but one of the fields has a mask: 99-99- 99:99:99 This is: Day-Month

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

2008-06-19 Thread shapper
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, I am validating a form but one of the fields has a mask: 99-99- 99:99:99 This is: Day-Month

[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

[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

[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 live

[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] [validate] Use Ajax

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

[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] 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 used. Can I use another CSS Class

[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 it possible to use a Regex

[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 - Original

[jQuery] Fade and Center

2007-11-22 Thread shapper
Hello, I have 2 divs: div id=parent div id=child /div /div I need to create a function using JQuery that when called does the following: 1. Centers child inside parent 2. Fades in child How can I do this? Thanks, Miguel

[jQuery] Convert to JQuery code

2007-11-21 Thread shapper
Hello, I am mostly an ASP.NET and SQL developer and I have no experience with JQuery. I am starting to use JQuery now and it seems really good. I need to convert a Javascript code to use JQuery. Could someone, please, help me out? The Javascript code: function onUpdating(){ // get

[jQuery] Toggle visibility.

2007-11-08 Thread shapper
Hello, I have an anchor on my page. When I click it I want to Toggle the visibility of a Div with ID = Content. If the div is visible then it should become invisible. If it is invisible them it becomes visible. How can I do this? Thanks, Miguel

[jQuery] Change CSSClass

2007-11-08 Thread shapper
Hello, I have an anchor. I want to change its CSS class and also disable the clicking when it is clicked. Can I do this with JQuery? Thanks, Miguel

[jQuery] Download JQuery

2007-10-30 Thread shapper
Hello, I want to download and start using JQuery. Which one should I download? And why the file sizes do no match? For example, for 45.3Kb - http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.1.min.js 14Kb - http://docs.jquery.com/Release:jQuery_1.2.1 Thanks, Miguel

[jQuery] Get div

2007-10-30 Thread shapper
Hello, How can I get use a Div given its ID? Or I can only get it given the css class applied to it? Thanks, Miguel

[jQuery] Fade In and Fade Out Div

2007-10-29 Thread shapper
Hello, I have a DIV in my page and I need to: 1. The DIV must be over all other page content. 2. Select the DIV position: It could be Centered or on Top Right. The DIV should be over all page content. 3. Fade the DIV from a X% opacity to a 0% opacity when: N seconds have past or when the user

<    1   2