[jQuery] jQuery Treeview + CheckBox

2008-09-21 Thread Don Quijote de Nicaragua


It is possible to use a CheckBox in a Treeview?

Es posible usar un CheckBox en un Treeview?

Don Quijote de Nicaragua.
Elder Soto.


[jQuery] Re: jquery wallpaper

2008-08-28 Thread Don Quijote de Nicaragua

http://jquery.com/blog/2007/01/13/jquery-wallpapers/
Don Quijote de Nicaragua.
Elder Soto

On 28 ago, 08:38, tlphipps <[EMAIL PROTECTED]> wrote:
> Several months ago somebody posted a link to some jquery wallpapers
> that they had created (not cheatsheets, just color background with
> jquery logo).  I lost my copy and for the life of me I can't locate
> these anymore.
>
> Does anybody still have a link for these wallpapers?


[jQuery] Function + Isdate

2008-07-21 Thread Don Quijote de Nicaragua

Hi, everyone, How I can use the function "isdate" in  jQuery
Thank you.
Spanish:
Hola a todos, como puedo usar la función "Isdate" en Jquery.
Muchas Gracias.
Don Quijote de Nicaragua.
Elder Soto.
Español:


[jQuery] the list not reflected the change

2008-07-02 Thread Don Quijote de Nicaragua

Hi, everyone, I have this code to show a list of product

qrRemision = New Query("vwlstRemisiones") //
vwlstRemisiones is a view
qrRemision.OrderBy = OrderBy.Asc("Fecha")
dtsCatalogo = New DataSet
dtsCatalogo = qrRemision.ExecuteDataSet()

When  an element changed again and I want to show  in the list not
reflected the change, I get the old value (the same value before the
change), any suggestions.
Thanks You.

Español
Hola a todos, tengo el siguiente codigo para mostrar una lista de
productos
-- CODE --
Cuanto hago un cambio en un elemento, la lista no la refleja, me
muestra el valor anterior, antes del cambio, alguna sugerencia.
Gracias.
Don Quijote de Nicaragua.
Elder Soto

COMPLETE CODE
Try
With Page.Request
imRecord =
Convert.ToByte(.Params("imRecord").ToString())
ipNumber =
Convert.ToInt16(.Params("pIndex").ToString())
End With
qrRemision = New Query("vwlstRemisiones")
qrRemision.OrderBy = OrderBy.Asc("Fecha")
dtsCatalogo = New DataSet
dtsCatalogo = qrRemision.ExecuteDataSet()
ipCount = fGetPageNumber(dtsCatalogo.Tables(0).Rows.Count,
ipSize)
If (ipNumber = 0) Then ipNumber = 1

Select Case imRecord
Case 1
If (ipNumber > 1) Then ipNumber -= 1
Case 2
If (ipNumber < ipCount) Then ipNumber += 1
End Select
iLastRow = ipNumber * ipSize
iFirstRow = iLastRow - ipSize
If (iLastRow > dtsCatalogo.Tables(0).Rows.Count) Then
iLastRow = dtsCatalogo.Tables(0).Rows.Count
iFirstRow = (ipNumber - 1) * ipSize
End If
If (ipCount <= 1) Then
sDisabled(0) = " disabled='disabled'"
sDisabled(1) = " disabled='disabled'"
Else
If (ipNumber = 1) Then
sDisabled(0) = " disabled='disabled'"
ElseIf (ipNumber = ipCount) Then
sDisabled(1) = " disabled='disabled'"
End If
End If

sHtml = "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "Buscar:" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= IIf(ipCount, "Página:", "") & NL
sHtml &= "" & NL
'Boton Previo
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= IIf(ipCount, "" & ipNumber &
"", "")
sHtml &= NL & "" & NL
'Boton Siguiente
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= IIf(ipCount, "de " & ipCount &
"", "")
sHtml &= NL & "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL
'Encabezado de los catalogos
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "CodRemision" & NL
sHtml &= "Fecha" & NL
sHtml &= "No Remision" & NL
sHtml &= "No Orden" & NL
sHtml &= "Cliente" & NL
sHtml &= "Transporte" & NL
sHtml &= "Modificar" & NL
sHtml &= "Borrar" & NL
'---Listado de Remision ---'
With dtsCatalogo.Tables(0)
For r = iFirstRow To iLastRow - 1
id = .Rows(r)(0)
sHtml &= "" & NL
sHtml &= "" & .Rows(r)(1) & "" & NL
sHtml &= "" & NL
'ModCatalogos(Accion, Operacion, Modificar,
CodCatalogo, Descripcion)
sHtml &= "" & NL
sHtml &= "" & NL
sHtml &= "" & NL & "" &
NL
Next
End With
sHtml &= ""
dtsCatalogo.Reset()
dtsCatalogo.Dispose()
Catch ex As Exception
sHtml = ex.Message.ToString()
End Try
Response.Write(sHtml)


[jQuery] Re: automatically copy the contents of inpubox in another

2008-06-08 Thread Don Quijote de Nicaragua

I response my self:
$('#txtCantidadR').keyup(function () {
$("#txtEquivalencia").val($
("#txtCantidadR").val());
Other Way to make this ?
Thanks.


On 8 jun, 19:53, Don Quijote de Nicaragua <[EMAIL PROTECTED]> wrote:
> How can I do to automatically copy the contents of inpubox in another
> line is written in the first.
> Gracias
> Spanish:
> Como puedo hacer para copiar automaticamente el contenido de inpubox
> en otro conforme se escribe en el primero.


[jQuery] Re: ASP.NET UserControl and jQuery

2008-06-08 Thread Don Quijote de Nicaragua



  //jQuery library reference


   
//How can I check if the jQuery lib is already loaded by the
main page
 $(document).ready(function(){
//You Code Here...

});

   


Saludos.
Don Quijote de Nicaragua.
Elder Soto.
Check this other link:
http://tinyurl.com/3vp6q9




On 8 jun, 06:27, vladv <[EMAIL PROTECTED]> wrote:
> Hi,
> I have a UserControl to which I would like to add some jQuery
> functionality.
> There are 2 issues with this:
> 1. Where should I include the jQuery library reference and where to
> call the functions?
> 2. How can I check if the jQuery lib is already loaded by the main
> page (the page to which the UserControl will be added)
>
> I'm nub, so please be gentle :)
>
> Thank you very much!


[jQuery] automatically copy the contents of inpubox in another

2008-06-08 Thread Don Quijote de Nicaragua

How can I do to automatically copy the contents of inpubox in another
line is written in the first.
Gracias
Spanish:
Como puedo hacer para copiar automaticamente el contenido de inpubox
en otro conforme se escribe en el primero.


[jQuery] Re: Only Acept Number and "." or ","

2008-05-20 Thread Don Quijote de Nicaragua

Muchas Gracias Exactamente eso es lo que necesitaba.
Saludos.
Don Quijote de Nicaragua.
Elder Soto.


On 20 mayo, 13:20, Ariel Flesler <[EMAIL PROTECTED]> wrote:
> This is exactly what you need:
>  http://itgroup.com.ph/alphanumeric/
>
> This could be useful too:
>    http://digitalbush.com/projects/masked-input-plugin
>
> --
> Ariel Fleslerhttp://flesler.blogspot.com
>
> On 20 mayo, 01:48, Don Quijote de Nicaragua <[EMAIL PROTECTED]>
> wrote:
>
> > I need to create a input, but only acept numer or this caracter "." or
> > ","
>
> > Español.
> > Necesito crear un input, pero que únicamente acepte números o los
> > caracteres "." ò ",".
> > Gracias.
>
> > Don Quijote de Nicaragua.
> > Elder Soto.


[jQuery] Only Acept Number and "." or ","

2008-05-20 Thread Don Quijote de Nicaragua

I need to create a input, but only acept numer or this caracter "." or
","

Español.
Necesito crear un input, pero que únicamente acepte números o los
caracteres "." ò ",".
Gracias.

Don Quijote de Nicaragua.
Elder Soto.


[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Don Quijote de Nicaragua

Funciona Muy bien:
Exaple to load a combo:
Ejemplo:
call the function in CodeBehind:
<%=Prueba.CargarClientes()%>


Clase or Class:
Public Class Prueba
Public Sub Prueba()
End Sub
Public Shared Function CargarClientes() As String
Dim idtPais As System.Data.IDataReader, qrPais As
SubSonic.Query
Dim Nl As String = Environment.NewLine, sHtml As String
Try
qrPais = New SubSonic.Query("Pais")
qrPais.ORDER_BY("NombrePais Asc")
idtPais = qrPais.ExecuteReader()
sHtml = ""
sHtml &= "Seleccione un pais de la lista" & Nl

With idtPais
While .Read()
sHtml &= "" & .GetValue(1).ToString & ""
sHtml &= Nl
End While
.Close() : .Dispose()
End With
sHtml &= ""
Catch ex As Exception
sHtml = "Lista de
paises "
    sHtml &= "vacía" & Nl & ""
End Try
Return sHtml
End Function
End Class
Don Quijote de Nicaragua.
Elder Soto.

On 18 mayo, 13:30, Mike <[EMAIL PROTECTED]> wrote:
> Do these work well together or cause conflicts?